/*--------------------------------1.Nav---------------------------------------------------*/
header {
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo span {
    color: #D4A373;
    /* Orange Star color */
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-dark);
}

/*--------------------------------2.Hero---------------------------------------------------*/
/*--------------------------------2. HERO SECTION (COMPLETE)--------------------------------*/

/* --- 1. Container & Background --- */
.hero {
    position: relative;
    padding: 17px 0 120px;
    /* Generous top/bottom padding */
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    /* Cream background */
    overflow: hidden;
    /* Contains the blurred glows */
}

/* Background Glow (Yellow - Top Left) */
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 253, 208, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

/* Background Glow (Pink - Right) */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 230, 245, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(90px);
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Image side slightly wider */
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    /* Sits above background glows */
}

/* --- 2. Typography & Trust Signals --- */
.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #121212;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1.5px;
}

/* The Animated Star Icon */
.star-shape {
    color: #E29578;
    font-size: 3.5rem;
    position: relative;
    top: -10px;
    display: inline-block;
    animation: gentle-spin 10s infinite linear;
}

/* Trust Row (Reviews/Stats) */
.trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-star {
    color: #F4B400;
    letter-spacing: -2px;
}

.trust-divider {
    color: #ccc;
}

.trust-item strong {
    color: #121212;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    max-width: 450px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --- 3. Buttons (Primary & Outline) --- */
.hero-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Primary "Get Started" Button */
.btn-primary {
    background-color: #121212;
    color: #ffffff;
    padding: 18px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    /* Slight rounding or 0 for sharp */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
}

/* Secondary "How it Works" Button */
.btn-outline {
    background-color: transparent;
    color: #121212;
    padding: 17px 32px;
    /* 1px less padding to account for border */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #121212;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #121212;
    color: #fff;
    transform: translateY(-2px);
}

/* --- 4. Visual Side (Image & Glass Card) --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* Pushes image to right */
    align-items: center;
}

/* Image Container with Glow/Shadow */
.image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 450px;
    /* Fixed height for consistency */
    border-radius: 20px;
    overflow: hidden;
    /* Soft shadow behind the image */
    box-shadow: 0 20px 50px -10px rgba(226, 149, 120, 0.2);
}

/* The Main Image */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Focus on the face (Top Center) */
    object-position: center 20%;
    transition: transform 0.5s ease;
}

/* Soft Fade Overlay at Bottom */
.image-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    z-index: 1;
    pointer-events: none;
}

/* Floating Glass Card */
.glass-card {
    position: absolute;
    right: 30px;
    bottom: 60px;
    z-index: 10;
    /* On top of image */

    width: 250px;
    background: rgba(255, 255, 255, 0.35);
    /* Transparency */
    backdrop-filter: blur(12px);
    /* Frost Effect */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);

    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    /* Floating Animation */
    animation: floatCard 6s ease-in-out infinite;
}

/* Card Internals */
.glass-card h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.color-swatches {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.swatch {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 6px;
    display: block;
    opacity: 0.8;
}

.swatch:nth-child(1) {
    background: #e0e0e0;
}

.swatch:nth-child(2) {
    background: #dcd0c0;
}

.swatch:nth-child(3) {
    background: #eef2f5;
}

.card-details p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
    margin: 0;
}

.card-details strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 3px;
}

/* --- 5. Animations --- */

/* Text Entrance (Slide Up) */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-delay-1 {
    animation-delay: 0.1s;
}

.reveal-delay-2 {
    animation-delay: 0.3s;
}

.reveal-delay-3 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Star Spin */
@keyframes gentle-spin {
    0% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(25deg) scale(1.1);
    }

    100% {
        transform: rotate(15deg);
    }
}

/* Card Float */
@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --- 6. Responsive Adjustments --- */
@media (max-width: 968px) {
    .hero {
        padding: 120px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .trust-row {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 20px;
    }

    .glass-card {
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
        /* Center horizontally */
        bottom: 20px;
        animation: none;
        /* Disable float on mobile to save battery/jitter */
    }
}

/* --- CLEAN MINIMALIST TRUST ROW --- */

.trust-clean-row {
    display: flex;
    align-items: center;
    gap: 25px;
    /* Space between items */
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.t-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Space between icon and text */
}

/* The Circular Icon Backgrounds */
.t-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    /* Clean white circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Subtle shadow to make it pop off the background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    color: #121212;
}

/* Specific styling for the 'G' logo */
.google-bg {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    background: #fff;
    color: #4285F4;
    /* Google Blue */
}

/* Typography */
.t-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.t-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #121212;
    font-weight: 600;
}

.t-text span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

/* Vertical Divider Lines */
.t-divider {
    width: 1px;
    height: 24px;
    background-color: #e0e0e0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-clean-row {
        gap: 20px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .t-divider {
        display: none;
    }

    /* Hide lines on mobile */

    .t-item {
        background: rgba(255, 255, 255, 0.5);
        /* Slight backing on mobile only */
        padding: 8px 12px;
        border-radius: 8px;
    }
}

/* --- IPHONE 15 PRO MOCKUP (TITANIUM STYLE) --- */

.iphone-pro {
    position: absolute;
    bottom: -40px;
    right: -30px;
    z-index: 20;

    width: 220px;
    height: 420px;
    background: #000;

    /* THE FRAME: Multi-layered shadows for Titanium look */
    border-radius: 45px;
    box-shadow:
        0 0 0 4px #3a3a3a,
        /* Inner Bezel */
        0 0 0 9px #1c1c1c,
        /* Titanium Frame */
        0 0 0 10px #000,
        /* Outer Line */
        0 30px 60px rgba(0, 0, 0, 0.4);
    /* Deep Drop Shadow */

    overflow: hidden;
    font-family: 'Inter', sans-serif;
    animation: floatPremium 6s ease-in-out infinite;
}

/* Screen Container */
.screen {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    /* Space for notch */
}

/* Dynamic Island */
.notch-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

.camera-dot {
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.1);
}

/* App Header (Time/Battery) */
.app-header {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 10px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 20px;
}

/* Google Brand */
.google-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.g-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #EA4335;
}

.g-yellow {
    color: #FBBC05;
}

.g-green {
    color: #34A853;
}

.search-pill {
    width: 90%;
    background: #fff;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-text {
    font-size: 12px;
    color: #333;
    flex-grow: 1;
    margin: 0 10px;
}

.search-icon,
.mic-icon {
    font-size: 12px;
    opacity: 0.5;
}

/* The Map Result Card */
.map-card {
    width: 90%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.map-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.biz-name {
    font-weight: 700;
    font-size: 13px;
    color: #202124;
    margin-bottom: 4px;
}

.verified-badge {
    color: #1a73e8;
    font-size: 10px;
    margin-left: 2px;
}

.biz-rating {
    font-size: 11px;
    color: #70757a;
    margin-bottom: 4px;
}

.stars {
    color: #fbbc04;
}

.biz-meta {
    font-size: 10px;
    color: #70757a;
}

.biz-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.action-row {
    display: flex;
    gap: 8px;
}

.action-btn {
    flex: 1;
    border: 1px solid #dcdcdc;
    border-radius: 16px;
    padding: 6px 0;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: #1a73e8;
    background: #f8f9fa;
}

.action-btn.call {
    color: #1a73e8;
    border-color: #d2e3fc;
    background: #e8f0fe;
}

/* Reflection Overlay */
.screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
    pointer-events: none;
    z-index: 40;
}

@keyframes floatPremium {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* MOBILE FIX (Keep it perfectly centered) */
@media (max-width: 968px) {
    .iphone-pro {
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
        /* Force Center */
        bottom: -250px;
        animation: none;
        /* Disable bounce on mobile */
        width: 180px;
        /* Slightly smaller on phone */
        height: 350px;
    }

    .screen {
        padding-top: 30px;
    }

    .g-logo {
        font-size: 20px;
    }

    .search-text {
        font-size: 10px;
    }
}

@media(max-width:400px)
{
    .hero-text h1{
        font-size: 2.8rem;
    }
}
/*--------------------------------3.Pricing---------------------------------------------------*/
/* --- PREMIUM PRICING SECTION --- */

.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    /* Same cream BG */
    position: relative;
}

/* Header Styling */
.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #121212;
}

.pricing-header p {
    color: #666;
    font-size: 1.05rem;
}

/* Toggle Switch (Visual Only for UI) */
.price-toggle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
}

.toggle-switch {
    width: 40px;
    height: 22px;
    background: #121212;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
}

.toggle-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    cursor: pointer;
}

.toggle-label.active {
    color: #121212;
}

.save-badge {
    background: #d4f7dc;
    color: #2da44e;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* Center aligns cards vertically */
}

/* --- CARD STYLING --- */
.price-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Center "Popular" Card - The Hero of Pricing */
.price-card.popular {
    background: #121212;
    color: #fff;
    border: 1px solid #121212;
    padding: 50px 40px;
    /* Slightly taller */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transform: scale(1.05);
    /* Make it pop */
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pop-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #E29578;
    /* That star color */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Card Content */
.price-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 2px;
}

.period {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

.popular .period {
    color: #888;
}

.card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.popular .card-desc {
    color: #aaa;
}

.card-divider {
    height: 1px;
    background: #eee;
    width: 100%;
    margin-bottom: 25px;
}

.card-divider.dark {
    background: #333;
}

/* Feature Lists */
.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.check {
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #121212;
    font-weight: bold;
}

.check-pop {
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
    font-weight: bold;
}

/* Pricing Buttons */
.btn-price-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border: 1px solid #121212;
    color: #121212;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-price-outline:hover {
    background: #121212;
    color: #fff;
}

.btn-price-solid {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #fff;
    color: #121212;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-price-solid:hover {
    background: #E29578;
    /* Hover accent color */
    color: #fff;
}

/* Footer */
.pricing-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Mobile Pricing */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .price-card.popular:hover {
        transform: translateY(-5px);
    }
}

/*--------------------------------4.Services---------------------------------------------------*/
/* --- SERVICES SECTION (GRADIENT THEME) --- */

/* --- PREMIUM 3x3 GRID with HERO GRADIENT --- */

.services-premium {
    position: relative;
    padding: 100px 0;
    /* Dark BG to make colors pop */
    background-color: #050505;
    overflow: hidden;
}

/* 1. HERO GRADIENT ORBS (Background) */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.25;
    /* Subtle glow */
}

.glow-orb.yellow {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, #F5E6CA 0%, transparent 70%);
}

.glow-orb.pink {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, #fecfef 0%, transparent 70%);
}

/* Header */
.premium-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gradient-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* Gradient Text */
    background: linear-gradient(90deg, #d4a373, #E29578);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px;
}

.premium-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
}

.premium-header p {
    color: #888;
    font-size: 1.1rem;
}

/* 2. THE 3x3 GRID */
.grid-3x3 {
    display: grid;
    /* 3 Equal Columns */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 3. CARD STYLING */
.premium-card {
    background: #121212;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover Effect: Glow */
.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(226, 149, 120, 0.4);
    /* Glow border color */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Image Area */
.card-img {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.premium-card:hover .card-img img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Tag */
.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Info Area */
.card-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.card-info p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* 4. THE GRADIENT LINK BUTTON */
.gradient-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    /* Button Container */
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 30px;
    /* Pill Shape */
    text-decoration: none;
    transition: 0.3s;

    /* The Text Gradient */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #E29578);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow {
    font-size: 1.1rem;
    color: #E29578;
    /* Actual arrow color */
    transform: translateX(0);
    transition: transform 0.3s;
    /* Reset text fill for arrow so it stays colored */
    -webkit-text-fill-color: #E29578;
}

/* Button Hover */
.gradient-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(226, 149, 120, 0.4);
}

.gradient-link:hover .arrow {
    transform: translateX(5px);
}

/* Mobile */
@media (max-width: 968px) {
    .grid-3x3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-card {
        flex-direction: row;
        align-items: center;
        height: 120px;
    }

    .card-img {
        width: 120px;
        height: 100%;
    }

    .card-info {
        padding: 15px;
    }

    .card-info p {
        display: none;
    }

    /* Simplified view on mobile */
    .gradient-link {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

/*--------------------------------5.Reviews---------------------------------------------------*/
/* --- SAFE REVIEWS SECTION (DOES NOT BREAK LAYOUT) --- */

.reviews-premium {
    padding: 120px 0;
    background-color: #FFFDF9;
    /* Cream */
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* NEW: Unique Layout Wrapper */
.reviews-editorial-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    /* Ensures it fills the container */
}

/* LEFT SIDE */
.premium-header-left {
    flex: 1;
    position: sticky;
    top: 120px;
}

.badge-caps {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E29578;
    margin-bottom: 20px;
    display: block;
}

.premium-header-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: #121212;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.big-score {
    font-size: 5rem;
    font-weight: 700;
    color: #121212;
    line-height: 0.8;
}

.rating-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars-gold {
    color: #D4A373;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-meta span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* RIGHT SIDE: GRID */
.editorial-grid {
    flex: 1.5;
    display: flex;
    gap: 30px;
}

.review-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.offset-top {
    margin-top: 80px;
}

/* Creates the uneven look */

/* CARD STYLING */
.editor-card {
    background: #fff;
    padding: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.editor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* Typography */
.quote-mark {
    font-family: serif;
    font-size: 4rem;
    color: #E29578;
    line-height: 0;
    margin-bottom: 30px;
    opacity: 0.5;
}

.review-serif {
    font-family: serif;
    /* Falls back to Times/Georgia */
    font-size: 1.35rem;
    line-height: 1.5;
    color: #121212;
    font-style: italic;
    margin-bottom: 30px;
}

/* Meta */
.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.meta-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #121212;
}

.meta-text span {
    font-size: 0.75rem;
    color: #999;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 968px) {
    .reviews-editorial-layout {
        flex-direction: column;
        /* Stack vertically on mobile */
        gap: 40px;
    }

    .premium-header-left {
        position: static;
        text-align: center;
        width: 100%;
    }

    .premium-header-left h2 {
        font-size: 3rem;
    }

    .rating-block {
        justify-content: center;
    }

    .editorial-grid {
        flex-direction: column;
        width: 100%;
    }

    .offset-top {
        margin-top: 0;
    }
}


/*--------------------------------6.Why choose us---------------------------------------------------*/
/* --- ULTRA PREMIUM WHY US SECTION --- */

.why-us-section {
    padding: 120px 0;
    background-color: #050505;
    /* Deep Luxury Black */
    color: #fff;
    position: relative;
}

/* Layout Wrapper */
.why-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* --- LEFT SIDE (STICKY) --- */
.why-left {
    flex: 0.8;
    /* Takes slightly less space */
    position: sticky;
    top: 150px;
    /* Stays fixed as you scroll */
}

.eyebrow-gradient {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #d4a373, #E29578);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 20px;
}

.why-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.serif-italic {
    font-family: serif;
    /* Times New Roman / Playfair */
    font-style: italic;
    color: #E29578;
    /* Accent Color */
    font-weight: 400;
}

.why-left p {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Stat Box */
.stat-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 20px 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- RIGHT SIDE (SCROLLING LIST) --- */
.why-right {
    flex: 1.2;
    /* Takes more space */
    display: flex;
    flex-direction: column;
}

/* The List Item */
.why-item {
    display: flex;
    gap: 30px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

/* First item border fix */
.why-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.why-item:hover {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.02), transparent);
    padding-left: 20px;
    /* Slight slide interaction */
    border-top-color: #E29578;
    /* Accent border on hover */
}

/* Numbers */
.item-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #444;
    font-weight: 600;
    margin-top: 5px;
}

.why-item:hover .item-num {
    color: #E29578;
}

/* Content */
.item-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.item-content p {
    font-size: 1rem;
    color: #999;
    line-height: 1.7;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 968px) {
    .why-layout {
        flex-direction: column;
        gap: 50px;
    }

    .why-left {
        position: static;
        /* Unstick on mobile */
        width: 100%;
        text-align: left;
    }

    .why-left h2 {
        font-size: 2.8rem;
    }

    .why-right {
        width: 100%;
    }

    .why-item {
        padding: 30px 0;
        flex-direction: column;
        gap: 15px;
    }

    .why-item:hover {
        padding-left: 0;
    }

    /* Disable slide on touch */
}

/*--------------------------------7.Gallery---------------------------------------------------*/
/* --- CREATIVE ACCORDION GALLERY --- */

.gallery-section {
    padding: 100px 0;
    background: #FFFDF9;
    /* Cream Background */
    overflow: hidden;
}

.container-fluid {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #121212;
    display: block;
    margin-bottom: 10px;
}

.gallery-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: #121212;
}

/* --- THE ACCORDION --- */
.gallery-accordion {
    display: flex;
    height: 500px;
    /* Tall cinematic height */
    gap: 10px;
}

/* The Individual Slices */
.g-panel {
    position: relative;
    flex: 1;
    /* Default: All panels equal small width */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smooth eased animation */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* The Image */
.g-panel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  
    /* Start Black & White */
    transition: all 0.7s ease;
    transform: scale(1.1);
    /* Zoomed in slightly */
}

/* Overlay gradient */
.g-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.6;
    transition: 0.5s;
}

/* --- HOVER STATES (The Magic) --- */
.g-panel:hover {
    flex: 4;
    /* Grows 4x wider on hover */
}

.g-panel:hover img {
    filter: grayscale(0%);
    /* Full Color */
    transform: scale(1);
    /* Zoom out to normal */
}

/* --- TEXT CONTENT --- */

/* Vertical Label (Visible when closed) */
.vertical-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    white-space: nowrap;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    z-index: 3;
    transition: opacity 0.3s;
    opacity: 1;
}

/* Hide vertical label on hover */
.g-panel:hover .vertical-label {
    opacity: 0;
}

/* Expanded Info (Hidden by default) */
.panel-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    /* Delayed fade in */
    width: 80%;
}

.panel-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.panel-info p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
}

/* Show info on hover */
.g-panel:hover .panel-info {
    opacity: 1;
    transform: translateY(0);
}

/* Button */
.view-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .gallery-accordion {
        flex-direction: column;
        /* Stack vertically */
        height: auto;
    }

    .g-panel {
        height: 250px;
        /* Fixed height for mobile cards */
        width: 100%;
        margin-bottom: 10px;
        flex: none;
        /* Disable flex scaling */
    }

    /* On mobile, show image in color always */
    .g-panel img {
        filter: grayscale(0%);
        transform: scale(1);
    }

    .vertical-label {
        display: none;
    }

    /* Always show info on mobile */
    .panel-info {
        opacity: 1;
        transform: translateY(0);
        bottom: 20px;
        left: 20px;
    }

    .panel-info h3 {
        font-size: 1.5rem;
    }
}
/* --- BEFORE & AFTER BADGE --- */
.bna-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 5;
    
    /* Luxury Pill Design */
    background: #fff;
    color: #121212;
    padding: 8px 16px;
    border-radius: 30px;
    
    /* Typography */
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Depth & Shadow */
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    
    /* Animation: Slide in from top */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-delay: 0.1s; /* Slight delay after image opens */
}

/* Show Badge on Hover/Active */
.g-panel:hover .bna-badge,
.g-panel.active .bna-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile: Always show it because there is no hover */
@media (max-width: 768px) {
    .bna-badge {
        opacity: 1;
        transform: translateY(0);
        top: 15px; right: 15px;
        padding: 6px 12px;
        font-size: 0.65rem;
    }
}
/* --- GALLERY GRID LAYOUT (User Friendly) --- */

/* 1. The Container: Switches from Flex (Accordion) to Grid */
.gallery-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Cards per row */
    gap: 40px; /* Generous spacing for luxury feel */
    width: 100%;
    height: auto; /* Allow it to grow naturally */
    padding-bottom: 50px;
}

/* 2. The Card: Standard Shape */
.g-panel {
    position: relative;
    width: 100%;
    height: 500px; /* Tall, editorial aspect ratio */
    overflow: hidden;
    /* Soft shadow to lift it off the page */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: transform 0.4s ease;
}

/* Gentle hover effect for the whole card */
.g-panel:hover {
    transform: translateY(-5px); /* Subtle lift */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* 3. The Split Images (Always Perfect 50/50) */
.split-view {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
}

.view-half {
    width: 50%; height: 100%;
    position: relative;
}

.view-half img {
    width: 100%; height: 100%;
    object-fit: cover; /* Ensures faces aren't squashed */
    transition: transform 0.7s ease;
}

/* Slight Zoom on Hover (Just for style) */
.g-panel:hover .view-half img {
    transform: scale(1.05);
}

/* 4. Labels: ALWAYS VISIBLE (No Hover Needed) */
.lbl-corner {
    position: absolute;
    top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 5;
    
    /* Make them visible immediately */
    opacity: 0.9; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.before-side .lbl-corner { left: 20px; color: rgba(255,255,255,0.8); }
.after-side .lbl-corner { right: 20px; color: #E29578; /* Gold */ }

/* 5. Text Info: ALWAYS VISIBLE at bottom */
.panel-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    padding: 30px;
    
    /* Dark Gradient so white text is readable */

    
    /* Always show it */
    opacity: 1;
    transform: translateY(0);
    text-align: left;
}

.panel-info h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.panel-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.view-btn {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E29578;
    border-bottom: 1px solid #E29578;
    padding-bottom: 3px;
}

/* 6. HIDE the old Vertical Label (Doesn't fit grid) */
.vertical-label {
    display: none;
}

/* --- MOBILE RESPONSIVE (1 Column) --- */
@media (max-width: 900px) {
    .gallery-accordion {
        grid-template-columns: 1fr; /* Stack vertically on phone */
        gap: 30px;
    }
    .g-panel {
        height: 400px; /* Slightly shorter on mobile */
    }
}

/*--------------------------------8.Doctor---------------------------------------------------*/
.doctor-photo {
    height: 280px;
    background-color: #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

/*--------------------------------9.FAQ---------------------------------------------------*/
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}


/*--------------------------------10.Contact---------------------------------------------------*/
/* --- LEFT: VISUAL --- */
.doc-visual {
    flex: 1;
    position: relative;
    /* Add some padding so the shadow and badge don't get cut off */
    padding: 20px;
}

.img-frame {
    position: relative;
    width: 100%;
    height: 600px;

    /* --- THE NEW ORGANIC SHAPE --- */
    /* This creates a fluid,非-uniform circle (squircle/blob) */
    border-radius: 54% 46% 70% 30% / 49% 66% 34% 51%;

    overflow: hidden;

    /* Add a soft, luxurious shadow to emphasize the new form */
    box-shadow: 20px 30px 50px rgba(226, 149, 120, 0.15),
        /* Soft orange glow */
        -10px -10px 30px rgba(255, 255, 255, 0.8);
    /* White highlight */

    transition: all 0.5s ease;
}

/* Slight shape morph on hover for extra premium feel */
.doc-visual:hover .img-frame {
    border-radius: 40% 60% 54% 46% / 55% 48% 52% 45%;
    box-shadow: 25px 35px 60px rgba(226, 149, 120, 0.25);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) contrast(1.1) brightness(1.05);
    transition: transform 1.5s ease;
}

/* Ensure image zooms slightly within the blob on hover */
.doc-visual:hover img {
    transform: scale(1.08);
}

/* Adjust Badge Position slightly for the new shape */
.floating-badge {
    position: absolute;
    bottom: 0px;
    left: 0px;
    /* Moved slightly in */
    background: #121212;
    color: #fff;
    padding: 30px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* ========================================= */
/* MEET THE DOCTOR (FULL CODE)          */
/* ========================================= */

.doctor-section {
    padding: 120px 0;
    background-color: #FFFDF9;
    /* Cream Background */
    overflow: visible;
    /* Important for the offset border to show */
    position: relative;
}

/* Flex Container */
.doc-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* --- LEFT: VISUAL (EDITORIAL OFFSET FRAME) --- */
.doc-visual {
    flex: 1;
    position: relative;
    padding: 20px;
    /* Space for the offset border */
    z-index: 1;
}

.img-frame {
    position: relative;
    width: 100%;
    height: 600px;
    /* Tall Portrait */

    /* The Image Box */
    background: #000;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    overflow: visible;
    /* Allows border to sit outside */
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    filter: sepia(10%) contrast(1.1);
}

/* The Gold Offset Border */
.img-frame::before {
    content: '';
    position: absolute;
    /* Shifted Up and Left */
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 1px solid #E29578;
    /* Gold/Pink Accent */
    z-index: -1;
    /* Sits Behind */
    transition: transform 0.5s ease;
}

/* Hover Effects */
.doc-visual:hover .img-frame {
    transform: translate(5px, 5px);
}

.doc-visual:hover .img-frame::before {
    transform: translate(-10px, -10px);
}

/* The Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -40px;
    /* Hanging off the edge */
    background: #121212;
    color: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.8;
}


/* --- RIGHT: CONTENT STYLING --- */
.doc-content {
    flex: 1.2;
    padding-right: 50px;
}

.doc-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E29578;
    display: block;
    margin-bottom: 20px;
}

.doc-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #121212;
    line-height: 1;
    margin-bottom: 10px;
}

.degree {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #888;
    vertical-align: middle;
    margin-left: 10px;
}

.designation {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #121212;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Credentials Pills */
.cred-row {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cred-pill {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
}

/* The Quote */
.doc-quote {
    position: relative;
    padding-left: 30px;
    margin-bottom: 50px;
}

.quote-line {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #E29578;
}

.doc-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
}

/* Footer & Signature */
.doc-footer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #121212;
    transform: rotate(-5deg);
}

.btn-signature {
    padding: 15px 30px;
    background: #121212;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-signature:hover {
    background: #E29578;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 968px) {
    .doc-layout {
        flex-direction: column;
        gap: 50px;
    }

    .doc-content {
        padding-right: 0;
        text-align: center;
    }

    .img-frame {
        height: 450px;
    }

    /* Smaller on mobile */
    .floating-badge {
        right: -10px;
        bottom: 20px;
        width: 100px;
        height: 100px;
    }

    .years {
        font-size: 1.8rem;
    }

    .doc-content h2 {
        font-size: 3rem;
    }

    .cred-row {
        justify-content: center;
    }

    .doc-quote {
        padding-left: 0;
        padding-top: 20px;
    }

    .quote-line {
        width: 40px;
        height: 2px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .doc-footer {
        flex-direction: column;
        gap: 20px;
    }
}

/* --- PREMIUM FAQ SECTION --- */

.faq-section {
    padding: 120px 0;
    background-color: #050505;
    /* Deep Black */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Orb */
.glow-orb.gold {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 149, 120, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

/* Layout */
.faq-layout {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* --- LEFT: STICKY HEADER --- */
.faq-left {
    flex: 0.8;
    position: sticky;
    top: 150px;
}

.eyebrow-gradient {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #d4a373, #E29578);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 20px;
}

.faq-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.faq-left p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
    max-width: 80%;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-faq-contact:hover {
    background: #fff;
    color: #000;
}

/* --- RIGHT: ACCORDION LIST --- */
.faq-list {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* The Clickable Question */
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    
}

.faq-question span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight:bolder;
    color: #000;
    transition: 0.3s;
}

/* Hover/Active State */
.faq-question:hover span,
.faq-item.active .faq-question span {
    color: #E29578;
    /* Gold Accent */
}

/* Custom Plus Icon */
.plus-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s ease;
    color: #EA4335 !important;
}

.plus-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s ease;
    /* This sets the 'theme' color for the icon */
    color: #EA4335 !important; 
}

/* Target the actual lines inside the icon */
.plus-icon .line {
    position: absolute;
    background-color: currentColor; /* This grabs the #EA4335 from above */
}

/* Ensure your lines have thickness to be visible */
.line.v {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.line.h {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}
/* Vertical */

/* Icon Animation when Active */
.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

/* Turns to X */
.faq-item.active .line {
    background: #E29578;
}

/* The Answer (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #E29578;
}

.answer-content {
    padding-bottom: 30px;
    padding-right: 20px;
}

.answer-content p {
    font-size: 1rem;
    color: #999;
    line-height: 1.7;
}

.answer-content strong {
    color: #EA4335;
}

/* Mobile */
@media (max-width: 968px) {
    .faq-layout {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left {
        position: static;
        text-align: left;
        width: 100%;
    }

    .faq-left h2 {
        font-size: 2.8rem;
    }

    .faq-question span {
        font-size: 1.1rem;
    }
}

/* --- PREMIUM CONTACT SECTION --- */

.contact-section {
    padding: 120px 0;
    background-color: #FFFDF9;
    /* Cream Background (Light Mode) */
    position: relative;
}

.contact-layout {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

/* --- LEFT SIDE: INFO --- */
.contact-info {
    flex: 0.8;
}

.eyebrow-accent {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E29578;
    display: block;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    /* Serif for Luxury */
    font-size: 4rem;
    color: #121212;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    color: #121212;
    line-height: 1.5;
    font-weight: 500;
}

/* --- RIGHT SIDE: FORM --- */
.form-wrapper {
    flex: 1;
    background: #fff;
    padding: 60px;
    /* Soft shadow to lift form off the cream background */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    /* Slight radius */
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* The Input Group (Relative for positioning) */
.input-group {
    position: relative;
    width: 100%;
}

/* The Input Fields (No Borders, just bottom line) */
.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #121212;
    border: none;
    border-bottom: 1px solid #ddd;
    /* Light Grey Line */
    background: transparent;
    outline: none;
    transition: 0.3s;
    border-radius: 0;
}

/* Select specifics */
.input-group select {
    color: #555;
    cursor: pointer;
}

/* The Floating Label */
.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    /* Allows clicking through to input */
    transition: 0.3s ease all;
}

/* ANIMATION: When focused or has text */
.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -20px;
    /* Moves up */
    font-size: 0.75rem;
    color: #E29578;
    /* Turns Gold */
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* The Animated Underline */
.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #121212;
    /* Black line fills on focus */
    transition: 0.4s ease;
}

.input-group input:focus~.underline,
.input-group textarea:focus~.underline,
.input-group select:focus~.underline {
    width: 100%;
}

/* Submit Button */
.btn-submit {
    margin-top: 20px;
    padding: 20px 0;
    background: #121212;
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #E29578;
    /* Hover Gold */
    padding-right: 20px;
    /* Slight animation */
}

/* Textarea Resize */
textarea {
    resize: none;
    overflow: hidden;
    min-height: 40px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 968px) {
    .contact-layout {
        flex-direction: column;
        gap: 60px;
    }

    .contact-info {
        width: 100%;
    }

    .contact-info h2 {
        font-size: 3rem;
    }

    .form-wrapper {
        width: 100%;
        padding: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/*--------------------------------11.Footer---------------------------------------------------*/
/* --- MONUMENTAL FOOTER --- */

.footer-section {
    background-color: #050505;
    /* Deep Black */
    color: #fff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Flex Layout for Columns */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.brand-col {
    flex: 1.5;
}

/* First col is wider */
.newsletter-col {
    flex: 1.5;
}

/* Last col is wider */

/* Headings */
.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Address & Mail */
.footer-logo {
    width: 120px;
    margin-bottom: 25px;
    filter: invert(1);
    /* Ensures logo is white */
}

.footer-address {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-mail {
    color: #E29578;
    /* Gold Accent */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-mail:hover {
    color: #fff;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

/* Link Hover: Slide to right */
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Newsletter */
.newsletter-col p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-form {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.footer-form input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    width: 85%;
    font-family: 'Poppins', sans-serif;
}

.footer-form button {
    background: none;
    border: none;
    outline: none;
    color: #E29578;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 10px;
    transition: 0.3s;
}

.footer-form button:hover {
    transform: translateX(5px);
    color: #fff;
}

/* Socials (Minimal Text) */
.social-row {
    display: flex;
    gap: 20px;
}

.social-row a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: 0.3s;
}

.social-row a:hover {
    opacity: 1;
    color: #E29578;
}

/* --- THE BIG TYPOGRAPHY SIGNATURE --- */
.footer-big-text {
    font-family: 'Playfair Display', serif;
    /* or your Logo Font */
    font-size: 14vw;
    /* Massive responsive size */
    font-weight: 700;
    text-align: center;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.03);
    /* Very subtle watermark */
    user-select: none;
    pointer-events: none;
    margin-bottom: -40px;
    /* Pulls bottom bar up slightly */
    letter-spacing: -5px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #555;
    position: relative;
    z-index: 2;
    /* Sits above big text */
}

.legal-links a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #fff;
}

.dot {
    margin: 0 10px;
}

.medical-disclaimer {
    font-style: italic;
    opacity: 0.6;
}


@media (max-width: 968px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 20px;
    }

    .footer-col:last-child {
        border: none;
    }

    .footer-big-text {
        font-size: 20vw;
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/*--------------------------------RESPONSIVE---------------------------------------------------*/
@media (max-width: 968px) {

    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 0 auto 30px auto;
    }

    .hero-image-wrapper {
        justify-content: center;
        margin-top: 40px;
    }

    .nav-links {
        display: none;

    }

    .product-card {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
}


.shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.shape-divider-bottom .shape-fill {
    fill: #FFFDF9;
    transform-origin: bottom center;
}



.layer-1 {
    animation: liquidSwell 1s ease-in-out infinite alternate;
}


.layer-2 {
    animation: liquidSwell 2s ease-in-out infinite alternate-reverse;
}


.layer-3 {
    z-index: 5;
}


@keyframes liquidSwell {
    0% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(1.3);
    }
}

.slant-bottom {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding-bottom: 150px;
}


.grid-bg {
    position: relative;
}

.grid-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;


    background: linear-gradient(to right,
            transparent 0%,
            transparent 33%,
            rgba(0, 0, 0, 0.2) 33%,
            rgba(0, 0, 0, 0.2) 33.1%,
            transparent 33.1%,
            transparent 66%,
            rgba(0, 0, 0, 0.2) 66%,
            rgba(0, 0, 0, 0.2) 66.1%,
            transparent 66.1%,
            transparent 100%);
    pointer-events: none;
    z-index: 0;
}


.marquee-strip {
    background: #E29578;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;

    overflow: hidden;
    position: relative;
    z-index: 5;
    transform: rotate(-1deg);
    margin: -20px 0;
    width: 100%;
}

.marquee-strip .track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 20s linear infinite;
}

.marquee-strip .content {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    padding-right: 40px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}





.aurora-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #E29578 0%, #FFDDD1 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Organic Blob Shape */
    filter: blur(80px);
    /* Heavy Blur */
    opacity: 0.4;
    z-index: 0;
    animation: blobFloat 10s infinite alternate;
}

@keyframes blobFloat {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(-40%, -60%) rotate(90deg) scale(1.2);
    }
}



.contact-section {
    position: relative;
    overflow: hidden;
}



.contact-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wireframe-shape {

    position: absolute;
    top: -10%;
    right: -5%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 10px dashed #E29578;
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
    opacity: 0.5;
    animation: spinDebug 25s linear infinite !important;
}


.wireframe-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 5px dashed #E29578;
    ;
    border-radius: 50%;
    opacity: 0.1;
    /* animation: spinDebug 25s linear infinite; */
}

@keyframes spinDebug {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}
