/* =====================================================
   RISEUP PHYSIOTHERAPY — PREMIUM CSS DESIGN SYSTEM
   Clean, deduplicated, fully fixed
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

/* =====================================================
   1. DESIGN TOKENS
   ===================================================== */
:root {
    --primary:          #064e3b;
    --primary-light:    #10b981;
    --primary-soft:     #ecfdf5;
    --secondary:        #0f172a;
    --accent:           #f59e0b;

    --bg-main:          #fcfcfd;
    --bg-white:         #ffffff;
    --text-main:        #1e293b;
    --text-muted:       #64748b;

    --section-padding:  120px 8%;
    --container-width:  1300px;

    --transition:       all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm:        0 4px 10px rgba(0,0,0,0.05);
    --shadow-md:        0 20px 40px rgba(0,0,0,0.08);
    --shadow-lg:        0 35px 70px rgba(0,0,0,0.12);
    --glass:            rgba(255,255,255,0.72);
}

/* =====================================================
   2. DARK MODE VARIABLES
   ===================================================== */
body.dark-mode {
    --primary:       #34d399;
    --primary-light: #6ee7b7;
    --primary-soft:  rgba(52,211,153,0.12);
    --secondary:     #f8fafc;
    --bg-main:       #020617;
    --bg-white:      #0f172a;
    --text-main:     #f1f5f9;
    --text-muted:    #94a3b8;
    --glass:         rgba(2,6,23,0.72);
}

/* =====================================================
   3. DARK MODE COMPONENT OVERRIDES
   ===================================================== */

/* Header */
body.dark-mode header {
    background: rgba(2,6,23,0.82);
    border-bottom-color: rgba(255,255,255,0.08);
}
body.dark-mode header.scrolled {
    background: rgba(2,6,23,0.97);
}

/* Nav */
body.dark-mode nav {
    background: #0f172a;
}
body.dark-mode nav a { color: var(--text-main); }

/* Cards — NOT condition-card which has its own photo background */
body.dark-mode .service-card,
body.dark-mode .process-step,
body.dark-mode .faq-item,
body.dark-mode .team-card,
body.dark-mode .testimonial-card,
body.dark-mode .outlet-card:not(.outlet-featured) {
    background: #1e293b;
    border-color: rgba(255,255,255,0.07);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Condition cards: keep the hero photo, just boost the dark overlay */
body.dark-mode .condition-card {
    border-color: rgba(0,255,170,0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
body.dark-mode .condition-card .card-overlay {
    background: linear-gradient(
        to top,
        rgba(2,6,23,0.97) 10%,
        rgba(2,6,23,0.65) 50%,
        rgba(2,6,23,0.25) 100%
    );
}

/* Booking / Checker panels */
body.dark-mode .booking-panel,
body.dark-mode .checker-panel {
    background: #1e293b !important;
}
body.dark-mode .booking-panel input,
body.dark-mode .booking-panel select,
body.dark-mode .checker-panel select {
    background: #0f172a !important;
    color: var(--text-main) !important;
    border-color: rgba(255,255,255,0.15) !important;
}
body.dark-mode .booking-panel input::placeholder { color: #64748b; }
body.dark-mode #aiResult {
    background: #0f172a !important;
    color: var(--text-main) !important;
    border-color: rgba(255,255,255,0.1) !important;
}

/* Sections with light backgrounds */
body.dark-mode .services-container,
body.dark-mode #testimonials,
body.dark-mode #booking-checker { background: #020617 !important; }

/* Stats */
body.dark-mode .stats { background: #0f172a; }

/* Footer */
body.dark-mode footer {
    background: #0f172a;
    border-top-color: rgba(255,255,255,0.07);
}
body.dark-mode .footer-bottom {
    border-top-color: rgba(255,255,255,0.07);
}

/* Outlets */
body.dark-mode #outlets {
    background: linear-gradient(135deg,#0a1628,#0d1f1a) !important;
}
body.dark-mode .outlet-card:not(.outlet-featured) h3 { color: var(--text-main); }
body.dark-mode .outlet-tags span {
    background: rgba(52,211,153,0.12);
    color: var(--primary-light);
    border-color: rgba(52,211,153,0.2);
}
body.dark-mode .outlet-badge { background: rgba(52,211,153,0.15); }
body.dark-mode .outlet-icon-wrap { background: rgba(52,211,153,0.1); }

/* FAQ */
body.dark-mode .faq-question { color: var(--text-main); }
body.dark-mode .faq-answer   { color: var(--text-muted); }

/* Hero */
body.dark-mode .hero {
    background-image: linear-gradient(135deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.88) 100%), url('riseup_hero_image_1776606265798.png');
}


/* Service header */
body.dark-mode .service-header-top { background: #1e293b; }

/* Toggle */
body.dark-mode .dark-mode-toggle { color: var(--text-main); }
body.dark-mode .mobile-menu-toggle { color: var(--text-main); }

/* Map wrapper */
body.dark-mode .map-link-wrapper { border-color: #1e293b; }

/* Home visits section */
body.dark-mode #home-visits { background: #0f172a !important; }

/* =====================================================
   4. RESET
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

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

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

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

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

/* =====================================================
   5. HEADER & NAVIGATION
   ===================================================== */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 110px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

header.scrolled {
    height: 82px;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
}

.logo { display: flex; align-items: center; }

.header-logo {
    height: 88px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

header.scrolled .header-logo { height: 58px; }

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 26px;
}

nav a {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--secondary);
}

nav a:hover { color: var(--primary); }

.dark-mode-toggle,
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.dark-mode-toggle:hover,
.mobile-menu-toggle:hover { background: rgba(0,0,0,0.05); }

.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-menu-toggle { display: none; }


/* =====================================================
   6. CTA BUTTON
   ===================================================== */
.cta-button {
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 16px 34px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(6,78,59,0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(6,78,59,0.35);
    filter: brightness(1.08);
}

/* =====================================================
   7. HERO — NO IMAGE CROPPING
   ===================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 170px 8% 100px;
    min-height: auto;
    height: auto;
    position: relative;
    overflow: visible;
    background-image: linear-gradient(135deg, rgba(6, 78, 59, 0.94) 0%, rgba(15, 23, 42, 0.85) 100%), url('riseup_hero_image_1776606265798.png');
    background-size: cover;
    background-position: center right;
    color: white;
}



.hero-content {
    flex: 1.1;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -2px;
    color: #ffffff;
}

.highlight-sub {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.advisory-btn {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25) !important;
}

.advisory-btn:hover {
    background: #20ba5a !important;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35) !important;
}

.advisory-btn svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.hero-booking-card {
    flex: 0.9;
    max-width: 480px;
    width: 100%;
    background: var(--bg-white);
    padding: 36px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
    z-index: 5;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .hero-booking-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.08);
}

.hero-booking-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    text-align: center;
}

body.dark-mode .hero-booking-card h3 {
    color: #ffffff;
}

.hero-booking-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.45;
}

.hero-booking-card .booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-booking-card .booking-form input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--bg-white);
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

body.dark-mode .hero-booking-card .booking-form input {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-booking-card .booking-form input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.hero-booking-card .form-consent {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-top: 15px;
    text-align: center;
}

/* =====================================================
   8. GENERAL SECTIONS
   ===================================================== */
section { padding: var(--section-padding); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.section-header p { color: var(--text-muted); }

/* =====================================================
   9. CONDITIONS GRID
   ===================================================== */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    max-width: var(--container-width);
    margin: 0 auto;
}



/* =====================================================
   10. SERVICES GRID
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover img { transform: scale(1.06); }

.service-header-top {
    padding: 26px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-white);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.service-icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(6,78,59,0.07);
}

/* =====================================================
   11. ABOUT SECTION
   ===================================================== */
#about > div {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =====================================================
   12. HOME VISITS SECTION
   ===================================================== */
#home-visits > div {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =====================================================
   13. PROCESS / HOW IT WORKS
   ===================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.process-step {
    position: relative;
    border-radius: 28px;
    padding: 50px 30px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: -1;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-step:hover::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(6, 78, 59, 0.9) 100%);
}

.process-step h3 {
    margin: 15px 0 10px;
    font-size: 1.35rem;
    color: #ffffff !important;
    font-weight: 700;
}

.process-step p {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-number {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 10px 22px rgba(6,78,59,0.22);
}

/* =====================================================
   14. TEAM SECTION — NO CROPPING
   ===================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.team-card {
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.team-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.team-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-info h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.team-info span {
    color: var(--primary-light);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================================================
   15. MAP — CLICKABLE OVERLAY
   ===================================================== */
.map-link-wrapper {
    display: block;
    max-width: var(--container-width);
    margin: 0 auto;
    text-decoration: none;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-white);
    cursor: pointer;
}

.map-link-wrapper .map-container {
    position: relative;
    height: 450px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

/* Standalone map-container (not inside link wrapper) */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-white);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,78,59,0);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    transition: var(--transition);
}

.map-link-wrapper:hover .map-overlay { background: rgba(6,78,59,0.22); }

.map-overlay-content {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(6,78,59,0.4);
    transform: translateY(18px);
    opacity: 0;
    transition: var(--transition);
}

.map-link-wrapper:hover .map-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

/* =====================================================
   16. OUR OUTLETS
   ===================================================== */
.outlets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.outlet-card {
    background: var(--bg-white);
    border-radius: 26px;
    padding: 36px 30px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 13px;
    z-index: 1;
}

.outlet-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

/* Landmark ghost watermark backdrop */
.outlet-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--outlet-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.22; /* Increased opacity to make it beautifully viewable */
    z-index: -1;
    transition: var(--transition);
    filter: grayscale(100%);
    pointer-events: none;
}

.outlet-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(6,78,59,0.1); }
.outlet-card:hover::before { opacity: 1; }

/* Interactive Hover state for watermark: zoom, rotate, and fade to full-color */
.outlet-card:hover::after {
    transform: scale(1.08) rotate(1deg);
    opacity: 0.45; /* Elevated opacity so it vividly comes to life on hover */
    filter: grayscale(0%);
}

/* Featured main branch */
.outlet-featured {
    background: linear-gradient(145deg, #064e3b, #065f46);
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(6,78,59,0.35);
    transform: scale(1.02);
}

.outlet-featured::after {
    opacity: 0.14; /* slightly more visible on the dark green gradient */
    filter: grayscale(100%) brightness(1.3);
}

.outlet-featured:hover { transform: scale(1.02) translateY(-12px); box-shadow: 0 40px 70px rgba(6,78,59,0.48); }
.outlet-featured::before { background: linear-gradient(90deg,#6ee7b7,#34d399); opacity: 1; }
.outlet-featured:hover::after {
    transform: scale(1.08) rotate(1deg);
    opacity: 0.26;
    filter: grayscale(0%) brightness(1.2);
}

/* Dark Mode Watermark Override */
body.dark-mode .outlet-card:not(.outlet-featured)::after {
    opacity: 0.14; /* Increased from 0.05 for enhanced dark mode visibility */
    filter: grayscale(100%) brightness(0.6);
}

body.dark-mode .outlet-card:not(.outlet-featured):hover::after {
    opacity: 0.28; /* Perfect contrast for hovered card in dark mode */
}

.outlet-featured h3,
.outlet-featured .outlet-desc { color: white !important; }

.outlet-icon-wrap {
    width: 54px; height: 54px;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.outlet-featured .outlet-icon-wrap { background: rgba(255,255,255,0.15); color: white; }
.outlet-card:hover .outlet-icon-wrap { transform: rotate(6deg) scale(1.1); }

.outlet-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content;
}

.outlet-badge-main { background: rgba(255,255,255,0.2); color: #d1fae5; }

.outlet-card h3 { font-size: 1.55rem; color: var(--secondary); margin: 0; font-weight: 700; }

.outlet-area {
    font-size: 0.86rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.outlet-featured .outlet-area { color: #6ee7b7 !important; }

.outlet-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.outlet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.outlet-tags span {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 100px;
    background: #f0fdf4;
    color: var(--primary);
    border: 1px solid rgba(6,78,59,0.1);
}

.outlet-featured .outlet-tags span {
    background: rgba(255,255,255,0.15);
    color: #d1fae5;
    border-color: rgba(255,255,255,0.2);
}

.outlet-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #10b981;
}

.outlet-featured .outlet-status { color: #6ee7b7; }

.status-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
}

.outlet-featured .status-dot { background: #6ee7b7; }

@keyframes pulse-green {
    0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.outlet-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-weight: 600;
    font-size: 0.87rem;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: var(--transition);
    width: fit-content;
}

.outlet-directions-btn:hover { background: rgba(255,255,255,0.32); transform: translateX(4px); }

/* =====================================================
   17. TESTIMONIALS
   ===================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.testimonial-card img {
    width: 82px; height: 82px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-light);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.testimonial-card h4 { color: var(--primary); font-size: 1.05rem; margin-bottom: 4px; }
.testimonial-card span { color: var(--text-muted); font-size: 0.82rem; }

/* =====================================================
   18. BOOKING + AI CHECKER — SIDE BY SIDE ON DESKTOP
   ===================================================== */
#booking-checker {
    background: var(--bg-white);
}

.booking-checker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: start;
}

/* Panel shared base */
.booking-panel,
.checker-panel {
    background: var(--bg-main);
    border-radius: 30px;
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Booking form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--bg-white);
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

/* Checker panel */
.checker-panel { text-align: center; }

.checker-panel select {
    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--bg-white);
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    cursor: pointer;
    margin-bottom: 18px;
    transition: var(--transition);
}

.checker-panel select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

/* =====================================================
   19. FAQ
   ===================================================== */
.faq-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.faq-categories-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: 18px;
    background: var(--bg-white);
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.faq-category-btn i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-category-btn:hover {
    background: var(--primary-soft);
    color: var(--primary);
    transform: translateX(5px);
}

.faq-category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(6,78,59,0.15);
}

.faq-category-btn.active i {
    color: white;
}

.faq-panes {
    position: relative;
}

.faq-content-pane {
    display: none;
    flex-direction: column;
}

.faq-content-pane.active {
    display: flex;
    animation: faq-fade-in 0.4s ease both;
}

@keyframes faq-fade-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 16px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(6,78,59,0.12);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 12px 30px rgba(16,185,129,0.08);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    cursor: pointer;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: none; /* prevent SVG icons eating clicks */
}

.faq-question svg,
.faq-question i {
    pointer-events: none;
}

.faq-question-text i {
    color: var(--primary-light);
}

.faq-question i.chevron-icon {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-question i.chevron-icon {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px 0 74px; /* Align answer with question text */
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.98rem;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 350px;
    padding-bottom: 26px;
}

/* Dark Mode FAQ Overrides */
body.dark-mode .faq-category-btn {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
    color: var(--text-muted);
}

body.dark-mode .faq-category-btn:hover {
    background: rgba(52,211,153,0.12);
    color: var(--primary-light);
}

body.dark-mode .faq-category-btn.active {
    background: var(--primary);
    color: #020617;
    border-color: var(--primary);
}

body.dark-mode .faq-category-btn.active i {
    color: #020617;
}

body.dark-mode .faq-item {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .faq-item:hover {
    border-color: rgba(52,211,153,0.15);
}

body.dark-mode .faq-item.active {
    border-color: var(--primary-light);
}

body.dark-mode .faq-question {
    color: var(--text-main);
}

body.dark-mode .faq-answer {
    color: var(--text-muted);
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-categories-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none; /* Hide scrollbars */
    }
    .faq-categories-sidebar::-webkit-scrollbar {
        display: none;
    }
    .faq-category-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 20px 0 20px;
    }
    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
}

/* =====================================================
   20. STATS
   ===================================================== */
.stats {
    position: relative;
    background: var(--secondary);
    padding: 80px 5%;
    overflow: hidden;
}

.stats-bg-artwork {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 220px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

body.dark-mode .stats-bg-artwork {
    opacity: 0.05;
    color: #ffffff;
}

.stats-bg-artwork svg {
    width: 100%;
    height: auto;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.stat-item { padding: 20px; }

.stat-item h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255,255,255,0.88);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   21. FOOTER
   ===================================================== */
footer {
    background: var(--bg-white);
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: var(--container-width);
    margin: 0 auto 50px;
}

.footer-links h4 { margin-bottom: 22px; font-size: 1.05rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =====================================================
   22. REVEAL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    filter: blur(4px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                transform 0.9s cubic-bezier(0.16,1,0.3,1),
                filter 0.9s cubic-bezier(0.16,1,0.3,1);
    will-change: transform, opacity;
}

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

.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }
.reveal-5 { transition-delay: 0.40s; }
.reveal-6 { transition-delay: 0.48s; }

/* =====================================================
   23. WHATSAPP FLOAT
   ===================================================== */
@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float:hover { transform: scale(1.1) rotate(5deg) !important; }

/* =====================================================
   24. SPINNER
   ===================================================== */
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================================================
   25. RESPONSIVE — TABLET (≤1024px)
   ===================================================== */
@media (max-width: 1024px) {
    .booking-checker-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* =====================================================
   26. RESPONSIVE — MOBILE MENU + LAYOUT (≤968px)
   ===================================================== */
@media (max-width: 968px) {
    :root { --section-padding: 80px 5%; }

    .mobile-menu-toggle { display: flex; }

    nav {
        position: fixed;
        top: 0; right: -100%;
        width: 82%;
        height: 100vh;
        background: var(--bg-white);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: 0.48s cubic-bezier(0.16,1,0.3,1);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

    nav.active { right: 0; }

    nav ul {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    nav a { font-size: 1.3rem; }

    header nav > .cta-button { display: none; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        padding-bottom: 60px;
        gap: 40px;
        background-position: center center;
    }

    .hero-content { order: 1; }
    .hero-booking-card { order: 2; margin: 0 auto; }

    .hero h1 { font-size: 3rem; letter-spacing: -1px; }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns { justify-content: center; }

    #about > div,
    #home-visits > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    #about ul { display: inline-block; text-align: left; }

    .map-link-wrapper .map-container,
    .map-container { height: 320px; }

    .outlet-featured { transform: scale(1); }
    .outlet-featured:hover { transform: translateY(-12px); }

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

/* =====================================================
   27. RESPONSIVE — MOBILE (≤768px)
   ===================================================== */
@media (max-width: 768px) {
    header { height: 88px; padding: 0 18px; }
    .header-logo { height: 66px; }
    header.scrolled .header-logo { height: 52px; }
    header.scrolled { height: 72px; }

    .hero {
        padding: 115px 16px 50px;
        gap: 28px;
    }

    .hero h1 { font-size: 2.5rem; line-height: 1.18; }
    .hero p  { font-size: 1rem; }

    .hero-booking-card {
        width: 100%;
        max-width: 100%;
        padding: 24px;
        border-radius: 20px;
    }

    .hero-btns { flex-direction: column; width: 100%; }
    .cta-button { width: 100%; justify-content: center; }

    .services-grid,
    .conditions-grid,
    .team-grid,
    .process-grid,
    .testimonials-grid,
    .outlets-grid {
        grid-template-columns: 1fr;
    }

    .service-card img { height: auto; }
    .team-img { height: 320px; }

    .section-header h2 { font-size: 2rem; }

    .stat-item h3 { font-size: 2.4rem; }

    .booking-panel, .checker-panel { padding: 30px 22px; }
}

/* =====================================================
   28. RESPONSIVE — SMALL PHONES (≤430px)
   ===================================================== */
@media (max-width: 430px) {
    header { height: 80px; padding: 0 14px; }
    .header-logo { height: 58px; }

    .hero {
        padding-top: 95px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero h1   { font-size: 2rem; }
    .hero p    { font-size: 0.95rem; line-height: 1.7; }

    .hero-booking-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .condition-card,
    .process-step,
    .testimonial-card { padding: 26px 20px; }

    .team-info { padding: 22px; }
    .team-info h4 { font-size: 1.35rem; }
    .team-img { height: 280px; }

    .stats { padding: 55px 14px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
    .stat-item h3 { font-size: 2rem; }
    .stat-item p  { font-size: 0.85rem; }

    .booking-panel, .checker-panel { padding: 24px 16px; border-radius: 22px; }

    .outlets-grid { grid-template-columns: 1fr; }
    .outlet-featured { transform: scale(1); }
}

/* =====================================================
   29. HERO STATS BAR (TRUST BAR BELOW HERO)
   ===================================================== */
.hero-stats-bar {
    background: #043e2e;
    padding: 24px 8%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 10;
}

body.dark-mode .hero-stats-bar {
    background: #02251b;
    border-bottom-color: rgba(255, 255, 255, 0.03);
}

.stats-bar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.stats-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
}

.stats-bar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.2px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    transition: var(--transition);
}

.stats-bar-item:hover .stats-bar-icon {
    transform: scale(1.08);
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.05);
}

.stats-bar-icon svg {
    width: 22px;
    height: 22px;
}

.stats-bar-text h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.stats-bar-text p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.stats-bar-divider {
    width: 1.5px;
    height: 42px;
    background: rgba(255, 255, 255, 0.16);
}

.stats-bar-cta {
    border: none;
    background: #0ea669;
    color: white;
    padding: 15px 30px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(14, 166, 105, 0.18);
}

.stats-bar-cta:hover {
    background: #0d965d;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 166, 105, 0.28);
}

.stats-bar-cta svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .stats-bar-container {
        gap: 16px;
    }
    .stats-bar-text h4 {
        font-size: 1.4rem;
    }
    .stats-bar-text p {
        font-size: 0.76rem;
    }
}

@media (max-width: 1024px) {
    .stats-bar-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 26px 40px;
    }
    .stats-bar-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-stats-bar {
        padding: 28px 5%;
    }
    .stats-bar-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
    .stats-bar-item {
        justify-content: flex-start;
    }
    .stats-bar-cta {
        grid-column: span 2;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .stats-bar-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .stats-bar-cta {
        grid-column: span 1;
    }
    .stats-bar-item {
        padding: 6px 0;
        border-bottom: 1px dashed rgba(255,255,255,0.08);
    }
    .stats-bar-item:last-of-type {
        border-bottom: none;
    }
}

/* =====================================================
   30. HERO FEATURES BAR (TRUST ICONS BELOW HERO STATS)
   ===================================================== */
.hero-features-bar {
    background: var(--bg-white);
    padding: 30px 8%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .hero-features-bar {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.features-bar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-bar-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

body.dark-mode .feature-bar-icon {
    color: var(--primary-light);
}

.feature-bar-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.feature-bar-item:hover .feature-bar-icon {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.feature-bar-text {
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.feature-bar-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin: 0;
}

body.dark-mode .feature-bar-text h4 {
    color: var(--text-main);
}

.feature-bar-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 4px 0 0;
    font-weight: 500;
}

/* Responsive adjustments for features bar */
@media (max-width: 768px) {
    .hero-features-bar {
        padding: 30px 5%;
    }
    .features-bar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    .feature-bar-icon svg {
        width: 40px;
        height: 40px;
    }
    .feature-bar-text h4 {
        font-size: 1.15rem;
    }
    .feature-bar-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 430px) {
    .features-bar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }
}

/* =====================================================
   31. HOME VISITS DETAILS GRID & ADVANCED STYLE
   ===================================================== */
.premium-home-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(6, 78, 59, 0.08);
    box-shadow: 0 4px 10px rgba(6, 78, 59, 0.04);
}

body.dark-mode .premium-home-badge {
    background: rgba(52, 211, 153, 0.1);
    color: var(--primary-light);
    border-color: rgba(52, 211, 153, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.premium-home-badge i {
    width: 14px;
    height: 14px;
    color: inherit;
}

.home-visits-list {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
}

.home-visits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 14px;
    background: var(--bg-main);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

body.dark-mode .home-visits-list li {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.home-visits-list li:hover {
    transform: translateY(-3px);
    background: var(--bg-white);
    border-color: rgba(6, 78, 59, 0.1);
    box-shadow: var(--shadow-md);
}

body.dark-mode .home-visits-list li:hover {
    background: #273549;
    border-color: rgba(52, 211, 153, 0.15);
}

.home-visits-list li i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-light);
}

.home-visits-list li.full-width {
    grid-column: span 2;
}

/* Layered floating badges */
.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(6, 78, 59, 0.03);
    padding: 16px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.dark-mode .floating-badge {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.75) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.45), 0 5px 15px rgba(52, 211, 153, 0.05);
}

.floating-badge:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.16), 0 5px 25px rgba(6, 78, 59, 0.06);
    border-color: rgba(6, 78, 59, 0.15);
}

body.dark-mode .floating-badge:hover {
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.55), 0 5px 25px rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.25);
}

.badge-top-left {
    top: 40px;
    left: -35px;
}

.badge-bottom-right {
    bottom: 40px;
    right: -35px;
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.2);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.badge-icon.star-icon {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    box-shadow: 0 6px 14px rgba(245, 158, 11, 0.2);
}

.floating-badge:hover .badge-icon {
    transform: scale(1.12) rotate(6deg);
}

.badge-icon i {
    width: 20px;
    height: 20px;
}

.badge-content h5 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0;
    letter-spacing: 0.2px;
}

body.dark-mode .badge-content h5 {
    color: white;
}

.badge-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 3px 0 0;
    font-weight: 600;
}

/* =====================================================
   HOME VISIT DECORATIONS & IMAGE WRAPPER
   ===================================================== */
.home-visit-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

body.dark-mode .home-visit-aura {
    background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 65%);
}

.home-visit-dots {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 1;
    pointer-events: none;
    animation: float-dots 6s ease-in-out infinite alternate;
}

@keyframes float-dots {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(12px) rotate(3deg); }
}

.premium-image-wrapper {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.22);
    border: 8px solid var(--bg-white);
    position: relative;
    width: 100%;
    z-index: 2;
    background: var(--bg-white);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.dark-mode .premium-image-wrapper {
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.55), 0 0 30px rgba(52, 211, 153, 0.05);
    border-color: #1e293b;
    background: #1e293b;
}

.home-visit-media:hover .premium-image-wrapper {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.28);
}

body.dark-mode .home-visit-media:hover .premium-image-wrapper {
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.65), 0 0 40px rgba(52, 211, 153, 0.1);
}

.home-visit-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-visit-media:hover .home-visit-img {
    transform: scale(1.03);
}

.image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

.home-visit-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.home-visit-header-mobile {
    display: none !important;
}

.home-visit-header-desktop {
    display: block;
}

/* Media Queries for Advanced Home Visit Grid */
@media (max-width: 1200px) {
    .badge-top-left {
        left: 10px;
    }
    .badge-bottom-right {
        right: 10px;
    }
}

@media (max-width: 968px) {
    #home-visits > div {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    .home-visit-media {
        max-width: 580px;
        margin: 0 auto;
    }
    .home-visit-buttons {
        justify-content: center;
        gap: 15px;
        margin-top: 35px;
    }
    .home-visit-header-mobile {
        display: block !important;
        text-align: center;
        margin-bottom: 40px;
        width: 100%;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 5;
        padding: 0 20px;
    }
    .home-visit-header-desktop {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .home-visits-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .home-visits-list li.full-width {
        grid-column: span 1;
    }
    .badge-top-left {
        position: absolute !important;
        top: 20px !important;
        left: -15px !important;
        transform: scale(0.8) !important;
    }
    .badge-bottom-right {
        position: absolute !important;
        bottom: 20px !important;
        right: -15px !important;
        transform: scale(0.8) !important;
    }
    .floating-badge:hover {
        transform: scale(0.85) translateY(-5px) !important;
    }
}

/* ==========================================
   ADVANCED TREATMENTS SECTION
========================================== */

.treatments-section {
    position: relative;
    padding: 120px 7%;
    background:
        linear-gradient(to bottom, #07111f, #0b1728);
    overflow: hidden;
}

.treatments-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(0, 255, 200, 0.12),
            transparent 30%),
        radial-gradient(circle at bottom left,
            rgba(0, 140, 255, 0.12),
            transparent 30%);
    pointer-events: none;
}

.section-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0,255,170,0.12);
    color: #00f5b4;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    border: 1px solid rgba(0,255,170,0.2);
}

.treatments-section .section-header {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.treatments-section .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.treatments-section .section-header p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.8;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.condition-card {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    transition: 0.5s ease;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    cursor: pointer;
}

.condition-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5,10,20,0.96) 10%,
            rgba(5,10,20,0.5) 45%,
            rgba(5,10,20,0.15) 100%
        );
}

.card-content {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.card-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.card-icon i {
    width: 32px;
    height: 32px;
    color: #00f5b4;
}

.condition-card h3 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.condition-card ul {
    padding-left: 18px;
}

.condition-card ul li {
    color: rgba(255,255,255,0.82);
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 0.97rem;
}

.condition-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(0,255,170,0.5),
            rgba(0,140,255,0.15),
            transparent
        );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .treatments-section {
        padding: 90px 5%;
    }

    .condition-card {
        min-height: 360px;
    }

    .condition-card h3 {
        font-size: 1.4rem;
    }

}

/* ==========================================
   ADVANCED ABOUT SECTION (WHY RISEUP)
========================================== */
.about-section {
    position: relative;
    padding: 120px 7%;
    background: linear-gradient(to bottom, #0b1728, #07111f);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.about-section .about-title {
    color: #ffffff !important;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(0, 255, 170, 0.08),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(0, 140, 255, 0.08),
            transparent 35%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-media-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}

.about-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.06) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.about-dots {
    position: absolute;
    bottom: -15px;
    left: -15px;
    z-index: 1;
    pointer-events: none;
    animation: float-about-dots 6s ease-in-out infinite alternate;
}

@keyframes float-about-dots {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(-3deg); }
}

.about-image-card {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(255, 255, 255, 0.03);
    position: relative;
    width: 100%;
    z-index: 2;
    transition: all 0.5s ease;
}

.about-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-media-wrapper:hover .about-image-card {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.45);
    border-color: rgba(0, 255, 170, 0.15);
}

.about-media-wrapper:hover .about-image-card img {
    transform: scale(1.03);
}

.about-glass-badge {
    position: absolute;
    bottom: 45px;
    right: -25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    padding: 16px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    transition: all 0.3s ease;
}

.about-glass-badge:hover {
    transform: translateY(-5px) scale(1.02);
}

.about-glass-badge .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00f5b4 0%, #00d1a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    box-shadow: 0 4px 10px rgba(0, 245, 180, 0.25);
}

.about-glass-badge .badge-text h5 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0;
}

.about-glass-badge .badge-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
    margin: 2px 0 0;
    font-weight: 600;
}

/* Feature Cards Stack */
.about-features-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-card {
    position: relative;
    padding: 18px 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.about-feature-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 170, 0.2);
}

.about-feature-card .feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00f5b4;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature-card:hover .feature-icon-wrapper {
    background: rgba(0, 255, 170, 0.12);
    border-color: rgba(0, 255, 170, 0.25);
    transform: scale(1.08) rotate(4deg);
}

.about-feature-card .feature-icon-wrapper i {
    width: 24px;
    height: 24px;
}

.about-feature-card .feature-text-block h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature-card .feature-text-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0,255,170,0.35), rgba(0,140,255,0.08), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Mobile responsive about section */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-media-wrapper {
        order: 2;
    }
    
    .about-features-container {
        order: 3;
    }
    
    .about-glass-badge {
        right: 10px;
        bottom: 25px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 90px 5%;
    }
    
    .about-feature-card {
        padding: 20px 24px;
        flex-direction: column;
        gap: 15px;
    }
    
    .about-feature-card:hover {
        transform: translateY(-5px);
    }
    
    .about-glass-badge {
        transform: scale(0.85);
        right: -5px;
    }
}

