* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-bg);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}


.dotted-bg {
    background-image: radial-gradient(rgba(11, 36, 71, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/*----------------------------------------------------1.Navbar--------------------------------------------------*/

        .site-header {
            padding: 1.5rem 0;
            position: relative;
            z-index: 100;
            background-color: var(--color-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--color-navy);
            gap: 0.5rem;
            z-index: 101; /* Keeps logo above mobile menu */
        }

        .logo-icon {
            color: var(--color-gold);
            font-size: 1.6rem;
        }

        /* WRAPPER: Holds links and buttons together for easier mobile manipulation */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link-item {
            text-decoration: none;
            color: var(--color-navy);
            font-weight: 600;
            cursor: pointer;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-link-item:hover {
            color: var(--color-gold);
        }

        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .btn-login {
            text-decoration: none;
            color: var(--color-navy);
            font-weight: 700;
            cursor: pointer;
        }

        .btn-signup {
            background-color: var(--color-navy);
            color: var(--color-white);
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            box-shadow: 0 4px 15px rgba(11, 36, 71, 0.2);
        }

        .btn-signup:hover {
            background-color: var(--color-gold);
            color: var(--color-navy);
        }

        /* HAMBURGER MENU STYLES */
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 101;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--color-navy);
            transition: all 0.3s ease-in-out;
        }

      
       

/*----------------------------------------------------2.Hero--------------------------------------------------*/

.hero {
    position: relative;
    width: 100%;
    height: 120vh;
    /* Taller height to allow scrolling space */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    overflow: hidden;
    background: linear-gradient(to bottom, #f8f9fc 0%, #eef2f6 100%);
}

/* --- 3. TYPOGRAPHY --- */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-navy);
    text-align: center;
    z-index: 5;
    position: relative;
}

.hero-title-span {
    color: var(--color-gold);
}

.btn-get-started {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(11, 36, 71, 0.25);
    transition: transform 0.2s;
    z-index: 15;
    position: relative;
}

.btn-get-started:hover {
    transform: translateY(-3px);
}

/* --- 4. SHAPES (NAVY & GOLD) --- */
.shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
}

@keyframes spinSlow {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    100% {
        transform: rotate(-360deg);
    }
}

/* Navy Dashed Circle */
.shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    border: 4px dashed var(--color-navy);
    border-radius: 50%;
    animation: spinSlow 15s linear infinite;
}

/* Gold Diamond */
.shape-2 {
    top: 15%;
    right: 10%;
    width: 90px;
    height: 90px;
    border: 6px solid var(--color-gold);
    transform: rotate(45deg);
    animation: spinReverse 5s linear infinite;
}

/* Navy Plus */
.shape-3 {
    bottom: 40%;
    left: 15%;
    font-size: 120px;
    color: var(--color-navy);
    font-weight: 900;
    opacity: 0.1;
}

/* Gold Triangle */
.shape-4 {
    top: 40%;
    right: 25%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--color-gold);
    animation: spinSlow 15s linear infinite;
}

/* 1. Clockwise Rotation (0 to 360) */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 2. Counter-Clockwise Rotation (0 to -360) */
@keyframes spinReverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Specific rotation for the Diamond to maintain its angle */
@keyframes spinDiamond {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(405deg);
        /* 45 + 360 */
    }
}

/* --- 5. PHONE 3D --- */
.phone-wrapper {
    position: relative;
    width: 260px;
    /* Slightly wider */
    height: 520px;
    z-index: 10;
    perspective: 1000px;
}

.phone-container {
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    border: 12px solid var(--color-navy);
    border-radius: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(11, 36, 71, 0.25);
    transform-style: preserve-3d;
    /* Straight phone, no tilt */
    transform: rotateX(0deg) rotateY(0deg);
    transform: translateX(200px);
}

.phone-notch {
    position: absolute;
    top: 0;
    width: 120px;
    height: 28px;
    background-color: var(--color-navy);
    border-radius: 0 0 16px 16px;
    z-index: 12;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f4f7fa 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Phone Internals */
.search-bar {
    width: 85%;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
}

.search-bar span {
    font-weight: 700;
    color: var(--color-navy);
}

.tooth-circle {
    width: 90px;
    height: 90px;
    background: var(--color-navy);
    border: 4px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(11, 36, 71, 0.12);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateZ(60px);
    /* 3D pop */
}

.fc-1 {
    top: 100px;
    right: -70px;
}

.fc-2 {
    bottom: 100px;
    right: -60px;
}

/* --- 6. BANNER & IMAGES --- */
.curved-banner {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 600px;
    background: radial-gradient(ellipse at center bottom, var(--color-gold) 0%, #B89628 60%, transparent 60.5%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 280px;
}

.curve-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    color: var(--color-navy);
    text-align: center;
    max-width: 800px;
 
  
    
}

/* Image Track Wrappers */
.track-container {
    display: flex;
    position: absolute;
    top: 450px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 400px;
    pointer-events: none;
    z-index: 2;
}

.img-wrap {
    position: absolute;
    width: 200px;
    height: 150px;
}

.img-wrap-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #fff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    will-change: transform;
    /* Performance optimization */
}

/* Initial Rotations handled by Wrapper */
.pos-1 {
    left: 0%;
    top: 100px;
    transform: rotate(-20deg);
}

.pos-2 {
    left: 16%;
    top: 20px;
    transform: rotate(-12deg);
    z-index: 1;
}

.pos-3 {
    left: 32%;
    top: -20px;
    transform: rotate(-5deg);
}

.pos-4 {
    right: 32%;
    top: -20px;
    transform: rotate(5deg);
}

.pos-5 {
    right: 16%;
    top: 20px;
    transform: rotate(12deg);
    z-index: 1;
}

.pos-6 {
    right: 0%;
    top: 100px;
    transform: rotate(20deg);
}

/* Spacer for scrolling demo */
.spacer {
    height: 100vh;
    background: #fff;
}

@keyframes continuous-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*----------------------------------------------------3.Pricing--------------------------------------------------*/



.pricing-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
}

/* Glow Effect */
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.15);
    color: #B89628;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    font-weight: 700;
    color: var(--color-navy);
    background: white;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: relative;
    z-index: 2;
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: var(--color-navy);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.discount-pill {
    background: #DEF7EC;
    color: #03543F;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.price-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 36, 71, 0.1);
    border-color: var(--color-gold);
}

/* Featured Card */
.price-card.featured {
    background: linear-gradient(145deg, var(--color-navy) 0%, #162f55 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(11, 36, 71, 0.3);
    z-index: 10;
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-navy);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.plan-desc {
    font-size: 0.95rem;
    color: #777;
    font-weight: 500;
}

.price-card.featured .plan-desc {
    color: rgba(255, 255, 255, 0.7);
}

.price-box {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 4px;
}

.amount {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.period {
    font-size: 0.9rem;
    color: #999;
    font-weight: 600;
    margin-left: 5px;
}

.price-card.featured .amount {
    color: var(--color-white);
}

.price-card.featured .currency {
    color: var(--color-gold);
}

.price-card.featured .period {
    color: rgba(255, 255, 255, 0.5);
}

.divider {
    height: 1px;
    background: #eee;
    width: 100%;
    margin-bottom: 25px;
}

.divider.light {
    background: rgba(255, 255, 255, 0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-li-item {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
}

.price-card.featured .feature-list .feature-li-item {
    color: rgba(255, 255, 255, 0.9);
}

.feature-li-item.disabled {
    color: #ccc;
    text-decoration: line-through;
    opacity: 0.6;
}

.check-icon {
    color: var(--color-navy);
    background: #eee;
    padding: 4px;
    border-radius: 50%;
    font-size: 0.7rem;
}

.check-gold {
    color: var(--color-navy);
    background: var(--color-gold);
    padding: 4px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.btn-price-outline {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #eee;
    color: var(--color-navy);
    transition: 0.3s;
}

.btn-price-outline:hover {
    border-color: var(--color-navy);
    background: #f9f9f9;
}

.btn-price-solid {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    background: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.btn-price-solid:hover {
    background: #e5bd43;
    transform: translateY(-2px);
}


/*----------------------------------------------------4.Meet the doctor--------------------------------------------------*/
/*------------------------------------Meet the Doctor-----------------------------*/

.doctor-section-geo {
    padding: 5rem 5%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    /* Ensure contrast */
}

.container-2 {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Text wider than image */
    gap: 4rem;
    align-items: center;
}

/* --- CONTENT SIDE (LEFT) --- */
.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 1. REPLACED: .content-wrapper h3 -> .doctor-subtitle */
.doctor-subtitle {
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Decorative line next to subheader */
.doctor-subtitle::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}

/* 2. REPLACED: .content-wrapper h2 -> .doctor-title */
.doctor-title {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    color: var(--color-navy);
    font-weight: 800;
}

/* 3. REPLACED: .content-wrapper p -> .doctor-desc */
.doctor-desc {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* --- PILL STYLE METRICS --- */
.metrics-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.metric-pill {
    background-color: var(--color-white);
    border-left: 4px solid var(--color-gold);
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 0 12px 12px 0;
    display: flex;
    flex-direction: column;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.metric-pill:hover {
    transform: translateX(5px);
}

/* 4. REPLACED: .metric-pill strong -> .metric-number */
.metric-number {
    font-size: 1.5rem;
    color: var(--color-navy);
    line-height: 1;
    font-weight: 800;
}

/* 5. REPLACED: .metric-pill span -> .metric-label */
.metric-label {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    font-weight: 600;
}

/* --- VISUAL SIDE (RIGHT) --- */
/* --- VISUAL SIDE (RIGHT) --- */
.visual-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    /* Increased slightly for bolder shapes */
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    /* Adds a slight 3D feeling to transforms */
}

/* Base Shape Style */
.shape {
    position: absolute;
    /* A slightly tighter radius makes it look less like a soft circle and more like a deliberate squircle shape */
    border-radius: 24%;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncier transition */
}

.shape-navy {
    width: 400px;
    /* Increased size */
    height: 400px;
    /* Changed flat color to a deep gradient for attractiveness */
    background: linear-gradient(135deg, var(--color-navy) 20%, #2a4d82 100%);
    z-index: 1;
    transform: rotate(-12deg) translateZ(0);
    /* Added subtle inner shadow for depth */
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.shape-gold {
    width: 405px;
    /* Slightly larger than navy for layering */
    height: 405px;
    /* BOLDER border */
    border: 5px solid var(--color-gold);
    /* ATTRACTIVE glow effect */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.1);
    z-index: 2;
    transform: rotate(15deg) translateZ(20px);
}

.doctor-img-geo {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 24%;
    /* Match shape radius */
    z-index: 3;
    /* Deeper, more dramatic shadow */
    box-shadow: 0 35px 70px -20px rgba(11, 36, 71, 0.5);
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(40px);
}

/* --- Hover Effects: Align and Pop --- */
.visual-wrapper:hover .shape-navy {
    transform: rotate(0deg) scale(1.02);
}

.visual-wrapper:hover .shape-gold {
    /* Gold ring moves further out */
    transform: rotate(0deg) scale(1.12);
    /* Glow intensifies */
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.visual-wrapper:hover .doctor-img-geo {
    transform: scale(1.05);
    box-shadow: 0 45px 80px -25px rgba(11, 36, 71, 0.6);
}

/* --- RESPONSIVE UPDATE --- */
@media (max-width: 968px) {
    /* ... keep existing container-2 rules ... */

    .visual-wrapper {
        order: -1;
        height: 420px;
        /* Adjust height for mobile sizes */
    }

    .shape-navy {
        width: 300px;
        height: 300px;
    }

    .shape-gold {
        width: 305px;
        height: 305px;
        border-width: 4px;
        /* Slightly thinner border on mobile */
    }

    .doctor-img-geo {
        width: 280px;
        height: 280px;
    }
}

/*------------------------------------4. Why Choose Us-----------------------------*/

.features-section {
    padding: 8rem 5%;
    background-color: var(--color-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

/* 1. Label Style */
.doc-label {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.15);
    /* Low opacity gold */
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* 2. REPLACED: .section-header h2 -> .features-title */
.features-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gold-accent {
    color: var(--color-gold);
    font-family: 'Playfair Display', serif;
    /* Serif font for "Refined" */
    font-style: italic;
}

/* 3. REPLACED: .section-header p -> .features-desc */
.features-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- GRID & CARDS --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft Shadow */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 36, 71, 0.15);
    /* Deeper shadow on hover */
}

/* Icon Box Animation */
.f-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    background: #F8F9FC;
    /* Light gray-blue bg */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    transition: background 0.3s, color 0.3s;
}

.feature-card:hover .f-icon-box {
    background: var(--color-navy);
    color: #FFFFFF;
}

/* 4. REPLACED: .feature-card h3 -> .features-card-heading */
.features-card-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
    font-weight: 700;
}

/* 5. REPLACED: .feature-card p -> .feature-card-text */
.feature-card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


/*--------------------------------------5. Reviews---------------------------------------------*/

.reviews-section {
    padding: 8rem 5%;
    background: #FFFFFF;
    /* Clean white background */
}

/* --- HEADER AREA --- */
.reviews-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle divider */
    padding-bottom: 2rem;
}

.reviews-header-wrapper {
    max-width: 600px;
}

/* 1. Title Styling */
.reviews-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
    margin-top: 10px;
}

/* --- GOOGLE PILL --- */
.google-pill {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.google-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.google-icon {
    font-size: 1.5rem;
    color: #DB4437;
    /* Google Red */
}

.g-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.g-rating {
    font-size: 1rem;
    color: var(--color-navy);
    font-weight: 800;
}

.g-count {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
}

/* --- GRID & CARDS --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #F8F9FC;
    /* Light Grey-Blue */
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s ease;
}

.review-card:hover {
    background: #FFFFFF;
    box-shadow: 0 20px 50px rgba(11, 36, 71, 0.1);
    transform: translateY(-5px);
}

/* Stars */
.stars {
    margin-bottom: 1.5rem;
}

.review-star-icon {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-right: 2px;
}

/* 2. Body Text Styling */
.review-body-text {
    font-size: 1.05rem;
    color: var(--color-navy);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 80px;
    /* Aligns cards if text varies length */
}

/* --- REVIEWER PROFILE --- */
.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.reviewer-role {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    margin-top: 2px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .reviews-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .reviews-title {
        font-size: 2.5rem;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------6.Services------------------------------------------*/

.service-heading{
    background-color: var(--text-white); 
    text-align: center;
    padding: 10px;
    padding-bottom: 25px;
}

.services-container {
    height: 100vh;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-deep);
    color: #fff !important;
}

/* --- THE PILLAR --- */
.pillar {
    position: relative;
    height: 100%;
    flex: 1;
    /* All start equal */
    transition: flex 0.8s var(--ease-silk);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.pillar:last-child {
    border-right: none;
}

/* Background Image */
.pillar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    /* Dimmed by default */
    transition: opacity 0.8s, transform 0.8s;
    /* filter: grayscale(100%) contrast(1.2);  */


    filter: grayscale(100%) !important;



}

/* Hover State for BG */
.pillar:hover .pillar-bg {
    opacity: 0.8;
    transform: scale(1.05);
    /* Slight zoom */
    filter: grayscale(0%) contrast(1);
    /* Color returns */
}

/* Dark Overlay Gradient */
.pillar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    /* background: linear-gradient(to top, rgba(5, 17, 36, 1), transparent) !important; */
    z-index: 500 !important;
    pointer-events: none;
}

/* --- CONTENT --- */
.pillar-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
    box-sizing: border-box;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.6s var(--ease-silk);
}

/* Number */
.pillar-num {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    width: 50px;
    padding-bottom: 10px;
}

/* Title */
.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin: 0 0 20px 0;
    line-height: 1.1;
    white-space: nowrap;
    /* Prevent breaking when narrow */
}

/* Description (Hidden by default) */
.pillar-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-silk) 0s;
    /* Delay logic */
    height: 0;
    /* Collapse height */
}

/* Button */
.pillar-btn {
    margin-top: 30px;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s 0.1s;
}

/* --- HOVER LOGIC (The Magic) --- */

/* When hovering a pillar, expand it */
.pillar:hover {
    flex: 3;
    /* Grow 3x larger than others */
}

/* When hovering, reveal content */
.pillar:hover .pillar-desc {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-bottom: 20px;
}

.pillar:hover .pillar-btn {
    opacity: 1;
    transform: translateX(0);
}

/* When hovering CONTAINER, dim the NON-hovered pillars */
.services-container:hover .pillar:not(:hover) .pillar-bg {
    opacity: 0.25;
}

.services-container:hover .pillar:not(:hover) .pillar-title {
    opacity: 0.7;
}

/* --- MOBILE --- */
@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
    }

    .pillar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pillar:hover {
        flex: 2;
    }

    /* Less expansion on mobile */
    .pillar-title {
        font-size: 2rem;
    }

    .pillar-bg {
        opacity: 0.6;
        filter: none;
    }

    /* Show images on mobile */
}


/*------------------------7.FAQ------------------------------*/
/*-----------------------7. FAQ------------------------------*/

.faq-section {
    width: 100%;
    /* Max width container is handled by .container div, but we limit text width */
    padding: 8rem 20px;
    background-color: var(--color-bg);
}

/* --- HEADER --- */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 1. REPLACED: h2 -> .faq-title */
.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
    color: var(--color-navy);
    line-height: 1.1;
}

/* 2. REPLACED: .subtitle -> .faq-subtitle (more specific) */
.faq-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- SEARCH --- */
.search-container {
    margin-top: 30px;
    margin-bottom: 70px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 3. REPLACED: .search-input (element style) -> .faq-search-input */
.faq-search-input {
    width: 100%;
    background: #FFFFFF;
    border: none;
    padding: 22px 60px;
    font-size: 1.1rem;
    color: var(--color-navy);
    border-radius: 60px;
    /* Soft shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    font-family: inherit;
    /* Inherit font from body */
}

.faq-search-input:focus {
    outline: none;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    /* Gold glow */
    transform: translateY(-2px);
}

.faq-search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    font-size: 1.2rem;
    pointer-events: none;
    /* Let click pass through to input */
}

/* --- THE LIST --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* The Gold Sidebar (Vertical Accent) */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0px;
    /* Hidden initially */
    background: var(--color-gold);
    transition: width 0.3s ease;
    z-index: 2;
}

/* Active State Styles */
.faq-item.active {
    box-shadow: 0 15px 40px rgba(11, 36, 71, 0.08);
    border-color: transparent;
}

.faq-item.active::before {
    width: 6px;
    /* Show sidebar */
}

/* The Question Bar */
.faq-question {
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.question-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    transition: color 0.3s;
}

.faq-item.active .question-text {
    color: var(--color-gold);
    /* Gold text when active */
}

/* Toggle Icon Wrapper */
.toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 4. REPLACED: .toggle-icon span -> .icon-line */
.icon-line {
    position: absolute;
    background-color: var(--color-navy);
    transition: transform 0.4s ease, background-color 0.3s;
    border-radius: 2px;
}

.icon-h {
    width: 100%;
    height: 2px;
}

.icon-v {
    width: 2px;
    height: 100%;
}

/* Animation for Toggle Icon */
.faq-item.active .icon-v {
    transform: rotate(90deg);
    opacity: 0;
    /* Vertical line disappears */
}

.faq-item.active .icon-h {
    background-color: var(--color-gold);
    transform: rotate(180deg);
}

/* --- THE ANSWER (Reveal Animation) --- */
.faq-answer-wrapper {
    /* CSS Grid Trick for smooth height animation */
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

/* 5. REPLACED: p -> .faq-answer-text */
.faq-answer-text {
    padding: 0 40px 40px 40px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

/* Reveal Text when active */
.faq-item.active .faq-answer-text {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 25px 20px;
    }

    .faq-answer-text {
        padding: 0 20px 30px 20px;
    }
}

/*-----------------------8. Map Section------------------------------*/

.map-section {
    position: relative;
    width: 100%;
    height: 600px;
    /* Fixed height for the section */
    overflow: hidden;
}

/* --- THE MAP (Background) --- */
.map-frame-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: grayscale(100%);
    /* Makes map black & white for elegance */
    transition: filter 0.5s ease;
}

/* Optional: Colorize map on hover */
.map-section:hover .map-frame-wrapper {
    filter: grayscale(0%);
}

.google-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- THE OVERLAY CONTAINER --- */
/* This container ensures the card aligns with the rest of your page content */
.map-overlay-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    /* Vertically center the card */
    pointer-events: none;
    /* Allows clicking through empty space to the map */
}

/* --- FLOATING CONTACT CARD --- */
.contact-card-floating {
    background: #FFFFFF;
    width: 100%;
    max-width: 450px;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    /* Re-enable clicks on the card itself */
    border-left: 5px solid var(--color-gold);
    /* Accent Border */
}

/* Header */
.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 0 0 10px 0;
    line-height: 1;
}

.contact-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Contact List */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Icons */
.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    /* Light Gold BG */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon-gold {
    color: var(--color-gold);
    font-size: 1.1rem;
}

/* Text Info */
.contact-text-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.05rem;
    color: var(--color-navy);
    font-weight: 600;
    line-height: 1.4;
}

.contact-link {
    font-size: 1.05rem;
    color: var(--color-navy);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--color-gold);
}

/* Button */
.btn-map-directions {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-navy);
    color: #FFFFFF;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(11, 36, 71, 0.2);
}

.btn-map-directions:hover {
    background: #1a3a6c;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(11, 36, 71, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .map-section {
        height: auto;
        /* Let content dictate height */
        display: flex;
        flex-direction: column-reverse;
        /* Map goes to bottom */
    }

    .map-frame-wrapper {
        position: relative;
        /* Not absolute anymore */
        height: 300px;
    }

    .map-overlay-container {
        padding: 0;
        /* Remove padding */
    }

    .contact-card-floating {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 3rem 1.5rem;
        border-left: none;
        border-bottom: 5px solid var(--color-gold);
    }
}

/*--------------------------9.Footer----------------------------------*/

/*-----------------------9. Footer------------------------------*/

.site-footer {
    background-color: var(--color-navy);
    padding: 5rem 0 2rem 0;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Col 1 is wider */
    gap: 3rem;
    margin-bottom: 4rem;
}

/* --- COL 1: BRAND --- */
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    color: #FFFFFF;
    line-height: 1;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links-wrapper {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-3px);
}

/* --- HEADINGS & LINKS --- */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link-item {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-link-item:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

/* --- NEWSLETTER --- */
.footer-text-small {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    outline: none;
    transition: 0.3s;
}

.footer-input:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

.btn-footer-submit {
    padding: 12px;
    background: var(--color-gold);
    color: var(--color-navy);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-footer-submit:hover {
    background: #e5bd43;
    transform: translateY(-2px);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-link-item {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.legal-link-item:hover {
    color: var(--color-gold);
}

.divider-dot {
    color: rgba(255, 255, 255, 0.2);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


.google-logo-img {
    width: 90px;
    /* Adjust width as needed */
    height: auto;
    /* Maintain aspect ratio */
    margin-bottom: 20px;
    /* Space between logo and search bar */
    display: block;
    margin-top: 10px;
}

/* Ensure phone screen aligns contents vertically */
.phone-screen {
    /* Existing styles... */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* ... */
}