/* --- ModernSmiles Design System --- */
:root {
    /* Colors */
    --primary-color: #2563EB;
    /* Royal Blue */
    --primary-hover: #1D4ED8;
    --secondary-color: #9D7AD2;
    /* Soft Purple */
    --accent-bg: #F9F9F9;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;

    /* Decoration */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-accent: 0 4px 15px rgba(37, 99, 235, 0.3);

    /* Shapes - Round & Soft */
    --radius-full: 50px;
    /* Pill buttons */
    --radius-card: 24px;
    --radius-input: 15px;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Glassmorphism Utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: manipulation;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* iOS momentum scrolling */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 0;
    /* Removed padding to allow header to overlay hero */
}

/* Ensure buttons and inputs inherit font */
button,
input,
select,
textarea {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Blur Wrapper */
.site-content {
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: filter;
}

.site-content.blurred {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-card);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: rgba(37, 99, 235, 0.85);
    /* High opacity blue glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    box-shadow:
        0 4px 15px rgba(37, 99, 235, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    /* Inner shine */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: rgba(37, 99, 235, 0.95);
    /* More solid on hover */
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(37, 99, 235, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    /* Glowing border */
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #E2E8F0;
    color: var(--text-dark);
    /* Default dark text */
}

.btn-secondary:hover {
    background: var(--white);
    border-color: #CBD5E0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}


/* Contact Button - Pill Shape - Glassified */
.btn-submit {
    width: 100%;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    background: rgba(37, 99, 235, 0.85);
    /* Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    box-shadow:
        0 4px 15px rgba(37, 99, 235, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    margin-top: 15px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit:hover {
    background: rgba(37, 99, 235, 0.95);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(37, 99, 235, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

/* --- New Site Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    height: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Brand */
/* Brand */
.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    /* Single color per request */
    letter-spacing: -0.5px;
    line-height: 1;
    margin: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    /* Space between icon and text */
}

/* Updated Icon Style if needed specifically */
.brand-logo i {
    font-size: 1.6rem;
}



/* Desktop Nav */
.desktop-nav {
    display: none;
    /* Mobile first */
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .nav-list {
        display: flex;
        gap: 40px;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-item {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-dark);
        transition: color 0.3s ease;
        position: relative;
        text-decoration: none;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .nav-item:hover {
        color: var(--primary-color);
    }

    .nav-item:hover::after {
        width: 100%;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-header {
    display: none;
}

@media (min-width: 992px) {
    .btn-header {
        display: inline-flex;
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 2001;
    /* Higher than overlay to remain clickable if overlay is partial */
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle .bar {
    width: 28px;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    /* Bouncy transition */
    transform-origin: center;
}

/* Hamburger Active Animation */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background-color: var(--primary-color);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: var(--primary-color);
}

/* Mobile Menu Drawer (Floating Card Style) */
.mobile-menu-overlay {
    position: fixed;
    top: 15px;
    right: 15px;
    left: auto;
    width: 280px;
    /* Fixed compact width */
    height: auto;
    /* Shrink to fit content */
    max-height: calc(100vh - 30px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateX(120%) scale(0.95);
    /* Start further out and slightly small */
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Spring-like pop */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    /* Deep shadow for floating effect */
    border-radius: 24px;
    /* Card shape */
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.mobile-menu-inner {
    text-align: left;
    width: 100%;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align flex items */
}

.mobile-close {
    display: block;
    /* Show the button again */
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
    z-index: 2002;
    padding: 5px;
    transition: transform 0.3s ease;
}

.mobile-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    padding: 5px 0;
    opacity: 0.8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    letter-spacing: 0.5px;
    transform: translateX(10px);
    opacity: 1;
    border-color: rgba(37, 99, 235, 0.2);
}

.mobile-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

/* --- Hero Section --- */
.hero {
    background: radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 20% 90%, rgba(157, 122, 210, 0.04) 0%, transparent 40%);
    background-color: #FAFAFA;
    padding: 160px 0 0;
    /* Increased padding to clear header (120px -> 160px) */
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    /* Expand max-width for split layout */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    text-align: left;
    /* Explicit left align */
}

.hero-text-wrapper {
    max-width: 600px;
    z-index: 2;
    /* Ensure text is above blobs if they overlap */
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    perspective: 1000px;
}

/* Decorative Morphing Blob */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(157, 122, 210, 0.15) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    animation: morph 8s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Second Decorative Blob for Depth */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(157, 122, 210, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -2;
    animation: morph 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

.hero-img {
    width: 100%;
    height: 500px;
    /* Slightly taller for grandeur */
    object-fit: cover;
    border-radius: 40px;
    /* Softer, more modern radius */
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 10px rgba(255, 255, 255, 0.3);
    /* Glass-like border ring */
    animation: float 6s ease-in-out infinite;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

.hero-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 12px rgba(255, 255, 255, 0.4);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Left align buttons */
    margin-top: 30px;
}

/* Hero Award Badge */
.hero-award {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: #1D4ED8;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    letter-spacing: 0.2px;
}

.hero-award i {
    font-size: 0.9rem;
    color: #2563EB;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1A202C;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero p {
    font-size: 1rem;
    /* Smaller as requested */
    color: var(--text-light);
    /* Ensure good contrast */
    margin-bottom: 30px;
    max-width: 500px;
    /* Tighter width for readability */
    line-height: 1.6;
}

/* --- Trust Bar --- */
/* --- Trust Bar (Marquee) --- */
/* --- Trust Bar (Marquee Carousel) --- */
.info-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 0;
    margin: 150px 0 0 0;
    /* Increased to 150px per user request "lower" */
    /* Flush with bottom */
    width: 100%;
    max-width: none;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
    z-index: 10;
}

.info-content {
    display: flex;
    flex-direction: row;
    /* Explicitly horizontal */
    flex-wrap: nowrap;
    /* Prevent wrapping (list view) */
    width: max-content;
    /* Ensure enough width for all items */
    animation: scroll 40s linear infinite;
    /* Slow loop */
}

/* Animation: Left to Right */
@keyframes scroll {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.trust-item {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    /* Prevent wrapping */
    padding: 0 40px;
    /* Spacing between items */
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover i {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1) rotate(5deg);
}

/* --- Services --- */
#services {
    padding-top: 150px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: none;
    padding: 40px 30px;
    border-radius: var(--radius-card);
    text-align: left;
    /* Left align for cleaner look */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align items to start */
}

/* ... existing before/hover ... */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(157, 122, 210, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    /* Soft square instead of circle for change */
    background: #f0fbfc;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transform: rotate(5deg);
    border-color: transparent;
}

/* --- Features Section (Why Choose Us) --- */
#why-choose-us {
    background-color: #0F1115;
    /* Deep Charcoal/Black from template */
    padding: 100px 0;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* Decorative Background Blobs - Subtle Blue tint */
#why-choose-us::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    /* Royal Blue tint */
    border-radius: 50%;
    z-index: 1;
}

#why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

#why-choose-us h2 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

#why-choose-us .section-subtitle {
    color: #3B82F6;
    /* Bright Blue subtitle */
    background: rgba(37, 99, 235, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

#why-choose-us .section-desc {
    color: rgba(255, 255, 255, 0.7);
    /* Muted white */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: #1A1D24;
    /* Darker card base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card-1 {
    background-image: linear-gradient(to bottom, rgba(15, 17, 21, 0.85), rgba(15, 17, 21, 0.95)), url('assets/images/clinic-2.jpg');
}

.feature-card-2 {
    background-image: linear-gradient(to bottom, rgba(15, 17, 21, 0.85), rgba(15, 17, 21, 0.95)), url('assets/images/clinic-3.jpg');
}

.feature-card-3 {
    background-image: linear-gradient(to bottom, rgba(15, 17, 21, 0.85), rgba(15, 17, 21, 0.95)), url('assets/images/clinic-4.jpg');
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #2563EB;
    /* Royal Blue border */
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    /* Blue glow */
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #60A5FA;
    /* Lighter blue icon */
    background: rgba(37, 99, 235, 0.1);
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.feature-item:hover .feature-icon {
    background: #2563EB;
    /* Solid Royal Blue */
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Increased specific spacing for separation */
.feature-item p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.feature-link {
    margin-top: auto;
    /* Push to bottom */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60A5FA;
    /* Link is light blue */
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    padding-top: 15px;
    /* Added separation */
}

.feature-link i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.feature-link:hover {
    gap: 12px;
    border-bottom-color: var(--white);
}

.feature-link:hover i {
    transform: translateX(3px);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* --- About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-list {
    list-style: none;
    margin: 25px 0 35px;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    z-index: -1;
    transform: translate(20px, -20px);
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    text-align: center;
    border: 4px solid var(--white);
    z-index: 2;
}

.badg-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badg-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
        margin-bottom: 20px;
        margin-right: 15px;
        /* Add margin to contain offset */
    }

    .about-image-wrapper::before {
        transform: translate(10px, -10px);
        /* Reduced offset */
    }

    .experience-badge {
        bottom: -10px;
        left: 0;
        padding: 15px 25px;
        right: auto;
    }
}

/* --- Testimonials --- */
.testimonials {
    background-color: var(--accent-bg);
    position: relative;
    overflow: hidden;
}

/* Background decorations */
.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* border-top removed in favor of blurry glow */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Crisp Gradient Top Border Removed */

.review-card::before {
    content: '\f10d';
    /* FontAwesome Quote Icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(37, 99, 235, 0.05);
    /* Watermark style */
    z-index: 0;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.quote-icon {
    display: none;
    /* Hiding old icon in favor of watermark */
}

.stars {
    color: #FFB400;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.reviewer-initials {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Contact Section --- */
/* --- Contact Section --- */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-top: 20px;
}

/* Center and constrain form width */
.contact-form {
    width: 100%;
    max-width: 650px;
    /* Comfortable width for centered form */
}

.contact-info {
    text-align: center;
    /* Centered alignment */
    padding-right: 0;
    /* Removed spacing */
}

.contact-info h2 {
    font-size: 2rem;
    /* Reduced to standard H2 size */
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 100%;
    /* Allow full width of its column */
    font-weight: 400;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    /* Semi-transparent white */
    backdrop-filter: blur(20px);
    /* Strong blur for "frosted glass" look */
    -webkit-backdrop-filter: blur(20px);
    /* Safari support */
    padding: 40px;
    /* Reduced top padding significantly */
    min-height: auto;
    /* Remove forced height to fit content */
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    /* Lighter, more subtle shadow */
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Subtle smooth border */
    position: relative;
    overflow: hidden;
    text-align: left;
    margin-top: 10px;
    /* Reduced separation */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

/* Removed Accent Strip ::before */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* Match standard grid gap */
}

/* Mobile responsive for grid */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 20px;
    /* Tighter vertical spacing */
    position: relative;
    z-index: 1;
    text-align: left;
    /* Ensure labels stay left */
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    /* Dark text */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
    /* Double assurance */
}

.form-control {
    width: 100%;
    height: 50px;
    /* Fixed height for symmetry */
    padding: 0 15px;
    /* Horizontal padding only, height handles vertical */
    background: #f8fafc;
    /* Subtle off-white bg */
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    /* Standard professional radius */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

textarea.form-control {
    height: auto;
    padding: 15px;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: #a0aec0;
}

/* Custom Select Dropdown Arrow */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    /* Dark arrow */
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

/* Conflicting rules removed to allow .btn-submit to take effect */

/* Testimonial Images - Fixed */
.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reviewer-initials {
    display: none !important;
}

/* --- Footer --- */
/* --- Dante Center Replica Footer (Refined) --- */

/* --- Footer --- */

.footer {
    background-color: var(--dark-slate);
    color: var(--white);
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.footer-col h3.footer-brand {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
    /* Better visibility */
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
    /* Clearer hover movement */
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}

.footer-contact i {
    color: var(--primary-color);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Slightly more visible divider */
    padding-bottom: 10px;
}

.day-label {
    color: #cbd5e1;
}

.time-label {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #94a3b8;
}

.social-mobile {
    display: none;
    /* Hidden on Desktop */
}

.social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: transform 0.3s, color 0.3s;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.social-icons a:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-5px);
    /* Nicer pop-up effect */
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    /* Glow effect */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 Columns on Tablet */
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-desktop {
        display: none;
        /* Hide top icons on mobile */
    }

    .social-mobile {
        display: flex;
        /* Show bottom icons on mobile */
        justify-content: center;
        gap: 15px;
        order: 2;
        /* Place below legal links */
    }

    .footer-bottom p {
        order: 1;
    }

    .footer-legal-bottom {
        order: 3;
    }
}

.footer-legal-bottom {
    display: flex;
    gap: 25px;
}

.footer-legal-bottom a {
    color: #64748B;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-bottom a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 0;
    /* Removed top margin for alignment in bottom bar */
}

/* Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin: 0;
}

/* Desktop Icons (Column 1) */
.social-desktop {
    display: flex;
    margin-top: 20px;
    margin-bottom: 25px;
}

/* Mobile Icons (Bottom Bar) */
.social-mobile {
    display: none;
    /* Default Hidden on Desktop */
}

.social-icons a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}



.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* Footer Mobile */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Force icons to stay in main column for tablet/mobile too */
    .social-desktop {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .social-mobile {
        display: none;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Reverting center align - forcing left align for readability */
    .footer-contact,
    .footer-hours,
    .footer-links-list li,
    .footer-text,
    .hours-item {
        align-items: flex-start;
        text-align: left;
    }

    /* Show icons in the main column (Header -> Desc -> Icons) */
    .social-desktop {
        display: flex;
        margin-bottom: 25px;
        justify-content: flex-start;
    }

    /* Hide redundant icons in bottom bar */
    .social-mobile {
        display: none;
    }
}



/* --- Global Section Headers --- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {

    /* Navbar */
    /* Navbar */
    .nav-links {
        display: flex;
        /* Always flex, hide with visibility */
        visibility: hidden;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        /* Fixed overlay */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.8);
        /* Semi-transparent base */
        backdrop-filter: blur(25px);
        /* Strong blur for glass */
        -webkit-backdrop-filter: blur(25px);
        box-shadow: none;
        text-align: center;
        gap: 30px;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: scale(1.1);
        /* Slight zoom out effect */
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
        pointer-events: all;
        transform: scale(1);
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    .mobile-cta-item {
        display: block;
        /* Show CTA in menu */
        margin-top: 20px;
    }

    .nav-cta-mobile {
        width: 100%;
        min-width: 200px;
    }

    .hamburger {
        display: flex;
    }

    .btn-nav-cta {
        display: none;
        /* Often hidden or moved into menu on mobile */
    }

    /* Stacking Layouts & Mobile Hero Adjustment */
    .about-container,
    .contact-container,
    .hero-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: left;
        /* Enforce left align on mobile */
        gap: 50px;
        /* Increased to 50px for clear separation */
    }

    /* Full width buttons on mobile */
    .btn-submit {
        width: 100%;
    }

    /* Remove bottom margin from header inside contact to prevent double spacing */
    .contact-container .section-header {
        margin-bottom: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
        /* Enforce left align on mobile */
    }

    /* Typography & Spacing */
    .hero h1 {
        font-size: 2rem;
        /* Reduced for better fit */
        margin-bottom: 16px;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Layout Adjustments */
    .service-card {
        padding: 24px;
    }

    .contact-form,
    .about-text,
    .contact-info {
        padding: 20px;
        text-align: center;
        /* Center align text on mobile for better balance */
    }

    .hero-img {
        height: 300px;
        /* Smaller on mobile */
        margin-top: 40px;
        /* Increased separation on mobile */
    }

    .info-bar {
        margin-top: 150px;
        padding: 15px 0;
    }

    /* Improved Mobile About Section */
    .about-container {
        display: flex;
        flex-direction: column;
    }

    .about-image {
        order: -1;
        /* Image first */
        margin-bottom: 10px;
    }

    .about-text {
        text-align: left;
        /* Better readability than center */
        padding: 0 10px;
        /* Slight padding for edge safety */
    }
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: var(--radius-card);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Remove default marker */
    background: transparent;
    transition: background 0.3s ease;
}

/* Remove default triangle for Webkit */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.faq-toggle {
    color: var(--text-light);
    transition: transform 0.3s ease;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    flex-shrink: 0;
    /* Prevent flattening */
}

.faq-item[open] summary {
    background: rgba(37, 99, 235, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item[open] .faq-toggle {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-item[open] .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    /* Padding moved to inner p for smooth height animation */
    padding: 0;
    color: var(--text-light);
    line-height: 1.7;
    overflow: hidden;
    /* Essential for height animation */
    opacity: 0;
    /* Default hidden state for JS animation */
    height: 0;
}

.faq-answer p {
    padding: 20px 20px 20px 60px;
    font-size: 0.9rem;
    /* Indent applied here */
    margin: 0;
    /* Removing default margin to prevent jumpiness */
}

/* Removed fadeIn keyframes as JS handles the smooth transition now */

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- New Footer Design --- */
.main-footer {
    background-color: #0F172A;
    /* Deep Slate Blue */
    color: #94A3B8;
    /* Slate-400 equivalent */
    padding: 100px 0 40px;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: auto;
}

.main-footer .container {
    max-width: 1200px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-brand h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    /* More subtle */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #CBD5E1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(2px);
}

.contact-info li {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    align-items: center;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0;
    background: rgba(37, 99, 235, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    font-size: 0.95rem;
    color: #94A3B8;
    position: relative;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--white);
    text-decoration: none;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.legal-links a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .main-footer {
        padding: 80px 0 40px;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-col h4::after {
        left: 0;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .legal-links {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .legal-links a {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.85rem;
    }
}

/* --- Technology Page Redesign --- */
.tech-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

.tech-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Force flex items to center */
}

.tech-tagline {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-size: 0.9rem;
}

.tech-title {
    font-size: 3.5rem;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.tech-desc {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tech-hero .hero-buttons,
.atmos-hero .hero-buttons,
.price-hero .hero-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.tech-stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tech-grid-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease;
    text-align: left;
    /* Left align for cards */
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.tech-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #1e293b;
}

.tech-card p {
    color: #64748b;
    line-height: 1.6;
}

.tech-detail-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-detail-content {
    text-align: left;
}

.tech-detail-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tech-detail-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tech-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.tech-list li {
    margin-bottom: 15px;
    color: #475569;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.tech-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .tech-title {
        font-size: 2.5rem;
    }

    .tech-detail-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .tech-detail-content {
        text-align: center;
    }

    .tech-detail-content .tech-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .tech-detail-image {
        order: -1;
    }

    .tech-detail-section:nth-child(even) .tech-detail-image {
        order: -1;
    }

    .tech-list {
        display: inline-block;
        text-align: left;
    }

    .tech-list li {
        justify-content: flex-start;
    }

    .tech-stat-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .tech-hero {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .tech-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .tech-desc {
        font-size: 1rem;
        padding: 0 10px;
    }

    .tech-card {
        padding: 25px;
        text-align: center;
    }

    .tech-card-icon {
        margin: 0 auto 20px;
    }

    .tech-list {
        display: inline-block;
        text-align: left;
    }
}

/* --- Atmosphere Page Redesign --- */
.atmos-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    /* Same as Tech page */
    text-align: center;
    position: relative;
    z-index: 1;
}

.atmos-title {
    font-size: 3.5rem;
    color: #1e293b;
    /* Dark Slate to match others */
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.atmos-desc {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.atmos-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.atmos-value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.atmos-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.atmos-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.atmos-card:hover {
    transform: translateY(-5px);
}

.atmos-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.atmos-card-content {
    padding: 25px;
    text-align: left;
}

.atmos-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #1e293b;
}

.atmos-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Detailed Amenity Section (ZigZag) */
.atmos-detail-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.atmos-detail-content {
    text-align: left;
}

.atmos-detail-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.atmos-detail-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Responsive for Atmosphere */
@media (max-width: 900px) {
    .atmos-title {
        font-size: 2.5rem;
    }

    .atmos-detail-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .atmos-detail-content {
        text-align: center;
    }

    .atmos-detail-image {
        order: -1;
    }

    .atmos-detail-section:nth-child(even) .atmos-detail-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .atmos-hero {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .atmos-title {
        font-size: 2rem;
    }

    .atmos-desc {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* --- Pricing Page Redesign --- */
.price-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    background-color: #FAFAFA;
    text-align: center;
    position: relative;
    z-index: 1;
}

.price-title {
    font-size: 3.5rem;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.price-desc {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.price-tab-btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-tab-btn.active,
.price-tab-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.price-category {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
    border: 1px solid #f1f5f9;
}

.price-cat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.price-cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #eff6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.price-cat-title {
    font-size: 1.8rem;
    color: #1e293b;
    font-weight: 700;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.2s ease;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background: #f8fafc;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

.service-name {
    font-weight: 500;
    color: #334155;
    font-size: 1.05rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-left: 10px;
    font-weight: 400;
}

/* Payment Options Cards */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.payment-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 2rem;
}

@media (max-width: 600px) {
    .price-hero {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .price-title {
        font-size: 2rem;
        word-wrap: break-word;
        padding: 0 10px;
    }

    .price-desc {
        font-size: 1rem;
        padding: 0 15px;
    }

    .price-cat-title {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .price-category {
        padding: 25px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .service-price {
        align-self: flex-start;
        font-size: 1.1rem;
        color: var(--primary-color);
        margin-top: 5px;
    }

    .price-cat-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .price-cat-icon {
        margin: 0 auto;
    }
}

/* --- Fix for 'Why Choose Us' Grid Alignment --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-item>div:last-child {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-link {
    margin-top: auto;
    align-self: flex-start;
    /* Or start, to keep left aligned */


}

/* --- Footer Contact Fix (Renamed Class) --- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.footer-contact-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}


.footer-contact-list span {
    flex: 1;
    line-height: 1.5;
}

/* --- Interactive States (Hover & Tap) --- */
.btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    transition: all 0.1s ease;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.feature-link i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-link:hover {
    gap: 15px;
    color: #1D4ED8;
}

.feature-link:hover::after {
    width: 100%;
}

.feature-link:hover i {
    transform: translateX(8px);
}

.feature-link:active {
    transform: scale(0.95);
    opacity: 0.8;
}

/* --- Global Glassmorphism Overrides --- */
.service-card,
.feature-item,
.review-card,
.pricing-category,
.payment-card {
    background: rgba(255, 255, 255, 0.75) !important;
    /* Semi-transparent white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Darker glass for better contrast on white backgrounds if needed, 
   but 0.75 white + blur works well on light gray/off-white backgrounds */


.feature-link:active {
    transform: scale(0.95);
    opacity: 0.8;
}

/* --- EMERGENCY FIX: Restoring Feature Card Images --- */
/* Using high specificity and !important to override the global glass rule */

.features-grid .feature-item {
    background-color: transparent !important;
    background-size: cover !important;
    background-position: center !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: flex;
    flex-direction: column;
}

/* Card 1: Technology (Robot Icon) */
.features-grid .feature-card-1 {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('assets/images/clinic-1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Card 2: Atmosphere (Spa Icon) */
.features-grid .feature-card-2 {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('assets/images/clinic-2.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Card 3: Pricing (Dollar Icon) */
.features-grid .feature-card-3 {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('assets/images/clinic-3.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Force text colors in these cards */
.features-grid .feature-item h3,
.features-grid .feature-item p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.features-grid .feature-item .feature-icon {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #60A5FA !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* --- Cookie Banner --- */
/* --- Cookie Banner --- */
/* --- Cookie Banner Redesign --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    max-width: calc(100% - 40px);
    padding: 24px;
    border-radius: 24px;
    /* Smoother radius */
    z-index: 2147483647;

    /* Layout */
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    gap: 16px 20px;
    align-items: start;

    /* Glassmorphism Premium */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;

    /* Animation Initial State */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Spring effect */
    visibility: hidden;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.cookie-icon {
    grid-row: 1 / span 2;
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.cookie-content {
    grid-column: 2;
    grid-row: 1;
}

.cookie-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.btn-cookie {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    padding: 10px 24px;
    font-size: 0.85rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .cookie-banner {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
        left: 20px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
    }

    .cookie-icon {
        grid-row: 1;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cookie-content {
        grid-column: 1;
        grid-row: 2;
    }

    .btn-cookie {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
    }
}

/* --- Scroll Animations System --- */

/* Base Reveal State */
.reveal {
    opacity: 0;
    filter: blur(10px);
    /* Premium Blur Effect */
    will-change: opacity, transform, filter;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Slower, smoother easing */
}

/* Active State (Visible) */
.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1) !important;
}

/* Animation Variants */

/* Fade Up (Default for Text/Headers) */
.fade-up {
    transform: translateY(60px);
}

/* Fade Down */
.fade-down {
    transform: translateY(-60px);
}

/* Fade Left (Comes from Right) */
.fade-left {
    transform: translateX(60px);
}

/* Fade Right (Comes from Left) */
.fade-right {
    transform: translateX(-60px);
}

/* Zoom In (For Cards/Images) */
.zoom-in {
    transform: scale(0.85);
    /* More dramatic zoom start */
}

/* Stagger Delays (for Grids) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Ensure elements don't block interaction when hidden */
.reveal:not(.active) {
    pointer-events: none;
}