/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #1a365d;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #63b3ed;
}

.contact-info span {
    margin-left: 15px;
    font-size: 12px;
}

.contact-info i {
    margin-right: 5px;
}

/* Header */
.header {
    background: #2d3748;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.logo span {
    font-weight: 400;
    font-size: 18px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #63b3ed;
}

.book-btn {
    background: #e53e3e !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: #c53030 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('img/eloy_front.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-btn {
    background: #3182ce;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #2c5aa0;
}

.brand-logo {
    position: absolute;
    top: 20px;
    right: 20px;
}

.best-western-logo {
    background: #1a365d;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bw-icon {
    background: white;
    color: #1a365d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.bw-text {
    font-size: 14px;
    font-weight: 600;
}

/* Booking Section */
.booking-section {
    background: #f7fafc;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.booking-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.booking-form h3 {
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.booking-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.phone-number {
    color: #3182ce;
    font-weight: 600;
    font-size: 16px;
}

.best-rate {
    background: #e53e3e;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.booking-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 150px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3182ce;
}

.book-now-btn {
    background: #3182ce;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.book-now-btn:hover {
    background: #2c5aa0;
}

.accessibility-note {
    font-size: 12px;
    color: #718096;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

.booking-form-message {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}
.booking-form-message--success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}
.booking-form-message--error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #fc8181;
}
.booking-sms-optin {
    margin-top: 10px;
}
.booking-sms-optin .consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #4a5568;
}
.booking-sms-optin .consent-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-policy-links {
    margin: 10px 0 0 30px;
    font-size: 13px;
    line-height: 1.5;
    color: #4a5568;
}

.form-policy-links a {
    color: #2b6cb0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-policy-links a:hover,
.form-policy-links a:focus {
    color: #2c5282;
}
.booking-form .required {
    color: #e53e3e;
}
.field-hint {
    display: block;
    font-size: 12px;
    color: #718096;
    margin-top: 4px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    color: #2d3748;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: #f7fafc;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.text-card h2 {
    color: #2d3748;
    font-size: 28px;
    margin-bottom: 20px;
}

.text-card p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more-btn {
    background: #3182ce;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.read-more-btn:hover {
    background: #2c5aa0;
}

.welcome-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail-images img {
    flex: 1;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-images img:hover {
    transform: scale(1.05);
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Amenities Section */
.amenities {
    padding: 80px 0;
    background: #f7fafc;
}

.amenities-content {
    max-width: 1000px;
    margin: 0 auto;
}

.amenities-text {
    text-align: center;
    margin-bottom: 50px;
}

.amenities-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 40px;
    color: #3182ce;
    margin-bottom: 15px;
}

.amenity-item h4 {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Guest Reviews Section */
.guest-reviews {
    padding: 80px 0;
    background: #fff;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.review-stats {
    text-align: center;
}

.rating-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rating-score {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-label {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.9;
}

.rating-stars {
    font-size: 24px;
    margin-bottom: 15px;
}

.rating-stars i {
    color: #ffd700;
    margin: 0 2px;
}

.review-count {
    font-size: 16px;
    opacity: 0.8;
}

.review-highlights {
    display: grid;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 24px;
    color: #667eea;
    margin-top: 5px;
}

.highlight-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

.highlight-item p {
    color: #718096;
    line-height: 1.6;
}

/* Things to Do Section */
.things-to-do {
    padding: 80px 0;
    background: white;
}

.attractions-content {
    max-width: 1200px;
    margin: 0 auto;
}

.attractions-intro {
    text-align: center;
    margin-bottom: 50px;
}

.attractions-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.attraction-category {
    background: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #3182ce;
}

.attraction-category h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.attraction-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attraction-category li {
    padding: 8px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.attraction-category li:last-child {
    border-bottom: none;
}

.attraction-category li:before {
    content: "•";
    color: #3182ce;
    font-weight: bold;
    margin-right: 10px;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: #f7fafc;
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
}

.location-text {
    text-align: center;
    margin-bottom: 50px;
}

.location-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.location-details {
    display: flex;
    justify-content: center;
}

.address-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
}

.address-card h3 {
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.address-info {
    margin-bottom: 30px;
}

.address-info p {
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 14px;
}

.address-info p strong {
    color: #2d3748;
    font-size: 16px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 10px;
}

/* Room Types Section */
.room-types {
    padding: 80px 0;
    background: white;
}

.room-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: #3182ce;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #2c5aa0;
}

.room-cards {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.room-card {
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-info {
    padding: 20px;
}

.room-info h4 {
    color: #2d3748;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Virtual Tour & Video Sections */
.virtual-tour, .video-section {
    padding: 80px 0;
    background: #f7fafc;
    position: relative;
}

.virtual-tour::before, .video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e2e8f0"/><circle cx="80" cy="40" r="1.5" fill="%23cbd5e0"/><circle cx="40" cy="80" r="1" fill="%23a0aec0"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.tour-container, .video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
}

.tour-container img, .video-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    border: 3px solid white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #3182ce;
    transition: all 0.3s ease;
    z-index: 3;
}

.play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Let's Enjoy Section */
.lets-enjoy {
    padding: 80px 0;
    background: white;
}

.enjoy-carousel {
    position: relative;
}

.enjoy-images {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.enjoy-images img {
    min-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.enjoy-images img:hover {
    transform: scale(1.02);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #3182ce;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.contact-details p {
    margin-bottom: 10px;
    color: #a0aec0;
    font-size: 14px;
}

.contact-details i {
    margin-right: 10px;
    color: #63b3ed;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
    column-gap: 32px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #63b3ed;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 12px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-links-bottom {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-links-bottom a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 12px;
}

.footer-links-bottom a:hover {
    color: #63b3ed;
}

/* Tablet and below: show hamburger menu for proper alignment */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        min-width: 220px;
        background: #2d3748;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 4px 0;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info span {
        margin-left: 0;
    }
    
    .nav-menu {
        left: 0;
        right: 0;
        min-width: 100%;
        border-radius: 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-logo {
        position: static;
        margin-top: 30px;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .text-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .room-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .room-card {
        min-width: 100%;
        max-width: 350px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .enjoy-images {
        flex-direction: column;
        align-items: center;
    }
    
    .enjoy-images img {
        min-width: 100%;
        max-width: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section:nth-child(2) {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 12px;
        justify-items: start;
        text-align: left;
    }

    .footer-links a {
        font-size: 13px;
    }
    
    .tour-container img, .video-container img {
        height: 250px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .booking-form {
        padding: 20px 15px;
    }
    
    .booking-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .attraction-category {
        padding: 20px;
    }
    
    .address-card {
        padding: 20px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .featured-grid,
    .distance-grid,
    .directions-grid,
    .transport-grid,
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-item img {
        height: 150px;
    }
    
    .direction-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .text-card {
        padding: 20px 15px;
    }
    
    .text-card h2 {
        font-size: 22px;
    }
    
    .room-info h4 {
        font-size: 16px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text, .welcome, .room-types, .virtual-tour, .video-section, .lets-enjoy {
    animation: fadeInUp 0.8s ease-out;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid #63b3ed;
    outline-offset: 2px;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-content h3 {
    padding: 20px;
    margin: 0;
    color: #2d3748;
    font-size: 20px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0,0,0,0.8);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('img/hotel-exterior.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Active Navigation */
.nav-menu a.active {
    color: #63b3ed !important;
    font-weight: 600;
}

/* Additional Info Section */
.additional-info {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #3182ce;
}

.info-card h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 8px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li:before {
    content: "•";
    color: #3182ce;
    font-weight: bold;
    margin-right: 10px;
}

/* Featured Attractions */
.featured-attractions {
    padding: 80px 0;
    background: #f7fafc;
}

.featured-attractions h2 {
    text-align: center;
    color: #2d3748;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.featured-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
}

.featured-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-content {
    padding: 20px;
}

.featured-content h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.featured-content p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

.distance {
    background: #3182ce;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Distance Info */
.distance-info {
    padding: 80px 0;
    background: white;
}

.distance-info h2 {
    text-align: center;
    color: #2d3748;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.distance-item {
    background: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.distance-item:hover {
    transform: translateY(-5px);
}

.distance-item i {
    font-size: 40px;
    color: #3182ce;
    margin-bottom: 20px;
}

.distance-item h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.distance-item .distance {
    background: #e53e3e;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.distance-item p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

/* Driving Directions */
.driving-directions {
    padding: 80px 0;
    background: #f7fafc;
}

.driving-directions h2 {
    text-align: center;
    color: #2d3748;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.direction-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.direction-card h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.direction-card ol {
    color: #4a5568;
    line-height: 1.6;
}

.direction-card li {
    margin-bottom: 10px;
}

.travel-time {
    background: #3182ce;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* Public Transport */
.public-transport {
    padding: 80px 0;
    background: white;
}

.public-transport h2 {
    text-align: center;
    color: #2d3748;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.transport-item {
    background: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.transport-item:hover {
    transform: translateY(-5px);
}

.transport-item i {
    font-size: 40px;
    color: #3182ce;
    margin-bottom: 20px;
}

.transport-item h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.transport-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: #f7fafc;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-card h3 {
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 20px;
    color: #3182ce;
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
}

.contact-item h4 {
    color: #2d3748;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    font-size: 14px;
    margin: 0;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-card h3 {
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3182ce;
}

.submit-btn {
    background: #3182ce;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #2c5aa0;
}

/* Hotel Info */
.hotel-info {
    padding: 80px 0;
    background: #f7fafc;
}

.hotel-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    color: #2d3748;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Gallery Categories */
.gallery-categories {
    padding: 80px 0;
    background: #f7fafc;
}

.gallery-categories h2 {
    text-align: center;
    color: #2d3748;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item i {
    font-size: 40px;
    color: #3182ce;
    margin-bottom: 20px;
}

.category-item h3 {
    color: #2d3748;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-item p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #2d3748;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background: #3182ce;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #2c5aa0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
    }
    
    .text-card {
        border: 2px solid #000;
    }
}

/* Additional responsive styles for guest reviews */
@media (max-width: 768px) {
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rating-score {
        font-size: 60px;
    }
    
    .rating-label {
        font-size: 20px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
}
