:root {
    --primary-blue: #0A1D37;
    --accent-orange: #FF8A00;
    --bg-dark: #000000;
    --bg-light: #F8F9FA;
    --text-muted: #6C757D;
    --testimonial-red: #FF4D4D;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Navbar & Logo */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 0;
    z-index: 1050;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
}

.logo-placeholder {
    height: 45px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-placeholder {
        height: 35px;
    }
}


.nav-toggle-btn {
    background: none;
    border: none;
    color: white;
    padding: 10px;
    transition: color 0.3s ease;
}

.scrolled .nav-toggle-btn {
    color: var(--primary-blue);
}

/* Full Screen Split Menu Overlay (Exact image_2efd7f.jpg) */
#menuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    display: none;
    overflow-y: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 100vh;
}

.menu-visual {
    background: url('https://images.unsplash.com/photo-1594026112284-02bb6f3352fe?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    border-radius: 0 25px 25px 0;
    margin: 15px;
}

.menu-content {
    padding: 8% 10%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

.menu-heading {
    font-size: 2.8rem;
    font-weight: 500;
    margin-top: 60px;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.menu-email {
    font-size: 1.6rem;
    color: black;
    text-decoration: underline;
    margin-bottom: 80px;
    display: block;
    font-weight: 400;
}

.menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 35px;
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.menu-links li a {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.menu-links li a:hover {
    color: var(--accent-orange);
}

.menu-footer {
    margin-top: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-dots {
    opacity: 0.4;
}

/* Hero Section (Exact 805) */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    /* background removed in favor of img tag */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45));
    z-index: -1;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.2rem, 9vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-top: 40px;
}

.char {
    display: inline-block;
    transform-origin: center center;
    will-change: transform, opacity, filter;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    max-width: 800px;
    margin-inline: auto;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.btn-book {
    background: white;
    color: black;
    border-radius: 50px;
    padding: 16px 45px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-book:hover {
    transform: scale(1.05);
}

/* About Us Section */
.about-section {
    padding: 30px 0;
    background-color: white;
    overflow: hidden;
}

.about-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    width: 100%;
}

.about-grid-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.about-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-grid-item:hover img {
    transform: scale(1.03);
}

/* Grid Placement */
.item-1 {
    grid-column: 1;
    grid-row: 1;
    height: 240px;
}

.item-2 {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 100%;
    min-height: 500px;
}

.item-3 {
    grid-column: 1;
    grid-row: 2;
    height: 240px;
}

@media (max-width: 991px) {
    .about-grid-container {
        /* Keep 2 columns but reduced gap */
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
    }

    .item-1 {
        grid-column: 1;
        grid-row: 1;
        height: 160px;
    }

    .item-2 {
        grid-column: 2;
        grid-row: 1 / span 2;
        height: 100%;
        min-height: auto;
    }

    .item-3 {
        grid-column: 1;
        grid-row: 2;
        height: 160px;
    }
}

/* Services Section (Exact 806/807) */
.services-section {
    background-color: var(--bg-dark);
    color: white;
    padding: 100px 0;
}

.service-item {
    border-top: 1px solid #222;
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.service-number {
    font-size: 1.1rem;
    color: #444;
    margin-right: 40px;
    font-weight: 600;
}

.service-img-wrapper {
    width: 320px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 50px;
    flex-shrink: 0;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); */
    transition: all 0.6s ease;
}

.service-item:hover img {
    /* filter: grayscale(0%); */
    transform: scale(1.05);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    color: #888;
    max-width: 480px;
    line-height: 1.6;
}

/* Benefits Section (Exact 808) */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefit-card {
    background: #F9FAFB;
    border-radius: 15px;
    padding: 40px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.benefit-card-dots {
    position: absolute;
    top: 35px;
    right: 35px;
    opacity: 0.3;
}

/* Testimonials Section (Redesigned) */
.testimonials-section {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-card::before {
    content: '”';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.03);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.stars {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #333;
    font-weight: 500;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2px;
    font-size: 1.05rem;
}

.testimonial-loc {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* FAQ Section (Redesigned) */
.faq-section {
    padding: 100px 0;
    background: white;
}

.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.accordion-button {
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
    box-shadow: none !important;
    color: var(--primary-blue);
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--accent-orange);
}

.accordion-body {
    padding: 0 30px 25px 30px;
    color: #555;
    line-height: 1.7;
}

/* Custom Accordion Icon */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a1d37'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff8a00'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.faq-img-container {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.cta-strip {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 18px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    padding: 25px 0;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Team Section (Exact 812) */
.team-section {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.team-card {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: #eee;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); */
    transition: all 0.7s ease;
}

.team-card:hover img {
    /* filter: grayscale(0%); */
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
}

@media (max-width: 991px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-visual {
        display: none;
    }

    .menu-content {
        padding-top: 100px;
        text-align: center;
        align-items: center;
    }

    .menu-links {
        justify-content: center;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-img-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 150px 0 100px;
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-intro h1 {
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-details h5 {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-form-card .form-label {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(10, 29, 55, 0.05);
    border-color: var(--primary-blue);
}

.contact-submit-btn {
    background-color: var(--primary-blue);
    border: none;
    border-radius: 10px;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
}

/* Membership Page Styles */
.membership-page-section {
    padding: 150px 0 100px;
    background-color: var(--bg-light);
    min-height: 100vh;
}

.membership-hero {
    max-width: 900px;
}

.qr-card {
    background: #fff;
    transition: transform 0.3s ease;
}

.qr-card:hover {
    transform: translateY(-5px);
}

.membership-form-card {
    position: sticky;
    top: 100px;
}



