/*--------------------------------1.Header-------------------------------------------------*/
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}


.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 2000;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s ease-in-out;
    border-radius: 2px;
    margin-right:10px
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    padding: 140px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 10px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 20px;
}

.hero-text i {
    color: var(--accent-gold);
}

.pill {
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}


.hero-visual {
    position: relative;
    height: 550px;
    width: 100%;
}

.img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    background-image: url('Whisk_d7899b9f1fafbb79c124ecefb6c756ebdr.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.img-secondary {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50%;
    height: 50%;
    background-image: url('Whisk_59cd777060975b0a9cb44e52ea6ffc00dr.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 8px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}


.float-ui {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* animation: float 5s ease-in-out infinite; */
    z-index: 3;
    backdrop-filter: blur(5px);
}

.float-1 {
    top: 60px;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 60px;
    left: 0;
    animation-delay: 1.5s;
}
/* Wrapper for Image + Badge */
.avatar-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
    margin-right: 4px; /* Space between image and text */
}

/* The User Image */
.user-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff; /* Crisp white border */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* The Tiny Google Badge */
.google-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;

    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Keep previous float positioning */
.float-review {
    bottom: 140px; 
    right: 200px; 
    animation-delay: 3s;
    padding: 10px 18px 10px 12px; /* Adjusted padding */
}

.review-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: #FBC02D;
    font-size: 0.7rem; /* Slightly smaller to match compact look */
    line-height: 1;
    margin-bottom: 3px;
}

.review-text {
    font-size: 0.75rem;
    color: var(--text-dark); /* Darker text for readability */
    font-weight: 500;
    white-space: nowrap;
}
/* Wrapper for Image + Badge */
.avatar-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
    margin-right: 8px; /* Added a little more space */
}

/* The User Image */
.user-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* The Tiny Google Badge Container */
.google-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    z-index: 10;
}

/* The Actual Google G Image */
.google-badge img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

/* Float Positioning */
.float-review {
    bottom: 140px; 
    right: 120px; 
    animation-delay: 3s;
    padding: 10px 18px 10px 12px; 
}

.review-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: #FBC02D;
    font-size: 0.7rem; 
    line-height: 1;
    margin-bottom: 3px;
}

.review-text {
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
}
/* 3. The Google Badge - EMBEDDED VERSION */
.google-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    
    width: 20px;
    height: 20px;

    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 10;
    
    /* This long code IS the image. It cannot fail to load. */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23EA4335' d='M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z'/%3E%3Cpath fill='%234285F4' d='M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z'/%3E%3Cpath fill='%23FBBC05' d='M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z'/%3E%3Cpath fill='%2334A853' d='M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z'/%3E%3C/svg%3E");
    
    background-size: 12px; /* Adjusts the size of the G inside the white circle */
    background-position: center;
    background-repeat: no-repeat;
}
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


@media (max-width: 960px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        transform: translateX(100%);
        opacity: 0;
        transition: 0.4s ease-in-out;
        z-index: 1500;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        height: 450px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .img-main {
        width: 85%;
        height: 80%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 30px;
    }

    .img-secondary {
        width: 45%;
        height: 45%;
        right: -10px;
        bottom: 20px;
        border-width: 6px;
    }

    .float-ui {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .float-1 {
        top: 20px;
        right: 0;
    }

    .float-2 {
        bottom: 50px;
        left: 0;
    }
    .float-review{
       bottom: -280px;
    }
}

.trust-bar-section {
    width: 100%;
    padding: 0 1.5rem;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.trust-bar-container {
    max-width: 1100px;
    margin: 0 auto;


    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    border-radius: 16px;
    padding: 1.5rem 2rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}


.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 200px;
    justify-content: center;


}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text span.label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.trust-text span.sub {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-light);
}


/*--------------------------------3.Pricing------------------------------------------------*/
    .pricing-section {
        width: 100%;
        max-width: 1280px;
        padding: 5rem 2rem;
        margin: 0 auto;
        position: relative;
    }

    /* Ambient Background Blobs for Depth */
    .bg-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: -1;
        opacity: 0.5;
    }
    .bg-shape-1 { top: -10%; left: -10%; width: 400px; height: 400px; background: #eee4d6; }
    .bg-shape-2 { bottom: -10%; right: -5%; width: 500px; height: 500px; background: #e0f0e9; }


    .pricing-header {
        text-align: center;
        margin-bottom: 4rem;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-header h2 {
        font-size: 2.75rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--text-dark);
        letter-spacing: -0.5px;
        line-height: 1.2;
    }

    .pricing-header p {
        color: var(--text-medium);
        font-size: 1.1rem;
        font-weight: 400;
    }

    /* --- 4. GRID LAYOUT --- */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* --- 5. REFINED CARD STYLES --- */
    .plan-card {
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur));
        -webkit-backdrop-filter: blur(var(--blur));
        border: 1px solid var(--glass-border);
        border-radius: 24px; /* Smoother corners */
        padding: 2.5rem;
        box-shadow: var(--glass-shadow);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 35px 70px -15px rgba(44, 30, 22, 0.15);
        border-color: var(--white);
    }

    /* Featured/Best Value Card */
    .plan-card.featured {
        background: rgba(255, 255, 255, 0.7); /* Brighter */
        border: 2px solid var(--accent-gold);
        transform: scale(1.08);
        z-index: 2;
        padding: 3rem 2.5rem; /* Slightly more padding */
    }
    
    .plan-card.featured:hover {
        transform: scale(1.08) translateY(-10px);
    }

    .badge {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        background:var(--text-dark);
        color:#fff;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    /* --- 6. CONTENT STYLING --- */
    .plan-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .plan-desc {
        font-size: 0.95rem;
        color: var(--text-medium);
        margin-bottom: 2rem;
        min-height: 3rem;
    }

    .plan-price {
        font-size: 3rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 2rem;
        display: flex;
        align-items: flex-start; /* Better alignment for currency symbol */
        line-height: 1;
    }

    .plan-price .currency {
        font-size: 1.75rem;
        margin-right: 4px;
        font-weight: 600;
        margin-top: 6px; /* Optical alignment */
    }

    .plan-price span {
        font-size: 0.95rem;
        color: var(--text-light);
        margin-left: 8px;
        font-weight: 500;
        align-self: flex-end;
        margin-bottom: 6px;
    }

    .features-list {
        list-style: none;
        margin-bottom: 2.5rem;
        flex-grow: 1;
    }

    .features-list li {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-size: 0.95rem;
        font-weight: 500;
    }

    /* Improved check icon - cleaner SVG */
    .check-icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        fill: var(--accent-gold);
        flex-shrink: 0;
        filter: drop-shadow(0 2px 4px rgba(196, 169, 139, 0.3));
    }

    /* --- 7. BUTTONS & INTERACTIONS --- */
    .btn {
        display: inline-block;
        width: 100%;
        padding: 1.1rem;
        text-align: center;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 1rem;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }

    .btn-outline {
        background: transparent;
        border: 2px solid var(--text-dark); /* Thicker border */
        color: var(--text-dark);
    }

    .btn-outline:hover {
        background: var(--text-dark);
        color: #fff;
        transform: translateY(-2px);
    }

    .btn-filled {
        background: var(--text-dark);
        color:#fff;
        border: 2px solid var(--text-dark);
        box-shadow: 0 10px 25px -5px rgba(44, 30, 22, 0.3);
    }

    /* Subtle shine animation on hover for featured button */
    .btn-filled::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
        transform: rotate(45deg) translate(-100%, -100%);
        transition: transform 0.6s ease;
    }

    .btn-filled:hover::after {
         transform: rotate(45deg) translate(0%, 0%);
    }

    .btn-filled:hover {
        background: var(--accent-gold);
        border-color: var(--accent-gold);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px -5px rgba(196, 169, 139, 0.4);
    }

    /* Mobile Responsiveness */
    @media (max-width: 1024px) {
        .pricing-grid {
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
             gap: 1.5rem;
        }
        .plan-card.featured {
            transform: scale(1.03);
        }
        .plan-card.featured:hover {
            transform: scale(1.03) translateY(-10px);
        }
    }

    @media (max-width: 768px) {
        .pricing-header h2 { font-size: 2.25rem; }
        .plan-card.featured {
            transform: scale(1);
            order: -1; /* Put featured first on mobile */
            margin-bottom: 1rem;
        }
        .plan-card.featured:hover { transform: translateY(-8px); }
        .plan-card { padding: 2rem; }
    }
/*--------------------------------4.Services------------------------------------------------*/
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        /* Improved Card Design */
        .card {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur));
            -webkit-backdrop-filter: blur(var(--blur));
            border: 1px solid var(--glass-border);
            border-radius: 28px;
            padding: 50px 40px;
            box-shadow: var(--glass-shadow);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        /* Subtle Glow on Hover */
        .card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at top right, rgba(196, 169, 139, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.6);
            border-color: var(--accent-gold);
            box-shadow: 0 30px 60px rgba(44, 30, 22, 0.1);
        }

        .card:hover::after {
            opacity: 1;
        }

        /* Modern Icon Circle */
        .icon-wrapper {
            width: 70px;
            height: 70px;
            background: var(--btn-bg);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 30px;
            transition: transform 0.5s ease;
        }

        .card:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            background: #fff;
        }

        .card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
        }

        .card p {
            font-size: 1rem;
            color: var(--text-light);
            position: relative;
            z-index: 1;
        }

        /* Responsive Fixes */
        @media (max-width: 768px) {
            body { padding: 60px 20px; }
            .header h1 { font-size: 2.2rem; }
            .card { padding: 40px 30px; }
        }
/*--------------------------------5.Reviews-------------------------------------------------*/
    .reviews-section {
        max-width: 1200px;
        width: 90%;
        margin: 4rem auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .section-header p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

    /* Aggregate Rating Badge */
    .google-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        margin-top: 1rem;
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* Grid Layout */
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    /* The Glass Card */
    .review-card {
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur));
        -webkit-backdrop-filter: blur(var(--blur));
        border: 1px solid var(--glass-border);
        box-shadow: var(--glass-shadow);
        border-radius: 1.5rem;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px -10px rgba(44, 30, 22, 0.12);
        border-color: #fff;
    }

    /* Card Header */
    .card-top {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .user-initial {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--btn-bg);
        color: var(--text-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-weight: bold;
        font-size: 1.2rem;
    }

    .user-info h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
    }

    .post-date {
        font-size: 0.8rem;
        color: var(--text-light);
        opacity: 0.8;
    }

    /* Stars */
    .stars {
        color: var(--accent-gold);
        margin-bottom: 1rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    /* Review Text */
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-light);
        flex-grow: 1 !important;
        margin-bottom: 1.5rem;
    }
    /* 1. THE PARENT (The Card) */
.review-card {
    /* Critical for flex-grow to work: */
    display: flex;
    flex-direction: column; 
    
    /* Ensure the card has height to fill (optional but recommended for grids) */
    height: 100%; 

    box-sizing: border-box; /* Ensures padding doesn't expand width */
    padding: 2rem;          /* Keeps text away from edges */
}

/* 2. THE CHILD (The Text) */
.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    
    /* This tells the text to eat up all available empty space */
    flex-grow: 1; 
    
    margin-bottom: 1.5rem;
    overflow-wrap: break-word; 
    word-break: break-word;   
    
    /* 2. Ensure it respects the container width */
    max-width: 100%;
}

/* 1. THE PARENT (The Review Card) */
.review-card {
    display: flex;
    flex-direction: column;
    /* ... other styles ... */
    
    /* CRITICAL: This allows the card to shrink properly */
    min-width: 0; 
    width: 100%; /* Ensures it fills the grid column */
}

/* 2. THE TEXT */
.review-text {
    /* ... other styles ... */
    
    /* CRITICAL: Force breaks even if there are no spaces */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word; 
    
    /* CRITICAL: Override any inheritance preventing breaks */
    white-space: normal; 
    
    /* CRITICAL: Prevents flex rendering bugs */
    min-width: 0;
    width: 100%;
}
    /* Google Logo Tiny */
    .google-icon-tiny {
        width: 18px;
        height: 18px;
    }

    /* Call to Action */
    .cta-container {
        text-align: center;
        margin-top: 3rem;
    }

    .btn-review {
        background: var(--btn-bg);
        color: var(--text-dark);
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid var(--glass-border);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-review:hover {
        background: white;
        transform: scale(1.02);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .section-header h2 { font-size: 2rem; }
        .reviews-grid { grid-template-columns: 1fr; }
    }
/*--------------------------------6.Why Choose Us------------------------------------------------*/
        .wcu-section {
            /* Inherits body background, but we can make it transparent to see the body gradient */
            padding: 5rem 1.5rem;
            position: relative;
            overflow: hidden;
            flex-grow: 1; /* Ensures it takes up space */
            display: flex;
            align-items: center;
        }

        /* Decorative Background Blobs */
        .wcu-section::before, .wcu-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: var(--accent-gold);
            opacity: 0.15;
            filter: blur(80px);
            z-index: 0;
            pointer-events: none;
        }
        .wcu-section::before { top: -150px; left: -150px; }
        .wcu-section::after { bottom: -150px; right: -150px; }

        .wcu-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        /* Header Styles */
        .wcu-header {
            text-align: center;
            margin-bottom: 3.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .wcu-title {
            font-family: var(--font-serif);
            font-size: 2.75rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .wcu-subtitle {
            font-family: var(--font-sans);
            color: var(--text-light);
            font-size: 1.125rem;
            line-height: 1.6;
        }

        /* Grid Layout */
        .wcu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        /* Card Styles */
        .wcu-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            backdrop-filter: blur(var(--blur));
            -webkit-backdrop-filter: blur(var(--blur));
            
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .wcu-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -10px rgba(196, 169, 139, 0.25);
            border-color: #fff;
            background: rgba(255, 255, 255, 0.65);
        }

        /* Icons */
        .icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            border: 1px solid rgba(255,255,255,0.8);
        }

        .icon-wrapper svg {
            width: 32px;
            height: 32px;
        }

        /* Card Typography */
        .wcu-card h3 {
            font-family: var(--font-serif);
            color: var(--text-dark);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .wcu-card p {
            font-family: var(--font-sans);
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Button Styles */
        .wcu-cta {
            text-align: center;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--btn-bg);
            color: var(--text-dark);
            font-family: var(--font-sans);
            font-weight: 600;
            padding: 1rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--glass-border);
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            font-size: 1.05rem;
        }

        .btn-primary:hover {
            background-color: #fff;
            transform: scale(1.02);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            color: #000;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .wcu-title {
                font-size: 2rem;
            }
            .wcu-section {
                padding: 3rem 1.5rem;
            }
            .wcu-grid {
                grid-template-columns: 1fr; /* Stack cards on mobile */
            }
        }
/*--------------------------------7.Gallery------------------------------------------------*/
    .gallery-section {
        padding: 6rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Header Styling */
    .gallery-header {
        text-align: center;
        margin-bottom: 4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-header h2 {
        font-family: var(--font-serif);
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        letter-spacing: -0.02em;
    }

    .gallery-header p {
        font-size: 1.125rem;
        color: var(--text-light);
        line-height: 1.6;
    }

    /* The Masonry-style Grid */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    /* --- 1. PHOTO CARD COMPONENT --- */
    .gallery-item {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        aspect-ratio: 4/5;
        box-shadow: var(--glass-shadow);
        cursor: pointer;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .gallery-item:hover {
        transform: translateY(-8px);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    /* Glass Caption Overlay */
    .glass-caption {
        position: absolute;
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur));
        -webkit-backdrop-filter: blur(var(--blur));
        border: 1px solid var(--glass-border);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
        
        padding: 1.25rem;
        border-radius: 16px;
        transform: translateY(10px);
        opacity: 1;
        transition: all 0.4s ease;
    }

    .gallery-item:hover .glass-caption {
        opacity: 1;
        transform: translateY(0);
    }

    .glass-caption h3 {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
        color: var(--text-dark);
    }

    .glass-caption span {
        font-size: 0.75rem;
        color: var(--text-dark);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
        opacity: 0.7;
    }

    /* --- 2. SUCCESS STORY CARD COMPONENT --- */
    .story-card {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        aspect-ratio: 4/5;
        box-shadow: var(--glass-shadow);
        transition: transform 0.4s ease;
        background-size: cover;
        background-position: center;
    }

    .story-card:hover {
        transform: translateY(-8px);
    }

    /* Full Glass Overlay for Stories */
    .story-glass {
        position: absolute;
        inset: 0;
        
        /* Stronger glass for readability */
        background: rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(12px); 
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .quote-icon {
        font-family: var(--font-serif);
        font-size: 4rem;
        line-height: 1;
        color: var(--accent-gold);
        margin-bottom: 0.5rem;
        opacity: 0.8;
    }

    .story-text {
        font-family: var(--font-serif);
        font-size: 1.35rem;
        color: var(--text-dark);
        line-height: 1.4;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .parent-name {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    
    .rating {
        color: #dcb368; /* Deep Gold */
        margin-top: 0.75rem;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    /* Decorative Plus Sign */
    .decorative-blob {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--accent-gold);
        border-radius: 50%;
        opacity: 0.9;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 300;
        box-shadow: 0 4px 12px rgba(196, 169, 139, 0.4);
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .gallery-header h2 { font-size: 2.2rem; }
        
        /* Always show captions on mobile */
        .glass-caption {
            opacity: 1;
            transform: translateY(0);
            bottom: 0; left: 0; right: 0;
            border-radius: 0;
            border: none;
            background: rgba(255, 255, 255, 0.85); /* Solid-ish background for mobile legibility */
        }
        
        .gallery-item, .story-card {
            border-radius: 16px;
        }
    }
/*--------------------------------8.Doctor-------------------------------------------------*/
        .doctor-section {
            background: var(--bg-gradient);
            padding: 100px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .doctor-icon{
             font-weight: 700;
            color: var(--text-dark);
            font-size: 1.25rem;
        }

        .doctor-container {
            max-width: 1100px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* --- Decorative Background Blur --- */
        .decor-circle {
            position: absolute;
            top: 10%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: var(--primary);
            opacity: 0.08;
            border-radius: 50%;
            z-index: 1;
            filter: blur(80px);
        }

        .decor-circle-2 {
            position: absolute;
            bottom: 10%;
            right: -5%;
            width: 300px;
            height: 300px;
            background: var(--accent-gold);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 1;
            filter: blur(60px);
        }

        /* --- Grid System --- */
        .doctor-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            align-items: center;
        }

        /* --- Image Wrapper --- */
        .doctor-image-wrapper {
            position: relative;
            z-index: 2;
            border-radius: 20px;
            /* Elevation shadow */
            box-shadow: 0 25px 50px -12px rgba(44, 30, 22, 0.25); 
        }

        .doctor-img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        /* Experience Badge */
        .experience-badge {
            position: absolute;
            bottom: 40px;
            left: -30px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 20px 30px;
            border-radius: 16px;
            box-shadow: var(--glass-shadow);
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .experience-badge .years {
            font-family: var(--font-main);
            font-size: 2.5rem;
            color: var(--primary);
            font-weight: 700;
            line-height: 1;
        }

        .experience-badge .label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            color: var(--text-light);
            margin-top: 5px;
            font-weight: 600;
        }

        /* --- Glass Content Card --- */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur));
            -webkit-backdrop-filter: blur(var(--blur));
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 60px;
            box-shadow: var(--glass-shadow);
            /* KEY: Overlapping Effect */
            margin-left: 100px; 
            position: relative;
            z-index: 3;
            margin-top: 0;
            margin-bottom: 100px;
        }

        .section-tag {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 12px;
            display: block;
        }

        .doctor-name {
            font-size: 3rem;
            color: var(--text-dark);
            margin: 0;
            font-weight: 700;
            line-height: 1.1;
        }

        .doctor-title {
            color: var(--accent-gold);
            font-size: 1.1rem;
            font-weight: 500;
            margin: 8px 0 25px 0;
            display: block;
        }

        .doctor-bio {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 35px;
            padding-right: 20px;
        }

        /* Credentials */
        .credentials-grid {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            border-top: 1px solid rgba(196, 169, 139, 0.2);
            padding-top: 25px;
        }

        .credential-item {
            display: flex;
            flex-direction: column;
        }

        .credential-item .icon {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.25rem;
        }

        .credential-item .desc {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 4px;
        }

        /* Signature Area */
        .signature-area {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .sign-text {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .signature {
            font-family: var(--font-signature);
            font-size: 2.2rem;
            color: var(--primary);
            transform: rotate(-3deg); /* Slight natural tilt */
            display: inline-block;
            margin-top: 5px;
        }

        /* --- Responsive Design --- */
        @media (max-width: 968px) {
            .doctor-section {
                padding: 60px 20px;
                height: auto;
            }

            .doctor-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .doctor-image-wrapper {
                width: 100%;
                margin-bottom: -50px; /* Pull image down behind card */
            }

            .doctor-img {
                height: 400px;
            }
            
            .glass-card {
                margin-left: 0;
                padding: 40px 30px;
                margin-top: 0;
            }

            .experience-badge {
                left: 20px;
                bottom: 80px;
                padding: 15px 20px;
            }
            
            .experience-badge .years {
                font-size: 1.8rem;
            }

            .doctor-name {
                font-size: 2.2rem;
            }
            
            .credentials-grid {
                flex-wrap: wrap;
                gap: 25px;
            }
        }
/*--------------------------------9.FAQ------------------------------------------------*/
    .faq-section {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .faq-header h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .faq-header p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

    /* 4. INDIVIDUAL FAQ ITEM (Glass Card) */
    .faq-item {
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur));
        -webkit-backdrop-filter: blur(var(--blur));
        border: 1px solid var(--glass-border);
        box-shadow: var(--glass-shadow);
        border-radius: var(--radius);
        margin-bottom: 1rem;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px -5px rgba(44, 30, 22, 0.08);
    }

    /* 5. QUESTION (Trigger) */
    .faq-question {
        width: 100%;
        padding: 1.5rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
        font-family: var(--font-sans);
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-dark);
        outline: none;
    }

    /* The Plus/Minus Icon */
    .icon {
        position: relative;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        margin-left: 15px;
    }

    .icon::before, .icon::after {
        content: '';
        position: absolute;
        background-color: var(--accent-gold);
        border-radius: 2px;
        transition: transform 0.3s ease;
    }

    .icon::before { top: 6px; left: 0; width: 100%; height: 2px; } /* Horizontal */
    .icon::after { top: 0; left: 6px; width: 2px; height: 100%; } /* Vertical */

    /* 6. ANSWER (Hidden by default) */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
        background: rgba(255,255,255, 0.3); /* Subtle lightness for contrast */
    }

    .faq-answer-content {
        padding: 0 2rem 1.5rem 2rem;
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* 7. ACTIVE STATE */
    .faq-item.active .icon::after {
        transform: rotate(90deg); /* Turns plus into minus effectively */
        opacity: 0; /* Or just hide the vertical line */
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px; /* Arbitrary large height for animation */
        transition: max-height 0.4s ease-in-out;
    }

    /* Mobile tweak */
    @media (max-width: 600px) {
        .faq-header h2 { font-size: 2rem; }
        .faq-question { padding: 1.2rem; }
        .faq-answer-content { padding: 0 1.2rem 1.2rem 1.2rem; }
    }
/*--------------------------------10.Contact-------------------------------------------------*/
        .contact-section {
            background: var(--bg-gradient);
            min-height: 100vh;
            padding: 4rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-container {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        @media(max-width:900px)
        {
              .contact-container {
         
            grid-template-columns:1fr;
         
        }
        }

        /* --- Glass Card (Form) --- */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur));
            -webkit-backdrop-filter: blur(var(--blur));
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--glass-shadow);
            margin-top: 100px;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* --- Form Elements --- */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        input, textarea, select {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(196, 169, 139, 0.3); /* Soft accent border */
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.6);
            font-family: var(--font-sans);
            font-size: 1rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            background: #fff;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 4px rgba(196, 169, 139, 0.1);
        }

        /* --- Button --- */
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--text-dark);
            color: #fff;
            font-family: var(--font-sans);
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.3s ease;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            background-color: var(--text-light);
            transform: translateY(-2px);
        }

        /* --- Map & Info Area --- */
        .info-container {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: center;
        }

        .info-block {
            margin-bottom: 2rem;
        }

        .info-block h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .info-block p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .map-wrapper {
            width: 100%;
            height: 400px;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
        }

        iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- Responsive Design --- */
        @media (max-width: 900px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .contact-section {
                padding: 2rem 1rem;
            }

            .glass-card {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }
/*--------------------------------11.Footer-------------------------------------------------*/
    .glass-footer {
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur));
        -webkit-backdrop-filter: blur(var(--blur));
        border-top: 1px solid var(--glass-border);
        box-shadow: var(--glass-shadow);
        padding: 4rem 2rem 2rem;
        color: var(--text-dark);
        position: relative;
        overflow: hidden;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }

    /* Column 1: Brand & Intro */
    .footer-brand h2 {
        font-family: var(--font-serif);
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .footer-brand p {
        color: var(--text-light);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Column 2: Quick Links */
    .footer-links h3, .footer-contact h3 {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        position: relative;
        display: inline-block;
    }

    /* subtle underline decoration */
    .footer-links h3::after, .footer-contact h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 30px;
        height: 2px;
        background-color: var(--accent-gold);
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        text-decoration: none;
        color: var(--text-light);
        transition: color 0.3s ease, transform 0.2s ease;
        display: inline-block;
    }

    .footer-links a:hover {
        color: var(--text-dark);
        transform: translateX(5px); /* Gentle slide effect */
    }

    /* Column 3: Contact (Address) */
    .footer-contact address {
        font-style: normal;
        color: var(--text-light);
        line-height: 1.8;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
        gap: 10px;
    }

    .contact-icon {
        color: var(--accent-gold);
        font-size: 1.1rem;
        margin-top: 2px;
    }

    /* Bottom Bar */
    .footer-bottom {
        max-width: 1200px;
        margin: 3rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(196, 169, 139, 0.2); /* Low opacity gold */
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }



.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: red;
    color: #ffffff; /* Pure White */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem; /* Ensures the icon is large enough to see */
}

/* Force the icon inside to use the parent's white color */
.social-links a i, 
.social-links a svg {
    color: inherit; 
    fill: currentColor;
}

.social-links a:hover {
    background: #cc0000; /* Darker red on hover */
    transform: translateY(-3px);
}

/* --- FIXED SOCIAL ICONS (No longer Red) --- */
.social-links a { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    
    /* CHANGED: Use theme color instead of red */
    background: var(--text-dark); 
    
    color: #ffffff !important; /* Force White Icon */
    text-decoration: none; 
    transition: all 0.3s ease; 
}

.social-links a i, 
.social-links a svg {
    color: inherit; 
    font-size: 1.2rem;
}

.social-links a:hover { 
    background: var(--accent-gold); /* Turns Gold on Hover */
    transform: translateY(-3px); 
}