/* 
  GH PhysioCare - Main Stylesheet 
  Professional, Modern, UK-focused Healthcare Design
*/
:host .ionicon path,
:host .ionicon circle,
:host .ionicon line {
    stroke: #fff !important;
    fill: none;
    /* Icons usually need fill: none if you only want the outline */
}

:root {
    /* Color Palette */
    --primary-color: #0D3B4A;
    /* Deep Teal */
    --primary-light: #165668;
    --secondary-color: #1B6B5A;
    /* Darkened for WCAG AA contrast */
    --accent-color: #8B6820;
    /* Dark Gold - passes 4.5:1 on white (#FFFFFF) */
    --accent-bright: #E3B341;
    /* Bright Gold - passes 4.5:1 on dark teal (#0D3B4A) */
    --text-color: #1A202C;
    /* Darker text for better contrast */
    --text-muted: #374151;
    /* Dark gray - passes 7.0:1 (AAA) on white */
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --section-bg: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    --border-color: #E2E8F0;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #B8892D;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-call {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.6rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Consistent logo image height across all pages */
.logo img,
.footer-logo img {
    height: 75px !important;
    width: 180px !important;
    min-height: 75px !important;
    min-width: 180px !important;
    max-height: 75px !important;
    max-width: 180px !important;
    object-fit: contain !important;
}

.footer-logo img {
    height: 90px !important;
    width: 120px !important;
}

/* Mobile Navigation Base & Logo Handling */
.nav-links.active {
    display: none;
}

/* Hero Section */
.hero {
    padding: 14rem 0 10rem;
    background: linear-gradient(rgba(13, 59, 74, 0.7), rgba(13, 59, 74, 0.7)), url('../images/hero-bg.webp') center/cover no-repeat;
    color: var(--white);
}

.hero h1,
.hero p {
    color: var(--white) !important;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    /* Force white for visibility */
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    /* High contrast white on dark hero */
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Page Hero for internal pages */
.page-hero .container {
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

section {
    padding: 3rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}


.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-bottom: 3px solid var(--accent-color);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Treatment Grid Layout */
.treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.treatment-info h2 {
    margin-bottom: 1rem;
}

/* Stats */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    color: var(--accent-bright);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
    /* Full opacity for WCAG AA on dark background */
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #6B5018;
    /* Darkened gold - WCAG AA on white bg */
}

.header-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.footer-desc {
    color: #CBD5E0;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--accent-bright);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #CBD5E0;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #CBD5E0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact li ion-icon {
    font-size: 1.3rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    padding-top: 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #A0AEC0;
}

/* Animations */
.reveal {
    opacity: 0.3;
    /* Increased initial opacity for better "out of viewport" visibility */
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header-cta .btn-call {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .treatment-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* ======================
   JOURNEY STEPS
   ====================== */
.journey {
    background: var(--bg-light);
}

.journey-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 4rem;
}

.journey-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.35s ease;
    max-width: 220px;
}

.journey-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(13, 59, 74, 0.1);
}

.journey-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.journey-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(13, 59, 74, 0.08), rgba(209, 159, 58, 0.12));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 1rem 0 1rem;
}

.journey-step h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.journey-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.journey-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    align-self: center;
    position: relative;
    margin-top: -10px;
    opacity: 0.4;
}

.journey-connector::after {
    content: '▶';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.7rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .journey-steps {
        flex-direction: column;
        align-items: center;
    }

    .journey-connector {
        width: 2px;
        height: 40px;
        flex: 0 0 40px;
        background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    }

    .journey-connector::after {
        content: '▼';
        right: 50%;
        top: auto;
        bottom: -6px;
        transform: translateX(50%);
    }

    .journey-step {
        max-width: 280px;
        width: 100%;
    }
}

/* ======================
   TESTIMONIALS SLIDER
   ====================== */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0D3B4A 0%, #1a5c73 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(209, 159, 58, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--white) !important;
}

.testimonials .section-title p {
    opacity: 0.7;
}

.testimonial-wrapper {
    position: relative;
    margin-top: 3rem;
}

.testimonial-track-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
    flex: 0 0 588px !important;
    /* Fixed width matching JS performance calc */
    width: 588px !important;
}

@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 calc(100vw - 64px) !important;
        width: calc(100vw - 64px) !important;
    }
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(209, 159, 58, 0.4);
    transform: translateY(-6px);
}

.testimonial-card.active-card {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(209, 159, 58, 0.5);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #b8892d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 14px;
    /* Increased size */
    height: 14px;
    margin: 0 8px;
    /* Added spacing */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    padding: 2px;
}

.testimonial-dot.active {
    background: var(--accent-color);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 640px) {
    .testimonial-card {
        min-width: 100%;
    }
}


/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* ===== STICKY CTA BUTTON ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #D19F3A 0%, #B8892D 100%);
    padding: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky-cta.hidden {
    display: none;
}

.sticky-cta a {
    color: white;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-cta .whatsapp-btn {
    background: #25D366;
}

.sticky-cta .whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.05);
}

.sticky-cta .book-btn {
    background: #0D3B4A;
}

.sticky-cta .book-btn:hover {
    background: #1a5c73;
    transform: scale(1.05);
}

/* ===== TRUST SIGNALS BANNER ===== */
.trust-banner {
    background: linear-gradient(90deg, #0D3B4A 0%, #165b73 100%);
    padding: 1.2rem 0;
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(13, 59, 74, 0.15);
    position: relative;
    z-index: 10;
    border-bottom: 2px solid rgba(209, 159, 58, 0.3);
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(209, 159, 58, 0.4);
    box-shadow: 0 4px 15px rgba(209, 159, 58, 0.1);
}

.trust-item ion-icon {
    color: #D19F3A;
    font-size: 1.4rem;
    background: rgba(209, 159, 58, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
}

/* ===== LEAD FORM MODAL ===== */
.lead-form-modal {
    display: none;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lead-form-modal.active {
    display: flex;
}

.lead-form-content {
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    background: white;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lead-form-header {
    margin-bottom: 1.5rem;
}

.lead-form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #0D3B4A;
}

.lead-form-header p {
    color: #718096;
    font-size: 0.95rem;
}

.lead-form-group {
    margin-bottom: 1.2rem;
}

.lead-form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #2D3748;
    font-size: 0.9rem;
}

.lead-form-group input,
.lead-form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.lead-form-group input:focus,
.lead-form-group select:focus {
    outline: none;
    border-color: #D19F3A;
    box-shadow: 0 0 0 3px rgba(209, 159, 58, 0.1);
}

.lead-form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #D19F3A 0%, #B8892D 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.lead-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(209, 159, 58, 0.3);
}

.form-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
}

/* ===== HERO IMPROVEMENTS ===== */
.hero-badge {
    display: inline-block;
    background: rgba(209, 159, 58, 0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(209, 159, 58, 0.5);
}


.cta-emphasis {
    color: #D19F3A;
    font-weight: 700;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(209, 159, 58, 0.1), rgba(13, 59, 74, 0.05));
    border-left: 4px solid #D19F3A;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #0D3B4A;
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: #2D3748;
}

/* ===== REVIEW SECTION (Premium Redesign) ===== */
.reviews-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    border-top: none;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(13, 59, 74, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(209, 159, 58, 0.1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(13, 59, 74, 0.15);
    border-color: rgba(209, 159, 58, 0.3);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #D19F3A, #B8892D);
}

.review-rating {
    font-size: 1.5rem;
    color: #D19F3A;
    margin-bottom: 0.8rem;
    letter-spacing: 3px;
}

.review-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0D3B4A;
    margin: 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.review-label {
    color: #4A5568;
    font-size: 1rem;
    font-weight: 500;
}

/* ===== CERTIFICATION BADGES (Premium Redesign) ===== */
.certifications {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3.5rem 0;
    background: #0D3B4A;
    border-radius: 20px;
    margin: 0 2rem 5rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(13, 59, 74, 0.25);
    border: none;
}

.cert-badge {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cert-badge ion-icon {
    font-size: 2.8rem;
    color: #D19F3A;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cert-badge:hover ion-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(209, 159, 58, 0.2);
}

@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certifications {
        margin: 0 1rem 4rem 1rem;
        padding: 2.5rem 1rem;
        gap: 1.5rem;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2rem;
    justify-content: center;
}

.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust ion-icon {
    color: #D19F3A;
    font-size: 1.1rem;
}

/* Floating UI - Pulsing Icons Only */
.floating-container {
    position: fixed;
    bottom: 30px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    pointer-events: none;
}

.floating-btn {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: white;
}

.floating-btn.book {
    background: #0D3B4A;
    animation: floating-pulse-dark 2s infinite;
}

.floating-btn.whatsapp {
    background: #25D366;
    animation: floating-pulse-green 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.floating-btn ion-icon {
    font-size: 1.8rem;
}

@keyframes floating-pulse-dark {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 59, 74, 0.5);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(13, 59, 74, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 59, 74, 0);
        transform: scale(1);
    }
}

@keyframes floating-pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* Adjust Back to Top */
.back-to-top {
    bottom: 110px !important;
}

@media (max-width: 768px) {
    .floating-container {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn ion-icon {
        font-size: 1.5rem;
    }
}

/* Conditions Grid (Treatments Page) */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.condition-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.condition-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.condition-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.condition-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 59, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.condition-card-header h3 {
    font-size: 1.35rem;
    margin: 0;
}

.condition-preview {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.condition-full {
    display: none;
    /* Controlled by JS toggle */
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.condition-full.open {
    display: block !important;
}

.condition-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    white-space: nowrap;
}

.read-more-btn ion-icon {
    transition: var(--transition);
}

.read-more-btn.open ion-icon {
    transform: rotate(180deg);
}

/* Careers/Application Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 59, 74, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem;
    }
}

/* Missing Page-Specific Styles (Rebuilt) */

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 59, 74, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 2.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Specialty Tags (About Page) */
.specialty-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.specialty-tag {
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.specialty-tag:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.specialty-tag ion-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Location Pages Hero & Grid */
.location-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(rgba(13, 59, 74, 0.8), rgba(13, 59, 74, 0.8)), url('../images/hero-bg.webp') center/cover no-repeat;
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.location-info h2 {
    margin-bottom: 1.5rem;
}

.services-list {
    display: grid;
    gap: 1.2rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.service-item ion-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Job Cards (Careers) */
.job-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title-box h2 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
}

.job-ref {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.job-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-description ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.job-description li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-info-block {
    background: var(--bg-light);
}

.contact-form-block {
    padding: 3.5rem;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Contact Form & Maps (Rebuilt) */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-color);
    background: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(209, 159, 58, 0.1);
}

/* Map Section */
.map-section {
    margin-top: 6rem;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map-grid iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
}

/* Lead Form Modal (Rebuilt) */
.lead-form-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 59, 74, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lead-form-modal.active {
    opacity: 1;
    visibility: visible;
}

.lead-form-content {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: var(--transition);
}

.lead-form-modal.active .lead-form-content {
    transform: translateY(0);
}

.form-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.form-close:hover {
    background: var(--accent-color);
    color: var(--white);
}

.lead-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lead-form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.lead-form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.lead-form-group {
    margin-bottom: 1.5rem;
}

.lead-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.lead-form-group input,
.lead-form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 1rem;
    background: var(--bg-light);
}

.lead-form-group input:focus,
.lead-form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
}

.lead-form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-form-submit:hover {
    background: #B8892D;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(209, 159, 58, 0.3);
}

@media (max-width: 640px) {
    .lead-form-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Team Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.team-img-wrapper {
    position: relative;
    padding-top: 100%;
    /* Square aspect ratio */
    overflow: hidden;
}

.team-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.team-role {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social-link {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Global Toast Notification */
#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #0D3B4A;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: none;
    font-weight: 600;
    white-space: nowrap;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 20px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Compact Header Styles */
.nav-links {
    gap: 1.25rem !important;
}

.nav-links a {
    font-size: 0.9rem !important;
    white-space: nowrap;
}

.header-cta .btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
}

.btn-call svg {
    width: 16px !important;
    height: 16px !important;
}

.header-container {
    padding: 0 1rem;
    max-width: 1300px;
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 0.8rem !important;
    }

    .header-cta {
        gap: 0.5rem !important;
    }
}

.location-seo-section {
    padding: 6rem 0;
    background: #fff;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.seo-box {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.seo-box h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.seo-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
}

/* Final Mobile Responsiveness & Polish */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        padding: 3rem 2rem;
        z-index: 9999;
        text-align: center;
        gap: 2rem !important;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active a {
        font-size: 1.25rem !important;
        font-weight: 700;
        color: var(--primary-color);
    }

    .hero {
        padding: 10rem 0 6rem !important;
    }

    .hero h1 {
        font-size: 2.25rem !important;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .section-title h2 {
        font-size: 1.75rem !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .condition-card {
        padding: 1.5rem !important;
    }

    .team-grid {
        gap: 1.5rem !important;
    }

    .contact-form-block {
        padding: 2rem !important;
    }
}

/* Fix for gallery item aspect ratio on very small screens */
@media (max-width: 480px) {
    .logo img {
        width: 150px !important;
        height: 62px !important;
    }

    .header-cta .btn {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
}

.treatments-detail-section {
    padding: 7rem 0;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.treatment-card {
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-left: 4px solid var(--accent-color);
}

.treatment-card:hover {
    transform: translateY(-6px);
}

.treatment-card h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.treatment-card p {
    line-height: 1.7;
    color: #555;
}

/* CTA */
.cta-center {
    text-align: center;
    margin-top: 4rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .treatment-grid {
        grid-template-columns: 1fr;
    }
}