/* ============================================================
   Revive Physio Rehab - Main Stylesheet
   Redesigned: Clean, Modern, Engaging UI/UX
   Version: 2.0
============================================================ */

/* -----------------------------------
   CSS Custom Properties
----------------------------------- */
:root {
    --green:       #0daa63;
    --green-dark:  #098c4f;
    --green-light: #e8f9f1;
    --green-pale:  #f2fdf7;
    --ink:         #1a1f1c;
    --ink-muted:   #4a5450;
    --ink-faint:   #7a8884;
    --border:      #e4ede8;
    --bg-off:      #f7faf8;
    --bg-light:    #f0f5f2;
    --white:       #ffffff;

    --font-body:    'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;

    --shadow-sm:  0 2px 8px rgba(13,170,99,.08);
    --shadow-md:  0 8px 30px rgba(13,170,99,.12);
    --shadow-lg:  0 20px 60px rgba(13,170,99,.16);

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    --transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

/* -----------------------------------
   Reset & Base
----------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-muted);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: #c3f0d9; color: var(--ink); }

/* -----------------------------------
   Layout
----------------------------------- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Section Spacing */
.section       { padding: 96px 0; }
.section-sm    { padding: 56px 0; }
.section-dark  { background: var(--ink); }
.section-off   { background: var(--bg-off); }
.section-light { background: var(--bg-light); }
.section-green { background: var(--green); }

/* Section Headers */
.section-header       { margin-bottom: 56px; }
.section-header.center { text-align: center; }

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-light);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--ink);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--ink-faint);
    max-width: 520px;
    line-height: 1.6;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* -----------------------------------
   Buttons
----------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 4px 18px rgba(13,170,99,.35);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    box-shadow: 0 6px 24px rgba(13,170,99,.45);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-1px);
}

.btn-white {
    background: #fff;
    color: var(--green);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
    border-color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--ink-muted);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* -----------------------------------
   Top Bar
----------------------------------- */
.topbar {
    background: var(--ink);
    padding: 10px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,.65);
}

.topbar-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.65);
    transition: var(--transition);
}
.topbar-item:hover { color: #fff; }
.topbar-item i { color: var(--green); }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-social {
    display: flex;
    gap: 12px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,.12);
}
.topbar-social a {
    color: rgba(255,255,255,.5);
    font-size: 13px;
    transition: var(--transition);
}
.topbar-social a:hover { color: var(--green); }

/* -----------------------------------
   Site Header
----------------------------------- */
.site-header {
    background: #fff;
    position: relative;
    z-index: 1000;
    transition: box-shadow 0.3s, background 0.3s;
    border-bottom: 1px solid var(--border);
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    border-bottom-color: transparent;
}

.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 76px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-pulse {
    width: 42px;
    height: 42px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.logo-tagline {
    font-size: 0.68rem;
    color: var(--ink-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Navigation */
.main-nav { margin-left: auto; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--green);
    background: var(--green-light);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(13,170,99,.3);
}
.header-cta:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13,170,99,.4);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}

/* -----------------------------------
   Hero Section
----------------------------------- */
.hero {
    position: relative;
    padding: 130px 0 90px;
    background:
        linear-gradient(135deg, rgba(8,60,33,.92) 0%, rgba(13,170,99,.75) 100%),
        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1600&auto=format&fit=crop&q=80') no-repeat center / cover;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(13,170,99,.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-eyebrow i { color: #7df6b8; }

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    color: #7df6b8;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: rgba(255,255,255,.85);
    backdrop-filter: blur(6px);
}
.hero-badge i { color: #7df6b8; }

/* Floating stat card on hero */
.hero-stat-card {
    position: absolute;
    right: 60px;
    bottom: 60px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    animation: floatUp 0.8s ease both;
    animation-delay: 0.4s;
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: var(--ink-faint); margin-top: 4px; font-weight: 500; }

/* -----------------------------------
   Appointment Bar
----------------------------------- */
.appointment-bar {
    background: var(--green);
    padding: 0;
}

.appt-bar-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.appt-bar-label {
    background: var(--green-dark);
    color: #fff;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}
.appt-bar-label i { font-size: 18px; opacity: .85; }

.appt-bar-fields {
    display: flex;
    flex: 1;
    gap: 0;
}

.appt-bar-fields input {
    flex: 1;
    border: none;
    border-left: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    color: #fff;
    padding: 20px 20px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}
.appt-bar-fields input::placeholder { color: rgba(255,255,255,.65); }
.appt-bar-fields input:focus { background: rgba(255,255,255,.18); }

.appt-bar-btn {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 20px 32px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    flex-shrink: 0;
}
.appt-bar-btn:hover { background: var(--green-dark); }

/* -----------------------------------
   Service Cards
----------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), #2dd4bf);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: var(--green);
}

.service-icon-wrap i {
    font-size: 24px;
    color: var(--green);
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap i { color: #fff; }

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--ink-faint);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link::after { content: '→'; }

/* -----------------------------------
   Stats Bar
----------------------------------- */
.stats-bar {
    background: linear-gradient(135deg, #0a3d22 0%, #0c6640 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 24px 32px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-display);
}
.stat-accent { color: #7df6b8; }

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* -----------------------------------
   About Section
----------------------------------- */
.about-image-wrap { position: relative; }

.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    height: 480px;
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.about-img-badge .badge-num {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-display);
}
.about-img-badge .badge-text {
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 4px;
    font-weight: 500;
}

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }

.about-feature {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.about-feature:last-child { border-bottom: none; }

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
}

.about-feature-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}
.about-feature-body p {
    font-size: 0.85rem;
    color: var(--ink-faint);
    margin: 0;
}

.feature-badges-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.mini-badge {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
}
.mini-badge i { font-size: 28px; color: var(--green); margin-bottom: 10px; display: block; }
.mini-badge h4 { font-size: 0.88rem; color: var(--ink); margin-bottom: 4px; }
.mini-badge p { font-size: 0.78rem; color: var(--ink-faint); margin: 0; }

/* -----------------------------------
   Process Steps
----------------------------------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 2px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
    z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.step-num {
    width: 56px;
    height: 56px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--green);
    font-family: var(--font-display);
}

.process-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.83rem;
    color: var(--ink-faint);
    line-height: 1.55;
}

/* -----------------------------------
   Team Cards
----------------------------------- */
.team-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.team-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(8,50,28,.8));
    padding: 24px 16px 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; transform: translateY(0); }

.team-overlay a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.team-overlay a:hover { background: var(--green); }

.team-info { padding: 20px; }
.team-info h3 { font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.team-info .role { font-size: 0.78rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; display: block; }
.team-info p { font-size: 0.82rem; color: var(--ink-faint); line-height: 1.5; margin: 0; }

/* -----------------------------------
   Testimonials
----------------------------------- */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--green-light);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 12px;
    display: block;
}

.testimonial-card p {
    font-size: 0.93rem;
    color: var(--ink-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-stars {
    color: #f5b70a;
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.author-role { font-size: 0.78rem; color: var(--ink-faint); }

/* -----------------------------------
   CTA Strip
----------------------------------- */
.cta-strip {
    background: linear-gradient(135deg, #0a3d22 0%, var(--green) 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,96L60,112C120,128,240,160,360,165.3C480,171,600,149,720,133.3C840,117,960,107,1080,122.7C1200,139,1320,181,1380,202.7L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-strip-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 8px;
}
.cta-strip-text p {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    margin: 0;
}
.cta-strip-text strong { color: #7df6b8; }

.cta-strip-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* -----------------------------------
   Footer
----------------------------------- */
.site-footer {
    background: #111815;
    color: rgba(255,255,255,.55);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-logo i { color: var(--green); font-size: 20px; }

.footer-desc { font-size: 0.87rem; line-height: 1.65; margin-bottom: 24px; }

.footer-newsletter { margin-bottom: 24px; }
.newsletter-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.newsletter-row { display: flex; gap: 0; }
.newsletter-input {
    flex: 1;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-right: none;
    color: #fff;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    outline: none;
    transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { background: rgba(255,255,255,.12); border-color: var(--green); }
.newsletter-btn {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.newsletter-btn:hover { background: var(--green-dark); }

.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.07);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: var(--transition);
}
.social-link:hover { background: var(--green); color: #fff; }

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    color: rgba(255,255,255,.5);
    padding: 5px 0;
    transition: var(--transition);
}
.footer-links a i { font-size: 11px; color: var(--green); }
.footer-links a:hover { color: #fff; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
    align-items: flex-start;
}
.contact-icon {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,.07);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}
.footer-contact-list a { color: rgba(255,255,255,.5); }
.footer-contact-list a:hover { color: #fff; }

.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,.25);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom-links { display: flex; gap: 20px; }

/* -----------------------------------
   WhatsApp FAB
----------------------------------- */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    z-index: 9998;
    transition: var(--transition);
    animation: fabPulse 2.5s ease-in-out infinite;
}
.whatsapp-fab:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
    50%       { box-shadow: 0 6px 32px rgba(37,211,102,.7); }
}

/* -----------------------------------
   Page Header (inner pages)
----------------------------------- */
.page-banner {
    background:
        linear-gradient(135deg, rgba(8,50,28,.88), rgba(13,170,99,.7)),
        url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1400&auto=format&fit=crop') no-repeat center / cover;
    padding: 80px 0 64px;
    color: #fff;
}
.page-banner-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 8px;
}
.breadcrumb-bar { margin-top: 12px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #7df6b8; }
.breadcrumb .sep { opacity: .5; }

/* -----------------------------------
   Reveal Animations
----------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger helper */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* -----------------------------------
   Alert / Toast
----------------------------------- */
.site-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.35s ease;
    transition: opacity 0.35s;
}
@keyframes toastIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
.site-toast.success { background: var(--green); color: #fff; }
.site-toast.error   { background: #e74c3c; color: #fff; }
.site-toast i { font-size: 18px; }

/* -----------------------------------
   Utilities
----------------------------------- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-green  { color: var(--green); }
.fw-700      { font-weight: 700; }
.mb-0        { margin-bottom: 0 !important; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mt-32       { margin-top: 32px; }
.mt-48       { margin-top: 48px; }
.mb-8        { margin-bottom: 8px; }
.mb-16       { margin-bottom: 16px; }
.mb-24       { margin-bottom: 24px; }

/* Contact / form */
.form-control {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg-off);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 16px;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13,170,99,.1);
}
textarea.form-control { height: auto; resize: vertical; }
select.form-control   { height: 48px; }
.control-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
}

/* -----------------------------------
   Responsive
----------------------------------- */
@media (max-width: 1080px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .stat-item:nth-child(even) { border-right: none; }
    .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-steps::before { display: none; }
    .hero-stat-card { position: static; margin-top: 48px; display: inline-grid; }
}

@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .cta-strip-inner { flex-direction: column; text-align: center; gap: 24px; }
    .cta-strip-actions { justify-content: center; }
    .appt-bar-inner { flex-direction: column; }
    .appt-bar-label { justify-content: center; }
    .appt-bar-fields { flex-direction: column; }
    .appt-bar-fields input { border-left: none; border-top: 1px solid rgba(255,255,255,.2); }
    .about-img-badge { left: 12px; bottom: 12px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .container { padding: 0 16px; }

    /* Header mobile */
    .topbar-hide-sm { display: none; }
    .header-inner { height: 64px; gap: 12px; }
    .header-cta { display: none; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -8px 0 40px rgba(0,0,0,.15);
        padding: 80px 24px 32px;
        transition: right 0.35s ease;
        z-index: 9998;
        margin-left: 0;
    }
    .main-nav.open { right: 0; }

    .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }
    .nav-link { padding: 12px 16px; font-size: 1rem; width: 100%; border-radius: var(--radius-sm); }

    .nav-toggle { display: flex; z-index: 9999; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.4);
        z-index: 9997;
        display: none;
    }
    .nav-overlay.open { display: block; }

    .hero { padding: 90px 0 60px; }
    .hero-stat-card { display: none; }

    .grid-3 { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }

    .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.9rem; }
    .btn-group { flex-direction: column; }
    .btn-group .btn { width: 100%; justify-content: center; }
}
