/* Reset and Base Styles */
* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    margin-left: 20px;
    margin-right: 20px;
}

/* Modern Transparent Header */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Hotel Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.hotel-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.modern-header.scrolled .hotel-name {
    color: #1E3A8A;
    text-shadow: none;
}

.modern-header.scrolled .hotel-tagline {
    color: #666;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: auto;
}

/* Contact Icons Container */
.contact-icons-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.phone-btn, .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 25px;
}

.phone-btn:hover, .whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.phone-btn i, .whatsapp-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.phone-btn:hover i, .whatsapp-btn:hover i {
    transform: scale(1.1);
}

.whatsapp-btn {
    color: #25D366;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.2);
}

/* Scrolled state for contact icons */
.modern-header.scrolled .contact-icons-container {
    background: rgba(30, 58, 138, 0.1);
    border-color: rgba(30, 58, 138, 0.3);
}

.modern-header.scrolled .phone-btn {
    color: #1E3A8A;
}

.modern-header.scrolled .phone-btn:hover {
    background: rgba(30, 58, 138, 0.2);
}

/* Book Now Button */
.book-now-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.book-now-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.book-now-btn:hover i {
    transform: scale(1.1);
}

.modern-header.scrolled .book-now-btn {
    background: rgba(30, 58, 138, 0.1);
    border-color: rgba(30, 58, 138, 0.3);
    color: #1E3A8A;
}

.modern-header.scrolled .book-now-btn:hover {
    background: rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.5);
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.modern-header.scrolled .hamburger-menu {
    background: rgba(30, 58, 138, 0.1);
    border-color: rgba(30, 58, 138, 0.3);
}

.modern-header.scrolled .hamburger-line {
    background: #1E3A8A;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: white;
    padding: 120px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto 20px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-small-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: slideInFromLeft 1s ease-out 0.5s both;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease-out 0.8s both;
    line-height: 1.1;
}

.hero-booking-form {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    margin: 40px auto 0 auto;
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.booking-form-bar {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: end;
    opacity: 1;
    visibility: visible;
    position: relative;
    border: 3px solid #D4AF37;
    min-height: 120px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select {
    padding: 15px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.form-field.focused label {
    color: #1E3A8A;
    transform: translateY(-2px);
}

.form-field.focused input,
.form-field.focused select {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.search-btn {
    background: #D4AF37;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 25px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.search-btn:hover {
    background: #B8941F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.search-btn:active {
    transform: translateY(-1px);
}

.search-btn i {
    font-size: 1.1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Hero Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New Hero Banner Section */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-banner .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.6);
    z-index: 2;
}

.hero-banner .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 80px 20px 0 20px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-banner .hero-small-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInFromTop 1s ease-out 0.5s both;
}

.hero-banner .hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.hero-banner .hero-booking-form {
    animation: fadeInUp 1.5s ease-out 1.2s both;
}

.hero-banner .booking-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    align-items: end;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    justify-self: center;
}

.hero-banner .form-field {
    display: flex;
    flex-direction: column;
}

.hero-banner .form-field label {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-banner .form-field input,
.hero-banner .form-field select {
    padding: 15px 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.hero-banner .form-field input:focus,
.hero-banner .form-field select:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.hero-banner .search-button {
    background: #9CA3AF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 25px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(156, 163, 175, 0.3);
}

.hero-banner .search-button:hover {
    background: #6B7280;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
}

.hero-banner .search-button:active {
    transform: translateY(-1px);
}

.hero-banner .search-button i {
    font-size: 1.1rem;
}

/* Hero Banner Animations */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #1E3A8A;
    color: white;
    border-color: #1E3A8A;
}

.btn-primary:hover {
    background: #D4AF37;
    color: white;
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1E3A8A;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: #f6f8e0;
}


.welcome-title {
    font-size: 2.8rem;
    color: #1E3A8A;
    margin-bottom: 30px;
    font-weight: 600;
    white-space: nowrap;
}

.welcome-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
    font-weight: 400;
}

/* Modern Welcome Section with Overlapping Images */
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.welcome-text-content {
    padding-right: 20px;
}

.welcome-subtitle {
    font-size: 1.5rem;
    color: #1E3A8A;
    margin-bottom: 30px;
    font-weight: 600;
    font-style: italic;
}

.welcome-signature {
    font-size: 1rem;
    color: #1E3A8A;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

.welcome-cta {
    margin-top: 25px;
}

.welcome-cta .btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.welcome-cta .btn:hover {
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: white;
}

.welcome-images {
    position: relative;
    height: 380px;
    width: 450px;
}

.welcome-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.welcome-overlay-card {
    position: absolute;
    bottom: 30px;
    left: -80px;
    width: 180px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    z-index: 2;
}

.overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Design for Welcome Section */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .welcome-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        max-width: 100%;
    }
    
    .welcome-text-content {
        padding-right: 0;
        order: 2;
        text-align: center;
    }
    
    .welcome-images {
        order: 1;
        height: 400px;
        position: relative;
    }
    
    .welcome-overlay-card {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 200px;
    }
    
    .welcome-title {
        font-size: 2.5rem;
        white-space: normal;
    }
    
    .welcome-subtitle {
        font-size: 1.2rem;
    }
}


@media (max-width: 480px) {
    /* Mobile Layout Reset */
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Mobile Padding for All Main Sections - 40px top and bottom */
    .welcome-section,
    .quick-links-section,
    .facilities-section,
    .sub-property-section,
    .attractions-section,
    .testimonials-section,
    .faq-section,
    .contact-form-section,
    .packages-section,
    .dining-section,
    .main-facilities-section,
    .about-main,
    .mission-vision-section,
    .property-details {
        padding: 40px 0 !important;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Hero Banner Mobile */
    .hero-banner {
        height: 50vh;
        min-height: 400px;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-banner .hero-main-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-banner .hero-small-title {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Welcome Section Mobile - Complete Redesign */
    .welcome-section {
        padding: 40px 0;
        width: 100%;
        overflow: hidden;
    }
    
    .welcome-content {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .welcome-text-content {
        width: 100%;
        padding: 0 10px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .welcome-images {
        width: 100%;
        height: 250px;
        position: relative;
        margin: 0 auto;
        max-width: 100%;
        overflow: hidden;
    }
    
    .welcome-bg-image {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .welcome-overlay-card {
        width: 100px;
        height: 120px;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
    }
    
    .welcome-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .welcome-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .welcome-signature {
        font-size: 0.85rem;
        font-style: italic;
    }
    
    .welcome-cta {
        margin-top: 20px;
        text-align: center;
    }
    
    .welcome-cta .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    /* Quick Links Mobile - Redesigned */
    .quick-links-section {
        padding: 40px 0;
        width: 100%;
    }
    
    .quick-links-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        padding: 0 5px;
    }
    
    .quick-link-card {
        padding: 15px 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .quick-link-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .quick-link-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .quick-link-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Facilities Section Mobile - Redesigned */
    .facilities-section {
        padding: 40px 0;
        width: 100%;
    }
    
    .section-header {
        text-align: center;
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 15px 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .services-cta {
        margin-top: 25px;
        text-align: center;
        padding: 0 10px;
    }
    
    .services-description p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .services-highlights {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .highlight-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Sub Property Section Mobile - Hidden */
    .sub-property-section {
        display: none;
    }
    
    
    /* Attractions Section Mobile - Redesigned */
    .attractions-section {
        padding: 40px 0;
        width: 100%;
    }
    
    .attractions-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        padding: 0 10px;
    }
    
    .attraction-card {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .attraction-card i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .attraction-card h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .attraction-card p {
        font-size: 0.9rem;
    }
    
    /* Testimonials Section Mobile - Redesigned */
    .testimonials-section {
        padding: 40px 0;
        width: 100%;
    }
    
    .testimonials-slider-section {
        padding: 0 0 40px 0;
        width: 100%;
    }
    
    .testimonial-slide {
        padding: 20px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-content-compact {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .testimonial-left {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .testimonial-right {
        padding: 10px;
    }
    
    .testimonial-quote p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-quote i {
        font-size: 1.3rem;
    }
    
    .author-image {
        width: 45px;
        height: 45px;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-location {
        font-size: 0.8rem;
    }
    
    .testimonial-dots {
        margin-top: 12px;
        padding: 6px 0;
    }
    
    /* FAQ Section Mobile - Redesigned */
    .faq-section {
        padding: 40px 0;
        width: 100%;
    }
    
    .faq-content {
        display: block;
        width: 100%;
        padding: 0 10px;
    }
    
    .faq-right {
        width: 100%;
        margin-bottom: 25px;
    }
    
    .faq-left {
        width: 100%;
        text-align: center;
    }
    
    .faq-heading {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .faq-subtext {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .faq-contact-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 10px 12px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 12px 10px 12px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Footer Mobile - Reorganized Layout */
    .footer {
        padding: 40px 0 20px 0;
        text-align: center;
        width: 100%;
    }
    
    .footer::after {
        display: none !important; /* Hide the horizontal line on mobile */
    }
    
    .footer .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin: 0;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .footer-left {
        order: 1;
    }
    
    .footer-middle {
        display: none !important; /* Hide quick links section */
    }
    
    .footer-middle * {
        display: none !important; /* Hide all content inside footer-middle */
    }
    
    .footer-right {
        order: 2;
    }
    
    .hotel-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-logo {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 15px auto !important;
        display: block !important;
    }
    
    .hotel-name {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        color: #1E3A8A;
        font-weight: 700;
    }
    
    .contact-details {
        margin-top: 0;
        text-align: center;
        background: #f8f9fa;
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 25px;
    }
    
    .contact-item {
        margin-bottom: 12px;
        font-size: 0.9rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .contact-item:last-child {
        margin-bottom: 0;
    }
    
    .contact-item i {
        font-size: 1.1rem;
        color: #1E3A8A;
        margin-bottom: 5px;
    }
    
    .contact-item span {
        text-align: center;
        line-height: 1.4;
        color: #555;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
        text-align: center;
        color: #1E3A8A;
        font-weight: 700;
    }
    
    .newsletter-text {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.5;
    }
    
    .newsletter-form {
        margin-bottom: 25px;
    }
    
    .newsletter-input-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .newsletter-input {
        padding: 12px 18px;
        border: 2px solid #e0e0e0;
        border-radius: 25px;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
        transition: border-color 0.3s ease;
    }
    
    .newsletter-input:focus {
        outline: none;
        border-color: #1E3A8A;
    }
    
    .newsletter-btn {
        padding: 12px 25px;
        background: linear-gradient(135deg, #1E3A8A, #3B82F6);
        color: white;
        border: none;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .newsletter-btn:hover {
        background: linear-gradient(135deg, #D4AF37, #F59E0B);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .social-media {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: #f8f9fa;
        border-radius: 50%;
        color: #1E3A8A;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }
    
    .social-link:hover {
        background: #1E3A8A;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
    }
    
    .footer-bottom {
        display: none !important; /* Hide footer bottom section on mobile */
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        color: #666;
        margin: 0;
        text-align: center;
        line-height: 1.5;
    }
    
    .footer-link {
        color: #1E3A8A;
        text-decoration: none;
    }
    
.footer-link:hover {
    text-decoration: underline;
}

/* Contact Links in Footer */
.contact-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #D4AF37;
    text-decoration: underline;
    transform: translateY(-1px);
}

/* Mobile Contact Links */
@media (max-width: 480px) {
    .contact-link {
        color: rgba(132, 155, 219, 0.75);
        font-size: 0.9rem;
    }
    
    .contact-link:hover {
        color: #617bc2;
        text-decoration: underline;
    }
}

    
    /* Contact Page Mobile - Complete Redesign */
    .contact-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .contact-hero .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-section .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: #1E3A8A;
    }
    
    .section-header p {
        font-size: 0.9rem;
        color: #666;
    }
    
    .contact-layout {
        display: block;
        gap: 0;
    }
    
    .contact-layout::after {
        display: none;
    }
    
    .contact-left {
        order: 2;
        margin-top: 30px;
    }
    
    .contact-right {
        order: 1;
        width: 100%;
    }
    
    .find-us-section {
        padding: 20px 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .find-us-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .find-us-header h3 {
        font-size: 1.4rem;
        color: #1E3A8A;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .find-us-header h3 i {
        font-size: 1.2rem;
    }
    
    .find-us-header p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
    }
    
    .location-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .address-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .address-icon {
        width: 50px;
        height: 50px;
        background: #1E3A8A;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .address-icon i {
        color: white;
        font-size: 1.2rem;
    }
    
    .address-info h4 {
        font-size: 1.1rem;
        color: #1E3A8A;
        margin-bottom: 8px;
    }
    
    .address-info p {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin: 0;
    }
    
    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-method {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .contact-method i {
        width: 40px;
        height: 40px;
        background: #1E3A8A;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    
    .contact-method div {
        flex: 1;
    }
    
    .method-label {
        display: block;
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 2px;
    }
    
    .contact-method a {
        font-size: 0.9rem;
        color: #1E3A8A;
        text-decoration: none;
        font-weight: 500;
    }
    
    .contact-method a:hover {
        text-decoration: underline;
    }
    
    .map-preview {
        margin-top: 15px;
    }
    
    .map-preview iframe {
        width: 100%;
        height: 150px;
        border-radius: 8px;
    }
    
    .form-container {
        background: white;
        padding: 20px 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
        color: #1E3A8A;
        margin-bottom: 8px;
    }
    
    .form-header p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
    }
    
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        color: #333;
        font-weight: 500;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: border-color 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #1E3A8A;
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    .btn-submit {
        background: linear-gradient(135deg, #1E3A8A, #3B82F6);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 10px;
    }
    
    .btn-submit:hover {
        background: linear-gradient(135deg, #D4AF37, #F59E0B);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .btn-submit i {
        font-size: 0.9rem;
    }
}

/* Quick Links Section */
.quick-links-section {
    padding: 40px 0;
    background: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.quick-link-card {
    background: white;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    border-color: #D4AF37;
    color: #333;
}

.quick-link-card i {
    font-size: 3rem;
    color: #1E3A8A;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.quick-link-card:hover i {
    color: #D4AF37;
}

.quick-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1E3A8A;
    font-weight: 600;
}

.quick-link-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.booking-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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(59,130,246,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(59,130,246,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(59,130,246,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

/* Removed duplicate booking-container rule */

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    font-size: 2.8rem;
    color: #1E3A8A;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.booking-header h2 i {
    color: #1E3A8A;
}

.booking-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fefefe;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border-color: #1E3A8A;
}

.info-card i {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    color: #1E3A8A;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fefefe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E3A8A;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #374151;
}

.form-group input[type="date"] {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #374151;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: #1E3A8A;
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

.btn-large:hover {
    background: #6B7280;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 114, 128, 0.3);
}

.btn-large i {
    font-size: 1.5rem;
}

.btn-large small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        padding: 30px 20px;
    }
    
    .booking-header h2 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }
}

.booking-header p {
    font-size: 1.1rem;
    color: #666;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #1E3A8A;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.whatsapp-link {
    margin-top: 20px;
}

.whatsapp-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h4 {
    color: #1E3A8A;
    margin-bottom: 5px;
    font-size: 1.5rem;
}


.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Services Section */
.facilities-section {
    padding: 50px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #1E3A8A;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-description {
    margin-bottom: 30px;
}

.services-description p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1E3A8A;
    font-weight: 500;
}

.highlight-item i {
    font-size: 1.2rem;
}

/* Sub Property Section */
.sub-property-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.sub-property-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.sub-property-info {
    width: 100%;
    padding: 20px;
}

.sub-property-image {
    width: 100%;
    padding: 20px;
}

.sub-property-info h3 {
    color: #1E3A8A;
    font-size: 2rem;
    margin-bottom: 20px;
}

.sub-property-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.sub-property-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-item i {
    color: #1E3A8A;
    font-size: 1.2rem;
}

.sub-property-note {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.sub-property-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-property-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sub-property-img:hover {
    transform: scale(1.05);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 350px !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-wrapper:hover .hotel-image {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Attractions Section */
.attractions-section {
    padding: 40px 0;
    background: white;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.attraction-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.attraction-card i {
    font-size: 3rem;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.attraction-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.attraction-card p {
    color: #666;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}


.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    z-index: 3;
}


.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Side: Hotel Brand & Contact */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hotel-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-item i {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Middle Section: Quick Links */
.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffffff;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.quick-links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.quick-links li a:hover {
    color: #ffffff;
    padding-left: 25px;
}

.quick-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Right Side: Newsletter */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.newsletter-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #1a1a1a;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    margin: 0;
}

.footer-bottom p {
    margin: 0;
    font-weight: 300;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-link:hover {
    color: #D4AF37;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .hotel-brand {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
    }
}

@media (max-width: 480px) {
    /* Footer styles moved to main mobile section */
}

/* Contact Hero Banner */
.contact-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero .hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Products Hero Banner */
.products-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.products-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products-hero .hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.products-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.products-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.products-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.products-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Services Hero Banner */
.facilities-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.facilities-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.facilities-hero .hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.facilities-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.facilities-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    width: 100%;
}

.facilities-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    text-align: center;
    width: 100%;
}

.facilities-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero .hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* About Hero Banner */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero .hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    width: 100%;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    text-align: center;
    width: 100%;
}

.hotel-name-small {
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 3px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 5px;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37, #1E3A8A);
    opacity: 0.05;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-left {
    flex: 0 0 300px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.testimonial-left::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #3B82F6;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.client-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.client-info {
    color: white;
}

.client-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}

.client-location {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
    font-weight: 400;
}

.client-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.client-rating i {
    color: #D4AF37;
    font-size: 1rem;
}

.testimonial-divider {
    width: 2px;
    background: linear-gradient(180deg, #1E3A8A, #D4AF37, #1E3A8A);
    margin: 0;
}

.testimonial-right {
    flex: 1;
    padding: 40px 40px;
    display: flex;
    align-items: center;
}

.testimonial-content {
    width: 100%;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #D4AF37;
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.testimonial-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-align: right;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-left {
        flex: none;
        padding: 30px 20px;
    }
    
    .testimonial-left::after {
        display: none;
    }
    
    .testimonial-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #1E3A8A, #D4AF37, #1E3A8A);
    }
    
    .testimonial-right {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .client-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        margin: 0 10px;
    }
    
    .testimonial-left {
        padding: 25px 15px;
    }
    
    .testimonial-right {
        padding: 25px 15px;
    }
    
    .client-image {
        width: 60px;
        height: 60px;
    }
    
    .client-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Testimonials Section Header */
.testimonials-section {
    padding: 60px 0 20px 0;
    background: #f8f9fa;
}

/* Testimonials Slider Section */
.testimonials-slider-section {
    padding: 20px 0 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(30, 58, 138, 0.7)), url('image/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.testimonials-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(212, 175, 55, 0.3) 100%);
    z-index: 1;
}

.testimonials-slider-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial-slide {
    display: none;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Fallback: Show first slide by default if no JavaScript */
.testimonials-slider:not(.js-enabled) .testimonial-slide:first-child {
    display: block;
}

.testimonial-content-compact {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-left {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 15px;
    color: white;
    position: relative;
}

.testimonial-left::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid #3B82F6;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.author-info {
    text-align: center;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.author-location {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px 0;
}

.author-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.author-rating i {
    color: #D4AF37;
    font-size: 0.9rem;
}

.testimonial-divider {
    width: 2px;
    background: linear-gradient(180deg, #1E3A8A, #D4AF37, #1E3A8A);
    height: 100px;
    margin: 0 10px;
}

.testimonial-right {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-quote p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
    position: relative;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: white;
    border-color: #D4AF37;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.dot:hover {
    background: #D4AF37;
    border-color: white;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .testimonial-content-compact {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-left {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .testimonial-left::after {
        display: none;
    }
    
    .testimonial-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #1E3A8A, #D4AF37, #1E3A8A);
        margin: 10px 0;
    }
    
    .testimonial-right {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .testimonial-quote i {
        font-size: 1.8rem;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .testimonial-dots {
        margin-top: 12px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0 15px 0;
    }
    
    .testimonials-slider-section {
        padding: 15px 0 60px 0;
    }
    
    .testimonial-slide {
        padding: 25px 15px;
    }
    
    .testimonial-content-compact {
        gap: 15px;
    }
    
    .testimonial-left {
        padding: 15px;
    }
    
    .testimonial-right {
        padding: 15px;
    }
    
    .testimonial-quote p {
        font-size: 0.95rem;
    }
    
    .testimonial-quote i {
        font-size: 1.5rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .testimonial-dots {
        margin-top: 10px;
        padding: 6px 0;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37, #1E3A8A);
    opacity: 0.05;
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    padding-right: 40px;
}

.faq-content {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 50px;
    align-items: start;
    margin-right: 20px;
}

/* Left Side - FAQ Info */
.faq-left {
    padding: 40px 0;
}

.faq-info {
    position: sticky;
    top: 100px;
}

.faq-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3A8A;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.faq-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.faq-contact-link:hover::before {
    left: 100%;
}

.faq-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.faq-contact-link .link-text {
    position: relative;
    z-index: 2;
}

.faq-contact-link i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.faq-contact-link:hover i {
    transform: translateX(5px);
}

/* Right Side - FAQ Accordion */
.faq-right {
    padding: 20px 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A8A;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question i {
    font-size: 0.9rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 15px 20px;
    opacity: 1;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    padding-top: 10px;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left {
        padding: 20px 0;
    }
    
    .faq-info {
        position: static;
        text-align: center;
    }
    
    .faq-heading {
        font-size: 2rem;
    }
    
    .faq-right {
        padding: 0;
    }
    
    .faq-question {
        padding: 12px 18px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 12px 18px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-content {
        gap: 30px;
    }
    
    .faq-heading {
        font-size: 1.8rem;
    }
    
    .faq-subtext {
        font-size: 1rem;
    }
    
    .faq-contact-link {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 10px 15px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 10px 15px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(30, 58, 138, 0.6)), url('banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Main Section */
.about-main {
    padding: 60px 0;
    background: white;
}

/* Room Types Section */
.room-types-section {
    padding: 100px 0;
    background: white;
}

.room-types-section .rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.room-types-section .room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.room-types-section .room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: #D4AF37;
}

.room-types-section .room-card.featured {
    border-color: #1E3A8A;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1E3A8A;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.room-types-section .room-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-types-section .room-content {
    padding: 30px;
}

.room-types-section .room-content h3 {
    color: #1E3A8A;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.room-types-section .room-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
    max-width: 400px;
}

.room-types-section .room-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.room-types-section .amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #F5E6D3;
    border-radius: 8px;
    font-size: 0.9rem;
}

.room-types-section .amenity i {
    color: #1E3A8A;
    font-size: 1rem;
    width: 16px;
}

.room-price {
    text-align: center;
    padding: 20px;
    background: #F5E6D3;
    border-radius: 10px;
    margin-top: 20px;
}

.price-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    color: #1E3A8A;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Main Facilities Section */
.main-facilities-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.main-facilities-section .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.facility-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.12);
    border-color: #D4AF37;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #D4AF37, #D4AF37);
}

.facility-icon i {
    font-size: 2.2rem;
    color: white;
}

.facility-card h3 {
    font-size: 1.4rem;
    color: #1E3A8A;
    margin-bottom: 15px;
    font-weight: 600;
}

.facility-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.facility-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.facility-features li i {
    color: #D4AF37;
    font-size: 0.8rem;
    width: 14px;
    flex-shrink: 0;
}

/* Dining Section */
.dining-section {
    padding: 80px 0;
    background: #f6f8e0;
    position: relative;
    overflow: hidden;
}

.dining-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37, #1E3A8A);
}

/* Restaurant Showcase Full Layout */
.restaurant-showcase-full {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.restaurant-content-full {
    max-width: 100%;
}

.restaurant-header {
    text-align: center;
    margin-bottom: 40px;
}

.restaurant-header .restaurant-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.restaurant-header h3 {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 20px;
    font-weight: 700;
}

.restaurant-header .restaurant-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.restaurant-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.restaurant-highlights h4,
.restaurant-timings h4 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 20px;
    font-weight: 600;
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timings-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.restaurant-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

/* Restaurant Showcase */
.restaurant-showcase {
    margin: 60px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.restaurant-showcase:hover {
    border-color: #D4AF37;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 500px;
}

.restaurant-info {
    padding: 50px 40px;
    background: white;
    color: #1E3A8A;
    position: relative;
    border-right: 1px solid #e0e0e0;
}

.restaurant-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1E3A8A;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.restaurant-badge i {
    font-size: 1rem;
}

.restaurant-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1E3A8A;
    font-family: 'Playfair Display', serif;
}

.restaurant-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.restaurant-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.highlight-icon {
    width: 35px;
    height: 35px;
    background: #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 1rem;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1E3A8A;
}

.highlight-desc {
    font-size: 0.85rem;
    color: #666;
}

.restaurant-timings {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.timing-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.timing-card:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.timing-icon {
    width: 35px;
    height: 35px;
    background: #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 10px;
}

.timing-icon i {
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timing-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meal {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1E3A8A;
}

.time {
    font-size: 0.85rem;
    color: #666;
}

.restaurant-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-menu, .btn-reserve {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-menu {
    background: #1E3A8A;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-menu:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-reserve {
    background: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.btn-reserve:hover {
    background: #1E3A8A;
    color: white;
    transform: translateY(-2px);
}

.restaurant-image {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #e0e7ff, #f0f4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    text-align: center;
    color: #1E3A8A;
    z-index: 2;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
    color: #1E3A8A;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #1E3A8A;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.restaurant-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    cursor: pointer;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
    color: #D4AF37;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Dining Services Grid */
.dining-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background: #f8f9fa;
    border-color: #1E3A8A;
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    background: #D4AF37;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-details h4 {
    font-size: 1.2rem;
    color: #1E3A8A;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.service-details p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
    justify-content: center;
}

.feature-tag {
    background: rgba(30, 58, 138, 0.1);
    color: #1E3A8A;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.service-timing {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #D4AF37;
    font-size: 0.8rem;
    font-weight: 500;
    justify-content: center;
}

.service-timing i {
    font-size: 0.8rem;
}

/* Menu Highlights */
.menu-highlights {
    margin-top: 60px;
    text-align: center;
}

.menu-header {
    margin-bottom: 40px;
}

.menu-header h3 {
    font-size: 2rem;
    color: #1E3A8A;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.menu-header p {
    color: #666;
    font-size: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.menu-item {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    border-color: #D4AF37;
}

.menu-image {
    width: 70px;
    height: 70px;
    background: #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-image {
    transform: scale(1.1);
    background: #D4AF37;
}

.menu-image i {
    font-size: 1.8rem;
    color: white;
}

.menu-info h4 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.menu-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #D4AF37;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #D4AF37;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-content {
        grid-template-columns: 1fr;
    }
    
    .restaurant-info {
        padding: 40px 30px;
    }
    
    .restaurant-info h3 {
        font-size: 2rem;
    }
    
    .restaurant-image {
        height: 300px;
    }
    
    .dining-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
        padding: 20px;
    }
    
    .service-item {
        padding: 15px 10px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-details h4 {
        font-size: 1.1rem;
    }
    
    .service-details p {
        font-size: 0.85rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .restaurant-cta {
        flex-direction: column;
    }
    
    .btn-menu, .btn-reserve {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dining-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: #f6f8e0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37, #1E3A8A);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: #1E3A8A;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.faq-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.faq-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-table:hover {
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.faq-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-row:last-child {
    border-bottom: none;
}

.faq-row:hover {
    background: #f8f9fa;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    font-weight: 600;
    color: #1E3A8A;
    border-right: 1px solid #e0e0e0;
}

.faq-question i {
    font-size: 1.1rem;
    color: #D4AF37;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
}

.faq-answer {
    
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-answer span {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-table {
        margin: 0 15px;
    }
    
    .faq-row {
        grid-template-columns: 1fr;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .faq-question {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 15px 20px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer span {
    font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-header h2 {
        font-size: 1.6rem;
    }
    
    .faq-table {
        margin: 0 10px;
    }
    
    .faq-question {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .faq-answer {
        padding: 12px 15px;
    }
    
    .faq-question i {
    font-size: 1rem;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-answer span {
        font-size: 0.85rem;
    }
}

/* Booking CTA Section */
.booking-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Packages Section */
.packages-section {
    padding: 40px 0;
    background: #F5E6D3;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: #D4AF37;
}

.package-card.featured {
    border-color: #1E3A8A;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2);
}

.package-header {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D4AF37;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.package-icon i {
    font-size: 1.8rem;
    color: white;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.package-content {
    padding: 40px 30px;
}

.package-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1rem;
}

.package-features li i {
    color: #D4AF37;
    font-size: 0.9rem;
    width: 16px;
}

.package-pricing {
    text-align: center;
    padding: 15px;
    background: #F5E6D3;
    border-radius: 12px;
    position: relative;
}

.original-price {
    display: block;
    color: #999;
    font-size: 0.9rem;
    text-decoration: line-through;
    margin-bottom: 3px;
}

.package-price {
    display: block;
    color: #1E3A8A;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.discount {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 40px 0;
    background: #F5E6D3;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Responsive Design for Mission & Vision */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 25px 20px;
    }
}

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.mission-card::before,
.vision-card::before,
.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon,
.values-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 1.5rem;
    color: #1E3A8A;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    align-items: center;
    position: relative;
}

.about-left {
    width: 100%;
}

.about-right {
    width: 100%;
}


.about-text {
    position: relative;
}

.about-image {
    position: relative;
}

.about-text h2 {
    color: #1E3A8A;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Property Details */
.property-details {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.property-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37, #1E3A8A);
}

.details-category {
    margin-bottom: 60px;
    padding-left: 20px;
}

.details-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1E3A8A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37);
    border-radius: 2px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.detail-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.detail-card:hover::before {
    transform: scaleX(1);
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1E3A8A, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.detail-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #D4AF37, #D4AF37);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.detail-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.detail-card:hover h4 {
    color: #D4AF37;
}

.detail-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.detail-card:hover .card-highlight {
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    transform: scale(1.05);
}

/* All card icons use primary colors */

/* Location & Facilities Combined Layout */
.location-facilities-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.location-section,
.facilities-section {
    background: white;
    padding: 18px 15px 12px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
}

.location-section::before,
.facilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A,);
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37);
    border-radius: 1px;
}

.bullet-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.bullet-item:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateX(3px);
}

.bullet-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1E3A8A, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.bullet-item:hover .bullet-icon {
    background: linear-gradient(135deg, #D4AF37, #D4AF37);
    transform: scale(1.1);
}

.bullet-icon i {
    font-size: 0.9rem;
    color: white;
    transition: all 0.3s ease;
}

.bullet-content {
    flex: 1;
}

.bullet-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.bullet-item:hover .bullet-content h5 {
    color: #D4AF37;
}

.bullet-content p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-facilities-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-section,
    .facilities-section {
        padding: 30px 20px;
    }
    
    .bullet-item {
        gap: 12px;
        padding: 12px;
    }
    
    .bullet-icon {
        width: 40px;
        height: 40px;
    }
    
    .bullet-icon i {
        font-size: 1rem;
    }
}

/* Room Showcase Section */
.room-showcase-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: visible;
    display: flex;
    align-items: center;
    
}

/* Center-right positioning for duplicate showcase */
.room-showcase-section .showcase-card.center-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 400px;
}

/* Separate styling for duplicate Room Showcase Section */
.room-showcase-duplicate {
    margin-top: 40px;
    margin-bottom: 40px;
}

.room-showcase-duplicate .showcase-background {
    height: 60%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.room-showcase-duplicate .showcase-image {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.room-showcase-duplicate .showcase-image:hover {
    transform: scale(1.05);
}

.room-showcase-duplicate .showcase-overlay {
    height: 60%;
   
    border-radius: 15px;
}

.room-showcase-duplicate .showcase-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 35px;
    max-width: 400px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 50px;
    margin-left: 500px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.room-showcase-duplicate .showcase-card:hover {
    transform: translateY(0);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.room-showcase-duplicate .showcase-card::before {
    background: linear-gradient(90deg, #D4AF37, #1E3A8A);
    height: 5px;
    border-radius: 25px 25px 0 0;
}

.room-showcase-duplicate .room-title {
    color: #1E3A8A;
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.room-showcase-duplicate .price-text {
    color: #1E3A8A;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
}

.room-showcase-duplicate .divider-line {
    background: linear-gradient(90deg, #D4AF37, #1E3A8A);
    height: 3px;
    margin: 25px 0;
}

.room-showcase-duplicate .feature-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.room-showcase-duplicate .feature-box:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.room-showcase-duplicate .feature-box i {
    color: #1E3A8A;
    font-size: 1.1rem;
}

.room-showcase-duplicate .read-more-btn {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
}

.room-showcase-duplicate .read-more-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Responsive design for duplicate showcase */
@media (max-width: 768px) {
    .room-showcase-duplicate .showcase-card {
        padding: 25px 20px;
        max-width: 100%;
        margin-bottom: 30px;
        margin-left: 0;
        transform: translateY(0);
    }
    
    .room-showcase-duplicate .room-title {
        font-size: 1.8rem;
    }
    
    .room-showcase-duplicate .price-text {
        font-size: 1.1rem;
    }
    
    .room-showcase-duplicate .showcase-background,
    .room-showcase-duplicate .showcase-overlay {
        height: 55%;
    }
}

.showcase-background {
    position: absolute ;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
    
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 2;
}

.room-showcase-section .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    margin-bottom: 30px;
}
.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37);
    border-radius: 20px 20px 0 0;
}

.card-content {
    text-align: left;
}

.room-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 12px;
    line-height: 1.2;
}

.price-line {
    margin-bottom: 15px;
}

.price-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    background: linear-gradient(135deg, #1E3A8A, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.room-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

.divider-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37);
    margin: 20px 0;
    border-radius: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(30, 58, 138, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.feature-box:hover {
    background: rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.feature-box i {
    font-size: 1rem;
    color: #1E3A8A;
    width: 18px;
    text-align: center;
    transition: color 0.3s ease;
}

.feature-box:hover i {
    color: #D4AF37;
}

.feature-box span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

.read-more-btn {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Room Showcase */
@media (max-width: 768px) {
    .room-showcase-section {
        height: auto;
        min-height: auto;
        display: block;
        margin-bottom: 30px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .showcase-background,
    .showcase-overlay {
        height: 300px;
        position: relative;
    }
    
    .showcase-card {
        margin-bottom: 0;
        padding: 30px 20px;
        max-width: 100%;
        position: relative;
        margin-top: -50px;
        border-radius: 20px 20px 0 0;
        background: white;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    }
    
    .room-types-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .room-showcase-duplicate {
        display: block;
        margin-top: 40px;
        margin-bottom: 20px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .room-showcase-duplicate .showcase-background,
    .room-showcase-duplicate .showcase-overlay {
        height: 300px;
    }
    
    .room-showcase-duplicate .showcase-card {
        margin-top: -50px;
        border-radius: 20px 20px 0 0;
        background: white;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    }
    
    .room-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .room-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature-box {
        padding: 15px;
        border-radius: 12px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
    }
    
    .read-more-btn {
        width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
        border-radius: 25px;
    }
    
    .price-text {
        font-size: 1.1rem;
    }
    
    .room-description {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-box {
        padding: 8px 12px;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .room-showcase-section {
        height: auto;
        min-height: auto;
        display: block;
        margin-bottom: 25px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .showcase-background,
    .showcase-overlay {
        height: 250px;
        position: relative;
    }
    
    .showcase-card {
        margin-bottom: 0;
        padding: 25px 15px;
        margin-top: -40px;
        border-radius: 15px 15px 0 0;
        background: white;
        box-shadow: 0 -8px 25px rgba(0,0,0,0.1);
    }
    
    .room-types-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .room-showcase-duplicate {
        display: block;
        margin-top: 30px;
        margin-bottom: 15px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .room-showcase-duplicate .showcase-background,
    .room-showcase-duplicate .showcase-overlay {
        height: 250px;
    }
    
    .room-showcase-duplicate .showcase-card {
        margin-top: -40px;
        border-radius: 15px 15px 0 0;
        background: white;
        box-shadow: 0 -8px 25px rgba(0,0,0,0.1);
    }
    
    .room-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .room-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .feature-box {
        padding: 12px;
        border-radius: 10px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        font-size: 0.9rem;
    }
    
    .read-more-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 20px;
    }
    
    .price-text {
        font-size: 1rem;
    }
    
    .divider-line {
        margin: 15px 0;
        height: 2px;
    }
    
    .price-text {
        font-size: 1rem;
    }
    
    .room-description {
        font-size: 0.85rem;
    }
}

/* Know More Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
    position: relative;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    border-radius: 20px 20px 0 0;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.close-popup {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.popup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.popup-image-section {
    background: #f8f9fa;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-image-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    flex-shrink: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #1E3A8A;
    transform: scale(1.05);
}

.popup-info-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-info-section h3 {
    color: #1E3A8A;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.popup-price {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.popup-price-amount {
    font-size: 1.4rem;
    font-weight: 700;
}

.popup-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.popup-features h4,
.popup-amenities h4 {
    color: #1E3A8A;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.popup-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.popup-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1E3A8A;
    transition: all 0.3s ease;
}

.popup-feature-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.popup-feature-item i {
    color: #1E3A8A;
    font-size: 1.1rem;
}

.popup-feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.amenities-list li i {
    color: #1E3A8A;
    font-size: 0.9rem;
}

.popup-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-book-now,
.btn-whatsapp {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-book-now {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-book-now:hover {
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .popup-body {
        grid-template-columns: 1fr;
    }
    
    .popup-image-section {
        padding: 20px;
    }
    
    .popup-main-image {
        height: 200px;
    }
    
    .popup-info-section {
        padding: 20px;
    }
    
    .popup-features-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .popup-info-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 15px;
    }
    
    .popup-header {
        padding: 20px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .popup-image-section,
    .popup-info-section {
        padding: 15px;
    }
    
    .popup-main-image {
        height: 150px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 45px;
    }
}

/* Menu Popup Modal */
.menu-popup-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.menu-popup-content {
    background-color: white;
    margin: 1% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
    position: relative;
}

.menu-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    border-radius: 20px 20px 0 0;
}

.menu-popup-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.close-menu-popup {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.menu-popup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.menu-image-section {
    background: #f8f9fa;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-image-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.menu-gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    flex-shrink: 0;
}

.menu-gallery-thumb:hover,
.menu-gallery-thumb.active {
    border-color: #1E3A8A;
    transform: scale(1.05);
}

.menu-info-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-height: 80vh;
    overflow-y: auto;
}

.menu-info-section h3 {
    color: #1E3A8A;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.menu-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-category h4 {
    color: #1E3A8A;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.menu-category h4 i {
    color: #D4AF37;
    font-size: 1.1rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1E3A8A;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1E3A8A;
}

.menu-timings {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
}

.menu-timings h4 {
    color: #1E3A8A;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.timing-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timing-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.timing-card i {
    color: white;
    font-size: 1rem;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-reserve-table,
.btn-room-service {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reserve-table {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-reserve-table:hover {
    background: linear-gradient(135deg, #D4AF37, #F59E0B);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-room-service {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-room-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Responsive Design for Menu Popup */
@media (max-width: 768px) {
    .menu-popup-content {
        width: 95%;
        margin: 2% auto;
        max-height: 90vh;
    }
    
    .menu-popup-body {
        grid-template-columns: 1fr;
    }
    
    .menu-image-section {
        padding: 20px;
    }
    
    .menu-main-image {
        height: 200px;
    }
    
    .menu-info-section {
        padding: 20px;
        max-height: 60vh;
    }
    
    .menu-actions {
        flex-direction: column;
    }
    
    .menu-popup-header h2 {
        font-size: 1.5rem;
    }
    
    .menu-info-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .menu-popup-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }
    
    .menu-popup-header {
        padding: 20px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .menu-image-section,
    .menu-info-section {
        padding: 15px;
    }
    
    .menu-main-image {
        height: 150px;
    }
    
    .menu-gallery-thumb {
        width: 60px;
        height: 45px;
    }
    
    .menu-item {
        padding: 10px 12px;
    }
    
    .item-name {
        font-size: 0.9rem;
    }
    
    .item-price {
        font-size: 0.9rem;
    }
}

/* Room Types */
.room-types {
    padding: 100px 0;
    background: white;
}

.room-types-section {
    padding-top: 50px;
    background: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card.featured {
    border: 3px solid #1E3A8A;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1E3A8A;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    color: #1E3A8A;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.room-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
}

.room-amenities h4,
.room-features h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.amenity i {
    color: #1E3A8A;
    font-size: 1.1rem;
}

.room-features ul {
    list-style: none;
    padding: 0;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.room-features li i {
    color: #27ae60;
    font-size: 0.9rem;
}

/* Dining Section */
.dining-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.dining-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.dining-info h3 {
    color: #1E3A8A;
    font-size: 2rem;
    margin-bottom: 20px;
}

.dining-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.breakfast-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.breakfast-feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.breakfast-feature i {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.breakfast-feature h4 {
    margin-bottom: 10px;
    color: #333;
}

.breakfast-feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Facilities Section Enhanced */
.facilities-section {
    padding: 40px 0;
    padding-left: 15px;
    background: white;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.facility-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1E3A8A;
}

.facility-category h3 {
    color: #1E3A8A;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.facility-item i {
    color: #1E3A8A;
    font-size: 1.2rem;
    margin-top: 2px;
}

.facility-details {
    display: flex;
    flex-direction: column;
}

.facility-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.facility-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Information */
.contact-info {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-card a {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* WhatsApp Section */
.whatsapp-section {
    margin-top: 60px;
    text-align: center;
}

.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 3rem;
    color: white;
}

.whatsapp-content {
    text-align: left;
    flex: 1;
}

.whatsapp-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.whatsapp-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.whatsapp-content .btn {
    background: white;
    color: #25D366;
    border-color: white;
}

.whatsapp-content .btn:hover {
    background: #f8f9fa;
    color: #128C7E;
    border-color: #f8f9fa;
}

/* Map Updates */
.map-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.map-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

/* Contact Form */
.contact-form-section {
    padding: 30px 0;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.contact-layout::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40%;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(30, 58, 138, 0.3) 20%, 
        rgba(30, 58, 138, 0.6) 50%, 
        rgba(30, 58, 138, 0.3) 80%, 
        transparent 100%);
    filter: blur(0.5px);
    z-index: 1;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.contact-right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-section .container {
    max-width: 1200px;
}

.find-us-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.find-us-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.find-us-header h3 {
    color: #1E3A8A;
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.find-us-header h3 i {
    color: #dc2626;
}

.find-us-header p {
    color: #666;
    font-size: 0.95rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.address-icon {
    width: 40px;
    height: 40px;
    background: #1E3A8A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon i {
    color: white;
    font-size: 1.2rem;
}

.address-info h4 {
    color: #1E3A8A;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.address-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-method i {
    width: 35px;
    height: 35px;
    background: #1E3A8A;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.contact-method .fab.fa-whatsapp {
    background: #25D366;
}

.contact-method div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.contact-method a {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-method a:hover {
    color: #D4AF37;
}

.map-preview {
    margin-top: 10px;
}

.map-preview iframe {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Booking Section */
.booking-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.booking-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #D4AF37);
}

.booking-form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.booking-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #D4AF37);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-icon i {
    font-size: 1.8rem;
    color: white;
}

.booking-title h3 {
    color: #1E3A8A;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.booking-title p {
    color: #666;
    font-size: 1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form label {
    color: #1E3A8A;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-form label i {
    color: #D4AF37;
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #1E3A8A;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.booking-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-booking {
    background: linear-gradient(135deg, #1E3A8A, #D4AF37);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

.btn-booking span {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

.booking-note {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.booking-note i {
    color: #28a745;
}

/* Payment Section */
.payment-section {
    margin-top: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.payment-section h4 {
    color: #1E3A8A;
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-section h4 i {
    color: #D4AF37;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
}

.payment-option input[type="radio"]:checked + label {
    background: #1E3A8A;
    color: white;
    border-color: #1E3A8A;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.payment-option label i {
    font-size: 1.2rem;
}

.card-details,
.upi-details,
.wallet-details {
    margin-bottom: 25px;
}

.upi-note {
    margin-top: 15px;
    padding: 15px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1976d2;
    font-size: 0.9rem;
}

.upi-note i {
    color: #1976d2;
}

.booking-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 15px;
    border-top: 2px solid #1E3A8A;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1E3A8A;
}

.total-price {
    color: #D4AF37;
    font-size: 1.4rem;
}

.price {
    font-weight: 600;
    color: #1E3A8A;
}

.nights {
    font-weight: 600;
    color: #666;
}

/* Form Completion Message */
.form-completion-message {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 15px;
    border: 2px solid #bbdefb;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.message-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E3A8A, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-icon i {
    font-size: 1.5rem;
    color: white;
}

.message-content h4 {
    color: #1E3A8A;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.message-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Payment Success Message */
.payment-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-icon i {
    font-size: 2rem;
    color: white;
}

.success-content h3 {
    color: #155724;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-content p {
    color: #155724;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #1E3A8A, #D4AF37);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: #D4AF37;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    display: flex;
    gap: 15px;
    padding: 25px 30px;
    border-top: 2px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #1E3A8A, #D4AF37);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* Modal Payment Section */
.modal-body .payment-section {
    background: none;
    padding: 0;
    border: none;
    margin: 0;
}

.modal-body .payment-methods {
    margin-bottom: 25px;
}

.modal-body .booking-summary {
    margin-top: 25px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #1E3A8A;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h4 {
    color: #1E3A8A;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Contact Layout */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-layout::after {
        display: none;
    }
    
    .contact-left {
        order: 2;
    }
    
    .contact-right {
        order: 1;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
}

.form-container {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #1E3A8A;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E3A8A;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    align-self: center;
    padding: 15px 40px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Location Section */
.location-section {
    padding: 40px 0;
    padding-left: 15px;
    background: #ffffff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    color: #1E3A8A;
    font-size: 2rem;
    margin-bottom: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-item i {
    font-size: 2rem;
    color: #1E3A8A;
    margin-top: 5px;
}

.location-text h4 {
    color: #333;
    margin-bottom: 10px;
}

.location-text p {
    color: #666;
    line-height: 1.6;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Nearby Attractions */
.nearby-attractions {
    padding: 100px 0;
    background: white;
}

.attraction-desc {
    color: #666;
    margin-bottom: 10px;
}

.travel-time {
    color: #1E3A8A;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: #1E3A8A;
    color: white;
    text-align: center;
}

.quick-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.quick-contact-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.quick-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Sidebar Menu */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sidebar-title {
    display: block;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.sidebar-menu {
    flex: 1;
    list-style: none;
    padding: 20px 0;
    margin: 0;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.sidebar-item {
    margin: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease forwards;
}

.sidebar-link:nth-child(1) { animation-delay: 0.1s; }
.sidebar-link:nth-child(2) { animation-delay: 0.2s; }
.sidebar-link:nth-child(3) { animation-delay: 0.3s; }
.sidebar-link:nth-child(4) { animation-delay: 0.4s; }
.sidebar-link:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #D4AF37;
    transform: translateX(-5px);
}

.sidebar-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-left-color: #D4AF37;
}

.sidebar-link i {
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.sidebar-link span {
    font-size: 1rem;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
}

/* Sidebar Title Section */
.sidebar-title-section {
    padding: 20px 20px 10px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.sidebar-section-title {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding: 8px 0;
}

/* Phone Section */
.sidebar-phone-section {
    padding: 15px 20px 10px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.sidebar-phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #1E3A8A;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.sidebar-phone-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.sidebar-phone-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sidebar-phone-btn:hover i {
    transform: scale(1.1) rotate(180deg);
}

/* WhatsApp Section */
.sidebar-whatsapp-section {
    padding: 10px 20px 15px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.sidebar-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.sidebar-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.sidebar-whatsapp-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sidebar-whatsapp-btn:hover i {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-icon-container {
    text-align: left;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon-container i {
    font-size: 1.5rem;
    color: #D4AF37;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.phone-icon-container i:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.phone-content {
    text-align: left;
    flex: 1;
}

.phone-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.phone-info-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.phone-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-booking-btn,
.phone-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-booking-btn {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #D4AF37;
    color: #D4AF37;
}

.phone-booking-btn:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.phone-call-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.phone-call-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.phone-booking-btn i,
.phone-call-btn i {
    font-size: 1rem;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .contact-icons-container {
        gap: 10px;
        padding: 6px 15px;
    }
    
    .phone-btn span, .whatsapp-btn span {
        display: none;
    }
    
    .phone-btn, .whatsapp-btn {
        padding: 8px;
        font-size: 12px;
    }
    
    .phone-btn i, .whatsapp-btn i {
        font-size: 14px;
    }
    
    .book-now-btn span {
        display: none;
    }
    
    .book-now-btn i {
        font-size: 14px;
    }
    
    .header-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .header-logo {
        gap: 12px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .hotel-name {
        font-size: 24px;
    }
    
    .hotel-tagline {
        font-size: 11px;
    }
    
    .book-now-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .book-now-btn span {
        display: none;
    }
    
    .book-now-btn i {
        font-size: 14px;
    }
    
    /* Hero Responsive */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-small-title {
        font-size: 1rem;
    }
    
    .booking-form-bar {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 20px;
        max-width: 400px;
    }
    
    .form-field input,
    .form-field select {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .search-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .hero-booking-form {
        padding: 0 15px;
        margin-top: 20px;
    }
    
    /* Hero Banner Responsive */
    .hero-banner .hero-main-title {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .hero-banner .hero-small-title {
        font-size: 1.4rem;
    }
    
    .hero-banner .booking-form {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 25px;
        max-width: 500px;
    }
    
    .hero-banner .form-field input,
    .hero-banner .form-field select {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .hero-banner .search-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .header-logo {
        gap: 10px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .hotel-name {
        font-size: 20px;
    }
    
    .hotel-tagline {
        font-size: 10px;
    }
    
    .book-now-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hamburger-menu {
        width: 35px;
        height: 35px;
    }
    
    .hamburger-line {
        width: 18px;
    }
    
    /* Hero Mobile Responsive */
    .hero {
        min-height: auto;
        padding: 80px 0 30px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-small-title {
        font-size: 0.9rem;
    }
    
    .booking-form-bar {
        padding: 20px 15px;
        gap: 12px;
        max-width: 350px;
    }
    
    .form-field input,
    .form-field select {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .search-btn span {
        display: none;
    }
    
    .search-btn i {
        font-size: 1.2rem;
    }
    
    .hero-booking-form {
        padding: 0 10px;
        margin-top: 15px;
    }
    
    /* Hero Banner Mobile Responsive */
    .hero-banner .hero-main-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .hero-banner .hero-small-title {
        font-size: 1.2rem;
    }
    
    .hero-banner .booking-form {
        padding: 25px 20px;
        gap: 15px;
        max-width: 400px;
    }
    
    .hero-banner .form-field input,
    .hero-banner .form-field select {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .hero-banner .search-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hero-banner .search-button span {
        display: none;
    }
    
    .hero-banner .search-button i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .facilities-hero .hero-title {
        font-size: 2rem;
    }
    
    .facilities-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-hero .hero-title {
        font-size: 2rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .products-hero .hero-title {
        font-size: 2rem;
    }
    
    .products-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .whatsapp-card {
        padding: 30px 20px;
    }
    
    .whatsapp-icon {
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-icon i {
        font-size: 2.5rem;
    }
    
    .whatsapp-content h3 {
        font-size: 1.5rem;
    }
    
    .room-types-section .room-content,
    .package-content,
    .dining-content {
        padding: 20px;
    }
    
    .room-types-section .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .room-types-section .room-amenities {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .room-types-section .room-content h3 {
        font-size: 1.5rem;
    }
    
    .room-types-section .room-description {
        font-size: 0.9rem;
    }
    
    .room-types-section .room-image {
        height: 200px;
    }
    
    .package-header {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .room-types-section .rooms-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .room-types-section .room-content {
        padding: 15px;
    }
    
    .room-types-section .room-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .room-types-section .room-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .room-types-section .room-image {
        height: 180px;
    }
    
    .room-types-section .room-amenities {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .room-types-section .amenity {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .room-types-section .amenity i {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .facility-card {
        padding: 25px 20px;
    }
    
    .facility-icon {
        width: 60px;
        height: 60px;
    }
    
    .facility-icon i {
        font-size: 2rem;
    }
    
    .facility-card h3 {
        font-size: 1.2rem;
    }
    
    .facility-card p {
        font-size: 0.9rem;
    }
    
    .facility-features li {
        font-size: 0.85rem;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Additional Mobile Responsive for Rooms Page */
@media (max-width: 768px) {
    /* Packages Section Mobile */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .package-header h3 {
        font-size: 1.4rem;
    }
    
    .package-description {
        font-size: 0.9rem;
    }
    
    .package-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .package-features li {
        font-size: 0.85rem;
    }
    
    /* Dining Section Mobile */
    .dining-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-details h4 {
        font-size: 1rem;
    }
    
    .service-details p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Packages Section Mobile */
    .packages-section {
        padding: 30px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .package-card {
        padding: 15px;
    }
    
    .package-header h3 {
        font-size: 1.2rem;
    }
    
    .package-description {
        font-size: 0.85rem;
    }
    
    .package-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .package-features li {
        font-size: 0.8rem;
    }
    
    .package-pricing {
        padding: 12px;
    }
    
    .package-price {
        font-size: 1.4rem;
    }
    
    /* Dining Section Mobile */
    .dining-section {
        padding: 40px 0;
    }
    
    .restaurant-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .restaurant-header h3 {
        font-size: 2rem;
    }
    
    .restaurant-header .restaurant-description {
        font-size: 1rem;
    }
    
    .dining-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .service-item {
        padding: 12px;
    }
    
    .service-details h4 {
        font-size: 0.9rem;
    }
    
    .service-details p {
        font-size: 0.75rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    /* Room Showcase Duplicate Mobile */
    .room-showcase-duplicate .showcase-card {
        padding: 20px 15px;
        max-width: 100%;
        margin-bottom: 20px;
        margin-left: 0;
        transform: translateY(0);
    }
    
    .room-showcase-duplicate .room-title {
        font-size: 1.6rem;
    }
    
    .room-showcase-duplicate .price-text {
        font-size: 1rem;
    }
    
    .room-showcase-duplicate .showcase-background,
    .room-showcase-duplicate .showcase-overlay {
        height: 50%;
    }
}

/* Comprehensive Mobile Responsive for All Pages */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-small-title {
        font-size: 1.2rem;
    }
    
    .hero-booking-form {
        padding: 0 15px;
    }
    
    .booking-form {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 25px 20px !important;
    }
    
    .form-field {
        width: 100% !important;
    }
    
    
    /* Quick Links Mobile */
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .quick-link-card {
        padding: 20px 15px;
    }
    
    .quick-link-card h3 {
        font-size: 1.1rem;
    }
    
    .quick-link-card p {
        font-size: 0.85rem;
    }
    
    /* Sub Property Mobile */
    .sub-property-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .sub-property-text {
        order: 2;
    }
    
    .sub-property-image {
        order: 1;
    }
    
    /* Nearby Attractions Mobile */
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .attraction-card {
        padding: 20px 15px;
    }
    
    .attraction-card h3 {
        font-size: 1.1rem;
    }
    
    .attraction-card p {
        font-size: 0.85rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-left {
        flex: none;
        padding: 20px;
    }
    
    .testimonial-divider {
        width: 100%;
        height: 2px;
        margin: 15px 0;
    }
    
    .testimonial-right {
        padding: 20px;
    }
    
    /* FAQ Mobile */
    .faq-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-left {
        padding: 20px 0;
        text-align: center;
    }
    
    .faq-info {
        position: static;
    }
    
    .faq-heading {
        font-size: 2rem;
    }
    
    .faq-subtext {
        font-size: 1rem;
    }
    
    .faq-contact-link {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section Mobile */
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-small-title {
        font-size: 1rem;
    }
    
    .hero-booking-form {
        padding: 0 10px;
    }
    
    .booking-form {
        padding: 20px 15px !important;
        gap: 12px !important;
    }
    
    .form-field input,
    .form-field select {
        padding: 20px 12px 12px 12px !important;
        font-size: 14px !important;
    }
    
    .search-button {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    
    /* Quick Links Mobile */
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quick-link-card {
        padding: 15px 12px;
    }
    
    .quick-link-card h3 {
        font-size: 1rem;
    }
    
    .quick-link-card p {
        font-size: 0.8rem;
    }
    
    /* Sub Property Mobile */
    .sub-property-section {
        padding: 40px 0;
    }
    
    .sub-property-content {
        gap: 20px;
    }
    
    .sub-property-text h2 {
        font-size: 1.8rem;
    }
    
    .sub-property-text p {
        font-size: 0.9rem;
    }
    
    /* Nearby Attractions Mobile */
    .attractions-section {
        padding: 40px 0;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .attraction-card {
        padding: 15px 12px;
    }
    
    .attraction-card h3 {
        font-size: 1rem;
    }
    
    .attraction-card p {
        font-size: 0.8rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 40px 0 15px 0;
    }
    
    .testimonials-slider-section {
        padding: 15px 0 60px 0;
    }
    
    .testimonial-slide {
        padding: 20px 15px;
    }
    
    .testimonial-content-compact {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-left {
        flex: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 15px;
    }
    
    .testimonial-divider {
        width: 100%;
        height: 2px;
        margin: 10px 0;
    }
    
    .testimonial-right {
        padding: 15px;
    }
    
    /* FAQ Mobile */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-content {
        gap: 20px;
    }
    
    .faq-heading {
        font-size: 1.8rem;
    }
    
    .faq-subtext {
        font-size: 0.9rem;
    }
    
    .faq-contact-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 12px 15px;
    }
    
    /* Services Page Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* About Page Mobile */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-left {
        order: 2;
    }
    
    .about-right {
        order: 1;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .hotel-name-small {
        font-size: 0.9rem;
    }
    
    .about-text h1 {
        font-size: 4rem;
    }
    
    /* Contact Page Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-left {
        order: 2;
    }
    
    .contact-right {
        order: 1;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    /* Header Mobile */
    .modern-header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .header-logo .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .header-logo .logo-text p {
        font-size: 0.7rem;
    }
    
    .book-now-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .book-now-btn span {
        display: none;
    }
    
    .hamburger-menu {
        width: 30px;
        height: 30px;
    }
    
    /* Sidebar Mobile */
    .sidebar {
        width: 280px;
    }
    
    .sidebar-header {
        padding: 20px 15px;
    }
    
    .sidebar-nav-section {
        padding: 0 15px;
    }
    
    .sidebar-nav-section h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .sidebar-nav-section ul li a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .sidebar-contact-section {
        padding: 15px;
    }
    
    .sidebar-contact-section h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .contact-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .whatsapp-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    /* Footer styles moved to main mobile section */
    
    
    
    
    
    
    
}

@media (max-width: 480px) {
    /* Header Mobile */
    .modern-header {
        padding: 8px 0;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .header-logo .logo-text h1 {
        font-size: 1rem;
    }
    
    .header-logo .logo-text p {
        font-size: 0.6rem;
    }
    
    .book-now-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .hamburger-menu {
        width: 25px;
        height: 25px;
    }
    
    /* Sidebar Mobile */
    .sidebar {
        width: 260px;
    }
    
    .sidebar-header {
        padding: 15px 12px;
    }
    
    .sidebar-nav-section {
        padding: 0 12px;
    }
    
    .sidebar-nav-section h4 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .sidebar-nav-section ul li a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .sidebar-contact-section {
        padding: 12px;
    }
    
    .sidebar-contact-section h4 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .contact-button {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .whatsapp-button {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    /* Footer styles moved to main mobile section */
    
    /* Mission Vision Mobile */
    .mission-vision-section {
        padding: 30px 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 20px 15px;
    }
    
    .mission-card h3,
    .vision-card h3,
    .values-card h3 {
        font-size: 1.2rem;
    }
    
    .mission-card p,
    .vision-card p,
    .values-card p {
        font-size: 0.85rem;
    }
    
    /* Property Details Mobile */
    .property-details {
        padding: 30px 0;
    }
    
    .location-facilities-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 10px;
    }
    
    .location-section,
    .facilities-section {
        padding: 15px 12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .bullet-points {
        gap: 8px;
    }
    
    .bullet-item {
        gap: 8px;
        padding: 6px;
    }
    
    .bullet-icon {
        width: 28px;
        height: 28px;
    }
    
    .bullet-icon i {
        font-size: 0.8rem;
    }
    
    .bullet-content h5 {
        font-size: 0.8rem;
    }
    
    .bullet-content p {
        font-size: 0.75rem;
    }
    
    /* Facilities Grid Mobile */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facility-card {
        padding: 20px 15px;
    }
    
    .facility-card h3 {
        font-size: 1.2rem;
    }
    
    .facility-card p {
        font-size: 0.85rem;
    }
    
    .facility-features {
        margin-top: 15px;
    }
    
    .facility-features li {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    /* Room Showcase Mobile */
    .room-showcase-section {
        margin: 20px 0;
    }
    
    .showcase-card {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .room-title {
        font-size: 1.6rem;
    }
    
    .price-text {
        font-size: 1rem;
    }
    
    .room-description {
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 15px 0;
    }
    
    .feature-box {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Packages Mobile */
    .packages-section {
        padding: 30px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .package-card {
        padding: 15px;
    }
    
    .package-header h3 {
        font-size: 1.1rem;
    }
    
    .package-description {
        font-size: 0.8rem;
    }
    
    .package-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .package-features li {
        font-size: 0.75rem;
    }
    
    .package-pricing {
        padding: 10px;
    }
    
    .package-price {
        font-size: 1.2rem;
    }
    
    /* Dining Section Mobile */
    .dining-section {
        padding: 30px 0;
    }
    
    .restaurant-showcase-full {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .restaurant-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .restaurant-header h3 {
        font-size: 1.8rem;
    }
    
    .restaurant-header .restaurant-description {
        font-size: 0.95rem;
    }
    
    .restaurant-highlights h4,
    .restaurant-timings h4 {
        font-size: 1.1rem;
    }
    
    .dining-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .service-item {
        padding: 12px;
    }
    
    .service-details h4 {
        font-size: 0.9rem;
    }
    
    .service-details p {
        font-size: 0.75rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-icon i {
        font-size: 1.1rem;
    }
    
    /* Restaurant Showcase Mobile */
    .restaurant-showcase {
        padding: 20px 15px;
    }
    
    .restaurant-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .restaurant-text {
        order: 2;
    }
    
    .restaurant-image {
        order: 1;
    }
    
    .restaurant-text h2 {
        font-size: 1.8rem;
    }
    
    .restaurant-text p {
        font-size: 0.85rem;
    }
    
    .highlight-items {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 15px 0;
    }
    
    .highlight-item {
        padding: 8px 12px;
    }
    
    .highlight-item h4 {
        font-size: 0.9rem;
    }
    
    .highlight-item p {
        font-size: 0.75rem;
    }
    
    .restaurant-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Booking CTA Mobile */
    .booking-cta-section {
        padding: 30px 0;
    }
    
    .booking-cta-content {
        padding: 20px 15px;
    }
    
    .booking-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .booking-cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Availability Results Interface */
.availability-results {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.availability-container {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.availability-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    border-radius: 20px 20px 0 0;
}

.availability-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close-availability {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-availability:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.availability-content {
    padding: 30px;
}

.search-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #333;
}

.summary-item i {
    color: #1E3A8A;
    font-size: 1.2rem;
}

.rooms-available h4 {
    font-size: 1.5rem;
    color: #1E3A8A;
    margin-bottom: 20px;
    font-weight: 700;
}

.room-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-option {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 20px;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
}

.room-option:hover {
    border-color: #1E3A8A;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.room-image {
    width: 150px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details h5 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 8px;
    font-weight: 700;
}

.room-details p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 20px;
}

.room-features i {
    color: #D4AF37;
    font-size: 0.8rem;
}

.room-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 150px;
}

.price {
    text-align: center;
}

.currency {
    font-size: 1.2rem;
    color: #1E3A8A;
    font-weight: 600;
}

.amount {
    font-size: 2rem;
    color: #1E3A8A;
    font-weight: 700;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.book-room-btn {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.book-room-btn:hover {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.availability-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.availability-footer p {
    color: #666;
    font-size: 0.95rem;
}

.availability-footer a {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 600;
}

.availability-footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive for Availability */
@media (max-width: 768px) {
    .availability-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .availability-header {
        padding: 20px;
    }
    
    .availability-header h3 {
        font-size: 1.5rem;
    }
    
    .availability-content {
        padding: 20px;
    }
    
    .search-summary {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .room-option {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .room-image {
        width: 100%;
        height: 150px;
        margin: 0 auto;
    }
    
    .room-pricing {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .price {
        text-align: left;
    }
    
    .book-room-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .availability-results {
        padding: 10px;
    }
    
    .availability-container {
        margin: 5px;
    }
    
    .availability-header {
        padding: 15px;
    }
    
    .availability-content {
        padding: 15px;
    }
    
    .room-option {
        padding: 15px;
    }
    
    .room-details h5 {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 1.8rem;
    }
    
    .room-features {
        gap: 10px;
    }
    
    .room-features span {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
      
}
  .footer-bottom img { 
        vertical-align: middle;
    }

@media (min-width: 1200px) {
    body {
        font-size: 17px;
    }

    .container {
        max-width: 1320px;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-banner .hero-content {
        max-width: 1320px;
        padding: 120px 40px 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-banner .booking-form,
    .room-showcase-section .container,
    .testimonials-slider-container,
    .restaurant-content-full,
    .packages-section .container,
    .welcome-section .container,
    .facilities-section .container,
    .attractions-section .container {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-banner .hero-small-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-banner .hero-main-title {
        font-size: 4.5rem;
    }

    .hero-banner .booking-form {
        max-width: 1200px;
        padding: 48px 56px;
        gap: 32px;
    }

    .booking-form-bar,
    .hero-banner .booking-form {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .search-btn,
    .hero-banner .search-button {
        font-size: 1.1rem;
    }

    .welcome-section .container {
        max-width: 1300px;
    }

    .welcome-content {
        max-width: none;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 90px;
        align-items: center;
    }

    .welcome-title {
        font-size: 3.2rem;
    }

    .welcome-text {
        font-size: 1.15rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
    }

    .quick-link-card {
        padding: 32px 24px;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    .services-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 40px;
    }

    .services-description {
        margin-bottom: 0;
        max-width: 560px;
    }

    .services-description p {
        margin: 0;
    }

    .services-highlights {
        justify-content: flex-start;
        gap: 20px;
    }

    .services-cta .btn,
    .services-cta .btn-primary {
        flex-shrink: 0;
    }

    .room-showcase-section .container {
        max-width: 1320px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .showcase-card {
        max-width: 440px;
    }

    .room-showcase-section .showcase-card.center-right {
        margin-left: auto;
        margin-right: 5%;
    }

    .room-showcase-duplicate .showcase-card {
        margin-left: auto;
        margin-right: auto;
    }

    .sub-property-content {
        grid-template-columns: 1.1fr 0.9fr !important;
        gap: 80px;
    }

    .attractions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
    }

    .testimonials-slider-container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-content-compact {
        gap: 40px;
    }

    .faq-content {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 64px;
        align-items: start;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .packages-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px;
    }

    .restaurant-content-full {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .restaurant-content-grid {
        grid-template-columns: 1.2fr 1fr 0.8fr;
        gap: 36px;
    }
}