@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary: #6B1058;
    --primary-hover: #550D47;
    --secondary: #8E2272;
    --accent: #F5E6F1;
    --bg-light: #F9F9FB;
    --bg-purple: #FAF0F7;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(107, 16, 88, 0.1);
    --shadow-lg: 0 10px 25px rgba(107, 16, 88, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;

    /* Curves */
    --curve-radius: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography Utilities */
.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--bg-purple);
}

.btn-ghost {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Navigation */
header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--accent);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Shared Layout Sections */
section {
    border-bottom-left-radius: var(--curve-radius);
    border-bottom-right-radius: var(--curve-radius);
    overflow: hidden;
    /* To ensure content/background follows the curve */
}

.hero {
    padding: var(--space-xl) 0;
    background: radial-gradient(circle at top right, var(--accent), transparent 40%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-image {
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.stats {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shared Components */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 20px;
    border: 1px solid var(--accent);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.cta-banner {
    padding: var(--space-xl) 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 40px;
    margin: var(--space-xl) 0;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.cta-banner p {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

/* Footer */
footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: #0F172A;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 250px;
}

.footer-heading {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branch-info {
    margin-bottom: 2rem;
}

.branch-info h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.branch-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin: 0 auto;
        max-width: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1100;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 320px);
    height: 100%;
    background: var(--white);
    z-index: 1060;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--accent);
}

.mobile-nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    font-size: 1.25rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--accent);
    color: var(--primary);
}

.mobile-nav-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--accent);
}

.mobile-nav-cta a {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.mobile-nav-cta a:hover {
    background: var(--primary-hover);
}

.mobile-nav-contact {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mobile-nav-contact strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Contact page responsive */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.booking-form-container {
    width: 100%;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--accent);
    padding: 0.75rem 0;
}

.hours-table td {
    padding: 0.75rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-banner h2 {
        font-size: 2.25rem;
    }

    /* Contact page */
    .booking-form {
        grid-template-columns: 1fr;
    }
    .booking-form .form-field[style*="span 2"] {
        grid-column: span 1 !important;
    }
    .booking-form button[style*="span 2"] {
        grid-column: span 1 !important;
    }
}

/* Shared Dark Service Grid */
.home-services,
.services-grid-section {
    background-color: #0F172A;
    padding: var(--space-xl) 0;
    color: white;
}

.services-header {
    margin-bottom: var(--space-lg);
}

.practice-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0F172A;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid #E2E8F0;
}

.practice-icon {
    color: var(--primary);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--space-lg);
}

.service-card-new {
    background: white;
    color: #0F172A;
    padding: 2.5rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.gold-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0F172A;
}

.service-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.view-more .arrow-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.bg-number {
    position: absolute;
    right: 30px;
    bottom: -15px;
    font-size: 7rem;
    font-weight: 900;
    color: var(--bg-purple);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.booking-card-gold {
    background: var(--primary);
    color: white;
    padding: 3rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent);
}

.booking-icon {
    font-size: 3.5rem;
}

.booking-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
}

.booking-btn {
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 800;
    align-self: flex-start;
}

.dark-arrow {
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Map Section */
.map-section {
    height: 450px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.marker-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

/* Appointment Section */
.appointment-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--white), var(--bg-purple));
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-lg);
    align-items: center;
}

.clinical-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #B89A4E;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.clinical-tag::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #B89A4E;
}

.appointment-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #0F172A;
}

.appointment-content h2 span {
    color: #B89A4E;
    font-style: italic;
    font-family: serif;
}

.assistance-box {
    background: #0F172A;
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 400px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.assistance-box::after {
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.assistance-tag {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.assistance-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -1rem;
}

.assistance-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.phone-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.booking-card .form-label {
    color: #64748B;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.booking-card .form-input, 
.booking-card .form-select {
    border: none;
    border-bottom: 1px solid #E2E8F0;
    border-radius: 0;
    padding: 0.75rem 0;
    background: transparent;
}

.booking-card .form-input:focus {
    border-bottom-color: var(--primary);
    outline: none;
}

@media (max-width: 992px) {
    .appointment-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Patient Testimonials Section */
.t-section {
    font-family: 'Inter', sans-serif;
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
    --t-accent: #B89A4E;
    --t-primary: var(--primary);
}

.t-bg-dots {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(circle, #E2E8F0 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
}

.t-header {
    text-align: center; position: relative; z-index: 1; margin-bottom: 3.5rem;
}

.t-eyebrow {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center; gap: 15px;
    margin-bottom: 1rem;
}

.t-eyebrow::before, .t-eyebrow::after {
    content: ''; display: block; height: 1px; width: 40px;
    background: #E2E8F0;
}

.t-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700; line-height: 1.1;
    color: #0F172A;
}

.t-title em {
    font-style: italic; color: var(--t-accent);
}

.t-track-wrap {
    position: relative; z-index: 1;
    overflow: hidden; padding: 1.5rem 0;
}

.t-track {
    display: flex; gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 300px;
    background: var(--white);
    border: 1px solid #F1F5F9;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.t-card:hover {
    border-color: var(--t-primary);
    box-shadow: 0 20px 40px -10px rgba(107, 16, 88, 0.1);
    transform: translateY(-5px);
}

.t-card-accent {
    position: absolute; top: 0; left: 2.5rem; right: 2.5rem;
    height: 3px; border-radius: 0 0 4px 4px;
    background: var(--t-accent);
}

.t-quote-icon {
    width: 32px; height: 24px; margin-bottom: 1.5rem;
    display: block; fill: var(--bg-purple);
}

.t-text {
    font-size: 1rem; line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
    font-style: italic;
}

.t-stars {
    display: flex; gap: 4px; margin-bottom: 1.5rem;
}

.t-star {
    width: 16px; height: 16px; fill: #F59E0B;
}

.t-divider {
    height: 1px; background: #F1F5F9; margin-bottom: 1.5rem;
}

.t-author { display: flex; align-items: center; gap: 12px; }

.t-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    flex-shrink: 0;
}

.t-name {
    font-size: 1rem; font-weight: 700;
    color: #0F172A; line-height: 1.3;
}

.t-role {
    font-size: 0.8rem; color: var(--text-muted); margin-top: 2px;
}

.t-treatment {
    margin-left: auto;
    font-size: 0.7rem; font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--bg-purple); color: var(--t-primary);
}

.t-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; margin-top: 3rem; position: relative; z-index: 1;
}

.t-btn {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s ease;
    color: #0F172A;
}

.t-btn:hover { 
    background: var(--bg-purple); 
    border-color: var(--t-primary);
    color: var(--t-primary);
}

.t-dots { display: flex; gap: 8px; align-items: center; }

.t-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #E2E8F0; cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    background: var(--t-primary); width: 24px; border-radius: 4px;
}

.t-stat-strip {
    display: flex; justify-content: center; gap: 4rem;
    margin-top: 4rem; position: relative; z-index: 1;
    flex-wrap: wrap;
}

.t-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem; font-weight: 700;
    color: #0F172A; line-height: 1;
}

.t-stat-label {
    font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; font-weight: 600;
}

@media (max-width: 992px) {
    .t-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 680px) {
    .t-card { flex: 0 0 100%; min-width: unset; }
    .t-stat-strip { gap: 2rem; }
}

/* Premium Trust Section (Why Patients Trust Us) */
.wp-section {
    font-family: 'Inter', sans-serif;
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.wp-bg-line {
    position: absolute; top: 0; left: 50%; 
    transform: translateX(-50%); width: 1px; 
    height: 100%; background: #F1F5F9; z-index: 0;
}

.wp-header {
    text-align: center; position: relative; z-index: 1; margin-bottom: 4rem;
    opacity: 0; transform: translateY(20px); transition: all 0.7s ease;
}

.wp-header.in { opacity: 1; transform: translateY(0); }

.wp-tag {
    display: inline-flex; align-items: center; gap: 8px; 
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; 
    text-transform: uppercase; color: var(--primary); 
    background: var(--bg-purple); padding: 6px 16px; 
    border-radius: 50px; margin-bottom: 1.5rem;
}

.wp-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: wp-pulse 2s infinite; }
@keyframes wp-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }

.wp-title {
    font-family: 'Outfit', sans-serif; 
    font-size: clamp(2.25rem, 5vw, 3.25rem); 
    font-weight: 700; color: #0F172A; line-height: 1.1; margin-bottom: 1rem;
}

.wp-title span { font-style: italic; color: #B89A4E; }

.wp-sub { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.6; }

.wp-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 1.5rem; position: relative; z-index: 1; 
}

.wp-card {
    position: relative; background: var(--white); 
    border: 1px solid #F1F5F9; border-radius: 24px; 
    padding: 2.5rem 2rem 2rem; overflow: hidden; 
    opacity: 0; transform: translateY(30px); transition: all 0.6s ease;
}

.wp-card.in { opacity: 1; transform: translateY(0); }

.wp-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 24px; 
    opacity: 0; transition: opacity 0.4s ease; background: var(--card-tint, #F3E8FF);
}

.wp-card:hover::before { opacity: 0.4; }
.wp-card:hover { border-color: var(--card-stroke, var(--primary)); transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05); }

.wp-number {
    font-family: 'Outfit', sans-serif; font-size: 5rem; font-weight: 700; 
    line-height: 0.9; color: var(--card-num, #E9D5FF); position: absolute; 
    top: 1.5rem; right: 1.5rem; opacity: 0.3; transition: all 0.3s ease; pointer-events: none;
}

.wp-card:hover .wp-number { opacity: 0.6; transform: scale(1.1); }

.wp-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px; 
    display: flex; align-items: center; justify-content: center; 
    margin-bottom: 1.5rem; background: var(--card-tint, #F3E8FF); position: relative;
}

.wp-icon { width: 26px; height: 26px; stroke: var(--card-icon, var(--primary)); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.wp-badge { 
    position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; 
    border-radius: 50%; background: var(--card-icon, var(--primary)); 
    display: flex; align-items: center; justify-content: center; 
}

.wp-badge svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.wp-card-title { font-size: 1.15rem; font-weight: 700; color: #0F172A; margin-bottom: 0.75rem; line-height: 1.3; }
.wp-card-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.wp-pill { 
    display: inline-block; font-size: 0.7rem; font-weight: 700; 
    padding: 4px 12px; border-radius: 50px; margin-top: 1.5rem; 
    background: var(--card-tint, #F3E8FF); color: var(--card-deep, var(--primary)); 
}

.wp-line-connector { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; margin: 4rem 0 2rem; }
.wp-lc-bar { flex: 1; height: 1px; background: #F1F5F9; }
.wp-lc-center { display: flex; gap: 8px; padding: 0 2rem; }
.wp-lc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: wp-bounce 1.6s ease-in-out infinite; }
.wp-lc-dot:nth-child(2) { animation-delay: 0.2s; background: #B89A4E; }
.wp-lc-dot:nth-child(3) { animation-delay: 0.4s; background: #C084FC; }
@keyframes wp-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.wp-bottom { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; position: relative; z-index: 1; }
.wp-stat { padding: 1.5rem 3rem; text-align: center; position: relative; }
.wp-stat + .wp-stat::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: #F1F5F9; }
.wp-snum { font-family: 'Outfit', sans-serif; font-size: 2.25rem; font-weight: 700; color: #0F172A; line-height: 1; }
.wp-snum span { color: #B89A4E; }
.wp-slabel { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

@media (max-width: 600px) {
    .wp-stat { padding: 1rem 1.5rem; }
    .wp-stat + .wp-stat::before { display: none; }
    .wp-bottom { display: grid; grid-template-columns: 1fr 1fr; }
}

/* Premium FAQ Section (Patient Questions Answered) */
.fq-section {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    color: #0F172A;
}

.fq-grid-bg {
    position: absolute; inset: 0; opacity: 0.2;
    background-image: linear-gradient(#E2E8F0 1px, transparent 1px),
                      linear-gradient(90deg, #E2E8F0 1px, transparent 1px);
    background-size: 48px 48px;
}

.fq-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.fq-orb1 { width: 500px; height: 500px; top: -150px; left: -150px; background: radial-gradient(circle, rgba(107, 16, 88, 0.05) 0%, transparent 70%); }
.fq-orb2 { width: 400px; height: 400px; bottom: -100px; right: -100px; background: radial-gradient(circle, rgba(184, 154, 78, 0.03) 0%, transparent 70%); }

.fq-inner { position: relative; z-index: 2; }

.fq-top { display: flex; align-items: center; gap: 12px; margin-bottom: 2rem; opacity: 0; transform: translateY(16px); transition: all 0.6s ease; }
.fq-top.in { opacity: 1; transform: none; }
.fq-top-line { width: 32px; height: 2px; background: var(--primary); }
.fq-top-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); }

.fq-headline { opacity: 0; transform: translateY(24px); transition: all 0.7s 0.1s ease; margin-bottom: 4rem; }
.fq-headline.in { opacity: 1; transform: none; }
.fq-h1 { font-family: 'Outfit', sans-serif; font-size: clamp(3rem, 7vw, 4.5rem); color: #0F172A; line-height: 1; font-weight: 800; }
.fq-h1 em { font-style: italic; color: #B89A4E; font-weight: 400; }
.fq-hsub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 450px; margin-top: 1rem; }

.fq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }

.fq-left { display: flex; flex-direction: column; gap: 2rem; }

.fq-call-card { 
    background: var(--bg-purple); border: 1px solid rgba(107, 16, 88, 0.1); 
    border-radius: 24px; padding: 2.5rem; position: relative; overflow: hidden; 
    opacity: 0; transform: translateY(20px); transition: all 0.6s 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(107, 16, 88, 0.1);
}
.fq-call-card.in { opacity: 1; transform: none; }
.fq-call-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), transparent); }

.fq-call-icon { 
    width: 52px; height: 52px; border-radius: 14px; background: var(--white); 
    border: 1px solid rgba(107, 16, 88, 0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; 
}
.fq-call-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.fq-call-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.5rem; }
.fq-call-num { font-family: 'Outfit', sans-serif; font-size: 2.25rem; color: #0F172A; font-weight: 800; line-height: 1; }
.fq-call-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

.fq-badges { display: flex; flex-direction: column; gap: 0.75rem; opacity: 0; transform: translateY(20px); transition: all 0.6s 0.4s ease; }
.fq-badges.in { opacity: 1; transform: none; }
.fq-badge { display: flex; align-items: center; gap: 12px; padding: 0.85rem 1.25rem; background: var(--white); border: 1px solid #F1F5F9; border-radius: 12px; }
.fq-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: fq-pulse 2s infinite; }
.fq-badge-txt { font-size: 0.9rem; color: var(--text-muted); }

.fq-right { display: flex; flex-direction: column; opacity: 0; transform: translateX(24px); transition: all 0.7s 0.3s ease; }
.fq-right.in { opacity: 1; transform: none; }

.fq-item { border-bottom: 1px solid #F1F5F9; overflow: hidden; }
.fq-item:first-child { border-top: 1px solid #F1F5F9; }
.fq-q { display: flex; align-items: center; gap: 16px; padding: 1.5rem 0; cursor: pointer; transition: all 0.3s; }
.fq-qnum { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; color: #E2E8F0; min-width: 30px; transition: color 0.3s; }
.fq-item.open .fq-qnum { color: var(--primary); }
.fq-q-text { font-size: 1.05rem; font-weight: 600; color: #475569; flex: 1; transition: color 0.3s; }
.fq-item.open .fq-q-text { color: var(--primary); }

.fq-toggle { 
    width: 32px; height: 32px; border-radius: 10px; border: 1px solid #E2E8F0; 
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; background: transparent; 
}
.fq-item.open .fq-toggle { background: var(--primary); border-color: var(--primary); }
.fq-toggle svg { width: 14px; height: 14px; stroke: var(--primary); fill: none; stroke-width: 3; stroke-linecap: round; transition: all 0.3s; }
.fq-item.open .fq-toggle svg { stroke: #FFF; transform: rotate(45deg); }

.fq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.fq-answer-inner { padding: 0 0 1.5rem 46px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.fq-item.open .fq-answer { max-height: 300px; }

.fq-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #F1F5F9; opacity: 0; transition: opacity 0.6s 0.7s ease; flex-wrap: wrap; gap: 2rem; }
.fq-bottom.in { opacity: 1; }
.fq-stats { display: flex; gap: 3rem; }
.fq-stat-n { font-family: 'Outfit', sans-serif; font-size: 2.25rem; font-weight: 800; color: #0F172A; line-height: 1; }
.fq-stat-n span { color: var(--primary); }
.fq-stat-l { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; font-weight: 700; }

.fq-cta { 
    display: inline-flex; align-items: center; gap: 10px; padding: 1rem 2rem; background: #0F172A; 
    border-radius: 12px; font-size: 0.95rem; font-weight: 700; color: #FFF; cursor: pointer; transition: all 0.3s; border: none; 
}
.fq-cta:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 20px -5px rgba(107, 16, 88, 0.3); }
.fq-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.fq-ticker { border-top: 1px solid #F1F5F9; padding: 0.75rem 0; overflow: hidden; background: #F8FAFC; }
.fq-ticker-track { display: flex; gap: 3rem; white-space: nowrap; animation: fq-tk 30s linear infinite; }
.fq-t-item { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: #94A3B8; display: flex; align-items: center; gap: 1rem; }
.fq-t-item::after { content: '◆'; font-size: 8px; opacity: 0.3; }
@keyframes fq-tk { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


@media (max-width: 992px) {
    .fq-layout { grid-template-columns: 1fr; gap: 3rem; }
    .fq-right { transform: translateY(20px); }
}

/* Premium Zig-Zag Services Layout */
.sz-section {
    padding: var(--space-xl) 0;
    background: var(--white);
    overflow: hidden;
}

.sz-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.sz-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sz-item.in {
    opacity: 1;
    transform: translateY(0);
}

.sz-item:nth-child(even) {
    flex-direction: row-reverse;
}

.sz-image-wrap {
    flex: 1.2;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.sz-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sz-item:hover .sz-image {
    transform: scale(1.05);
}

.sz-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(107, 16, 88, 0.2), transparent);
    mix-blend-mode: overlay;
}

.sz-content {
    flex: 1;
    padding: 2rem 0;
}

.sz-tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.sz-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
}

.sz-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B89A4E;
    background: rgba(184, 154, 78, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.sz-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sz-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.sz-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.sz-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
}

.sz-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sz-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 2.25rem;
    background: #0F172A;
    color: #FFF;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sz-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(107, 16, 88, 0.4);
}

.sz-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 992px) {
    .sz-item, .sz-item:nth-child(even) {
        flex-direction: column;
        gap: 2.5rem;
    }
    .sz-image-wrap {
        width: 100%;
        max-width: 600px;
    }
    .sz-content {
        padding: 0;
        text-align: center;
    }
    .sz-tag-row { justify-content: center; }
    .sz-features { justify-content: center; }
    .sz-desc { margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
    .sz-features {
        grid-template-columns: 1fr;
    }
    .sz-container {
        gap: 4rem;
    }
}

/* Floating Appointment Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-purple);
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: var(--bg-purple);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    color: #0F172A;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.modal-title span {
    color: #B89A4E;
}

.modal-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-form .form-group input,
.modal-form .form-group select {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F8FAFC;
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(107, 16, 88, 0.1);
}

.modal-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.modal-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #F1F5F9;
}

.modal-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-footer span {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 500px) {
    .modal-content {
        padding: 2.5rem 1.5rem;
    }
    .modal-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   Desktop layout remains completely untouched.
   ============================================ */

/* --- Tablet: 1024px --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    .services-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* --- Tablet / Small Laptop: 768px --- */
@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --curve-radius: 60px;
    }

    /* Header & Nav */
    header {
        padding: 1rem 0;
    }
    .nav-container .btn-primary {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero {
        padding: var(--space-lg) 0;
    }
    .hero-image {
        max-width: 400px;
    }

    /* Stats */
    .stats {
        padding: var(--space-md) 0;
    }
    .stat-item h3 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    .footer-desc {
        max-width: 100%;
    }

    /* CTA Banner */
    .cta-banner {
        padding: var(--space-lg) var(--space-md);
        border-radius: 24px;
        margin: var(--space-lg) 0;
    }
    .cta-banner h2 {
        font-size: 2rem;
    }
    .cta-banner p {
        font-size: 1rem;
    }

    /* Appointment */
    .appointment-section {
        padding: var(--space-lg) 0;
    }
    .booking-card {
        padding: 2rem;
    }

    /* Testimonials */
    .t-section {
        padding: var(--space-lg) 0;
    }

    /* Trust Section */
    .wp-section {
        padding: var(--space-lg) 0;
    }
    .wp-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    /* FAQ */
    .fq-section {
        padding: var(--space-lg) 0;
    }
    .fq-h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .fq-headline {
        margin-bottom: 2.5rem;
    }
    .fq-call-num {
        font-size: 1.75rem;
    }

    /* Map */
    .map-section {
        height: 300px;
    }

    /* Zig-zag services */
    .sz-section {
        padding: var(--space-lg) 0;
    }
    .sz-container {
        gap: 3rem;
    }
}

/* --- Mobile: 600px --- */
@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    /* Section curves */
    :root {
        --curve-radius: 40px;
    }

    /* Header */
    .logo {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero {
        padding: 3rem 0;
    }
    .hero-grid {
        gap: var(--space-md);
    }
    .hero-image {
        max-width: 100%;
    }
    .section-subtitle {
        font-size: 1rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    .stat-item h3 {
        font-size: 1.75rem;
    }
    .stat-item p {
        font-size: 0.75rem;
    }

    /* Service cards grid */
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-card-new {
        padding: 1.75rem;
        border-radius: 24px;
    }
    .service-title {
        font-size: 1.35rem;
    }
    .bg-number {
        font-size: 5rem;
        right: 15px;
    }
    .booking-card-gold {
        padding: 2rem;
        border-radius: 24px;
    }
    .booking-title {
        font-size: 1.5rem;
    }
    .booking-btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        margin: 3rem 0;
    }
    .cta-banner h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .cta-banner p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .cta-btns .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    footer {
        padding: var(--space-lg) 0 var(--space-md);
    }
    .footer-desc {
        max-width: 100%;
    }
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    /* Appointment Section */
    .appointment-grid {
        grid-template-columns: 1fr;
    }
    .appointment-content h2 {
        font-size: 2rem;
    }
    .assistance-box {
        max-width: 100%;
        padding: 1.75rem;
    }
    .assistance-phone {
        font-size: 1.35rem;
    }
    .booking-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    /* Testimonials */
    .t-section {
        padding: 3rem 0;
    }
    .t-card {
        padding: 1.75rem;
        border-radius: 20px;
    }
    .t-stat-strip {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    .t-stat-num {
        font-size: 2rem;
    }

    /* Trust Cards */
    .wp-section {
        padding: 3rem 0;
    }
    .wp-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .wp-card {
        padding: 1.75rem 1.5rem 1.5rem;
    }
    .wp-number {
        font-size: 3.5rem;
    }
    .wp-line-connector {
        margin: 2.5rem 0 1.5rem;
    }
    .wp-bottom {
        gap: 0;
    }
    .wp-stat {
        padding: 1rem;
    }
    .wp-snum {
        font-size: 1.75rem;
    }

    /* FAQ Section */
    .fq-section {
        padding: 3rem 0;
    }
    .fq-headline {
        margin-bottom: 2rem;
    }
    .fq-h1 {
        font-size: 2.25rem;
    }
    .fq-hsub {
        font-size: 0.9rem;
    }
    .fq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .fq-call-card {
        padding: 1.75rem;
    }
    .fq-call-num {
        font-size: 1.5rem;
    }
    .fq-q-text {
        font-size: 0.95rem;
    }
    .fq-answer-inner {
        padding-left: 30px;
        font-size: 0.9rem;
    }
    .fq-bottom {
        margin-top: 2.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .fq-stats {
        gap: 2rem;
    }
    .fq-stat-n {
        font-size: 1.75rem;
    }
    .fq-ticker-track {
        gap: 2rem;
    }

    /* Zig-zag Services */
    .sz-item, .sz-item:nth-child(even) {
        flex-direction: column;
        gap: 1.5rem;
    }
    .sz-image-wrap {
        width: 100%;
        border-radius: 20px;
        aspect-ratio: 16 / 10;
    }
    .sz-content {
        padding: 0;
        text-align: left;
    }
    .sz-title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    .sz-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .sz-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    .sz-btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    /* Map */
    .map-section {
        height: 250px;
    }

    /* Modal */
    .modal-overlay {
        padding: 1rem;
    }
    .modal-content {
        padding: 2rem 1.25rem;
        border-radius: 24px;
    }
    .modal-title {
        font-size: 1.5rem;
    }
    .modal-sub {
        font-size: 0.85rem;
    }
    .modal-form .form-group input,
    .modal-form .form-group select {
        padding: 0.9rem 1.25rem;
        border-radius: 12px;
    }

    /* Card grid (about, blog) */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: var(--space-md);
    }
}

/* --- Small Mobile: 425px --- */
@media (max-width: 425px) {
    .container {
        padding: 0 0.875rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    /* Hero buttons */
    .hero-content div[style*="display: flex"] {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-content .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Stat numbers */
    .stat-item h3 {
        font-size: 1.5rem;
    }

    /* CTA */
    .cta-banner h2 {
        font-size: 1.4rem;
    }

    /* Appointment phone */
    .assistance-phone {
        font-size: 1.15rem;
        flex-wrap: wrap;
    }
    .phone-circle {
        width: 40px;
        height: 40px;
    }

    /* Trust */
    .wp-title {
        font-size: 1.75rem;
    }

    /* Testimonials */
    .t-title {
        font-size: 1.75rem;
    }
    .t-card {
        padding: 1.5rem;
    }
    .t-text {
        font-size: 0.9rem;
    }
    .t-author {
        flex-wrap: wrap;
        gap: 8px;
    }
    .t-treatment {
        margin-left: 0;
    }

    /* FAQ */
    .fq-h1 {
        font-size: 1.85rem;
    }
    .fq-badge {
        padding: 0.65rem 1rem;
    }
    .fq-badge-txt {
        font-size: 0.8rem;
    }
    .fq-q {
        padding: 1.25rem 0;
        gap: 10px;
    }
    .fq-qnum {
        min-width: 24px;
        font-size: 0.95rem;
    }
    .fq-q-text {
        font-size: 0.9rem;
    }

    /* Footer */
    .copyright {
        font-size: 0.75rem;
    }
}

/* --- Extra Small Mobile: 320px --- */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .logo {
        font-size: 1.05rem;
    }
    .nav-container .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Services cards */
    .service-card-new {
        padding: 1.5rem;
    }
    .gold-icon-circle {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .card-header-flex {
        gap: 1rem;
    }
    .service-title {
        font-size: 1.2rem;
    }
    .service-desc {
        font-size: 0.9rem;
    }

    /* Booking card */
    .booking-card-gold {
        padding: 1.5rem;
    }
    .booking-title {
        font-size: 1.25rem;
    }
    .booking-icon {
        font-size: 2.5rem;
    }

    /* Appointment */
    .appointment-content h2 {
        font-size: 1.65rem;
    }
    .booking-card {
        padding: 1.25rem;
    }

    /* Zig-zag */
    .sz-title {
        font-size: 1.4rem;
    }
    .sz-desc {
        font-size: 0.88rem;
    }
    .sz-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-banner {
        padding: 2rem 1.25rem;
    }
    .cta-banner h2 {
        font-size: 1.25rem;
    }
    .cta-banner p {
        font-size: 0.85rem;
    }

    /* Modal */
    .modal-content {
        padding: 1.75rem 1rem;
    }
    .modal-title {
        font-size: 1.35rem;
    }
}

/* ============================================================
   PREMIUM ANIMATION SYSTEM — appended, layout-safe
   ============================================================ */

/* --- Scroll Reveal Base --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger siblings */
.reveal-stagger > *:nth-child(1)  { transition-delay: 0.0s; }
.reveal-stagger > *:nth-child(2)  { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3)  { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4)  { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5)  { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6)  { transition-delay: 0.5s; }

/* Slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left.reveal-in {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-right.reveal-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.65s ease,
                transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-scale.reveal-in {
    opacity: 1;
    transform: scale(1);
}

/* --- Header Scroll Enhancement --- */
header.scrolled {
    box-shadow: 0 4px 24px rgba(107, 16, 88, 0.08);
    border-bottom-color: rgba(107, 16, 88, 0.1);
}

/* --- Nav Link Underline Animation --- */
.nav-links a {
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* --- Premium Button Enhancements --- */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.btn:active::before {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: 0s;
}

.btn-primary {
    box-shadow: 0 4px 14px rgba(107, 16, 88, 0.25);
    transition: background-color 0.3s ease,
                transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(107, 16, 88, 0.35);
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 16, 88, 0.2);
}

/* --- Card Global Enhancement --- */
.card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 16, 88, 0.12);
    border-color: rgba(107, 16, 88, 0.2);
}

/* --- Section Tag Float --- */
.section-tag {
    animation: floatTag 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-4px); }
}

/* --- Hero Image Subtle Float --- */
.hero-image {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

/* --- Experience Badge Pulse Ring --- */
.experience-badge::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 2px solid var(--primary);
    opacity: 0.2;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1);   opacity: 0.2; }
    50%       { transform: scale(1.08); opacity: 0; }
}

/* --- Stat Numbers Highlight --- */
.stat-item h3 {
    transition: color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.06);
}

/* --- Social Icons --- */
.social-icon {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                background-color 0.3s ease,
                color 0.3s ease !important;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1) !important;
}

/* --- Footer Link Hover --- */
.footer-list a {
    position: relative;
    display: inline-block;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-list a:hover {
    color: var(--white) !important;
    padding-left: 6px;
}

/* --- CTA Banner Shimmer --- */
.cta-banner {
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 40%;
    height: 220%;
    background: rgba(255,255,255,0.06);
    transform: skewX(-15deg);
    animation: ctaShimmer 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaShimmer {
    0%   { left: -60%; opacity: 0; }
    20%  { opacity: 1; }
    60%  { left: 130%; opacity: 1; }
    61%  { opacity: 0; }
    100% { left: 130%; opacity: 0; }
}

/* --- Premium Keyframes --- */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

/* --- Gradient Orb Background Effects --- */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 16, 88, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: orbDrift 8s ease-in-out infinite;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0); }
    33%       { transform: translate(20px, -15px); }
    66%       { transform: translate(-10px, 10px); }
}

/* --- Section Entrance Transitions --- */
section {
    transition: none; /* keep existing */
}

/* --- Booking Card Hover --- */
.booking-card {
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.booking-card:hover {
    box-shadow: 0 16px 40px rgba(107,16,88,0.12);
    transform: translateY(-4px);
}

/* --- WP Cards Hover Enhancement --- */
.wp-card {
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1),
                box-shadow 0.4s ease !important;
}
.wp-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 50px rgba(107,16,88,0.12) !important;
}

/* --- Testimonial Card Hover --- */
.t-card {
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1),
                box-shadow 0.4s ease,
                border-color 0.3s ease !important;
}

/* --- Reduce Motion Respect --- */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-image,
    .section-tag,
    .experience-badge::before,
    .cta-banner::after,
    .hero::after {
        animation: none !important;
    }
}

/* ============================================================
   PRODUCTION-READY GLOBAL UX LAYER
   ============================================================ */

/* --- Smooth Scroll --- */
html {
    scroll-behavior: smooth;
}

/* --- Focus Accessibility Rings --- */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* --- Skip to Main --- */
#skip-main {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    z-index: 99999;
    transition: top 0.3s ease;
    text-decoration: none;
}

#skip-main:focus {
    top: 1rem;
}

/* --- Input Error State --- */
.input-error {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
    animation: shakeInput 0.4s ease;
}

@keyframes shakeInput {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

/* --- Contact Phone / Email Links --- */
.contact-phone-link,
.contact-email-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-phone-link:hover,
.contact-email-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* --- WhatsApp Floating Button --- */
#whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.3s ease;
    animation: waPulse 2.5s ease-in-out 3s 3;
}

#whatsapp-fab:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}

#whatsapp-fab:active {
    transform: scale(0.97);
}

#whatsapp-fab svg {
    flex-shrink: 0;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35); }
    50%       { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6); transform: scale(1.04); }
}

@media (max-width: 480px) {
    #whatsapp-fab span {
        display: none;
    }
    #whatsapp-fab {
        padding: 1rem;
        border-radius: 50%;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* --- Social Icon SVG fix --- */
.social-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

/* --- Form Select Accessibility --- */
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 16, 88, 0.12);
    outline: none;
}

/* --- Smooth page transitions --- */
main {
    animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Map section full width fix --- */
.map-section iframe {
    width: 100%;
    border-radius: 20px;
    display: block;
    min-height: 380px;
}
