/*
Theme Name: Central Cars Recovery
Theme URI: #
Author: Bespoke Development
Description: Professional mobile car mechanic & recovery website for Central Cars, Rugby.
Version: 1.0.0
*/

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
    --orange:          #FF6200;
    --orange-hover:    #e55500;
    --orange-glow:     rgba(255, 98, 0, 0.30);
    --orange-subtle:   rgba(255, 98, 0, 0.08);

    --bg-dark:         #0f0f0f;
    --bg-secondary:    #161616;
    --bg-card:         #1e1e1e;
    --bg-card-hover:   #252525;

    --text-primary:    #ffffff;
    --text-secondary:  #a0a0a0;
    --text-muted:      #555555;

    --border-color:    rgba(255, 98, 0, 0.20);
    --border-subtle:   rgba(255, 255, 255, 0.06);

    --shadow-card:     0 4px 28px rgba(0, 0, 0, 0.45);
    --shadow-orange:   0 0 40px rgba(255, 98, 0, 0.20);

    --radius:          12px;
    --radius-lg:       20px;
    --radius-xl:       28px;

    --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font:            'Poppins', sans-serif;
    --nav-height:      64px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: var(--font); }

/* ===========================
   UTILITIES
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-title span { color: var(--orange); }

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,98,0,0.40);
}
.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,98,0,0.50);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.20);
}
.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.40);
}
.btn-whatsapp:hover {
    background: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.50);
    color: #fff;
}

.btn-lg { padding: 18px 44px; font-size: 1rem; }

.btn-messenger {
    background: #0099FF;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,153,255,0.40);
}
.btn-messenger:hover {
    background: #007acc;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,153,255,0.50);
    color: #fff;
}

/* ===========================
   NAVIGATION
=========================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.nav-bar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: rgba(15,15,15,0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.site-header.scrolled .nav-bar {
    background: rgba(15,15,15,0.97);
    box-shadow: 0 4px 32px rgba(0,0,0,0.60);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: -0.3px;
}

.nav-logo .logo-icon {
    width: 42px; height: 42px;
    background: var(--orange);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,98,0,0.45);
    flex-shrink: 0;
}

.nav-logo span { color: var(--orange); }

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(255,98,0,0.35));
}

.hero-logo {
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease both;
}

.hero-logo img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 0 24px rgba(255,98,0,0.45));
}

@media (max-width: 900px) {
    .hero-logo img { height: 80px; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0 auto;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
    color: #fff;
}
.nav-links a.active::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.nav-phone i { color: var(--orange); }
.nav-phone:hover { color: #fff; }

.nav-icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.nav-icon-wa  { background: #25D366; color: #fff; box-shadow: 0 3px 12px rgba(37,211,102,0.40); }
.nav-icon-msg { background: #0099FF; color: #fff; box-shadow: 0 3px 12px rgba(0,153,255,0.40); }

.nav-icon-wa:hover  { transform: scale(1.12); box-shadow: 0 5px 18px rgba(37,211,102,0.55); color: #fff; }
.nav-icon-msg:hover { transform: scale(1.12); box-shadow: 0 5px 18px rgba(0,153,255,0.55); color: #fff; }

/* Hide nav contact icons once floating buttons appear */
.site-header.past-hero .nav-icon-btn {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(24px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a.nav-item {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}
.mobile-nav a.nav-item:hover { color: var(--orange); }

.mobile-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80%;
    max-width: 320px;
    margin-top: 12px;
}

.mobile-nav-btns .btn {
    width: 100%;
    justify-content: center;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--nav-height) + 60px) 0 80px;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.45;
}

/* Dark gradient overlay on top of video */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15,15,15,0.93) 0%,
        rgba(15,15,15,0.80) 50%,
        rgba(15,15,15,0.55) 100%
    );
    z-index: 1;
}


/* Grid texture overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,98,0,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,98,0,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 2;
}

/* Ambient glow blobs */
.hero-glow-1 {
    position: absolute;
    bottom: -200px; left: -150px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,98,0,0.11) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.hero-glow-2 {
    position: absolute;
    top: 80px; right: -200px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(255,98,0,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--orange-subtle);
    border: 1px solid rgba(255,98,0,0.28);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease both;
}

.hero-tag .dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .accent {
    display: block;
    color: var(--orange);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 44px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

/* Hero visual (desktop) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon-wrap {
    position: relative;
    width: 420px; height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,98,0,0.14);
}

.hero-ring:nth-child(1) { width: 290px; height: 290px; animation: spin 22s linear infinite; }
.hero-ring:nth-child(2) { width: 370px; height: 370px; border-color: rgba(255,98,0,0.07); animation: spin 34s linear infinite reverse; }
.hero-ring:nth-child(3) { width: 420px; height: 420px; border-color: rgba(255,98,0,0.04); animation: spin 50s linear infinite; }

.hero-center {
    width: 190px; height: 190px;
    background: linear-gradient(145deg, var(--orange) 0%, #ff9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #fff;
    box-shadow: 0 0 90px rgba(255,98,0,0.55), 0 0 40px rgba(255,98,0,0.30), inset 0 2px 0 rgba(255,255,255,0.20);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-float-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    white-space: nowrap;
    z-index: 3;
}

.hero-float-badge i { color: var(--orange); font-size: 1rem; }
.hero-float-badge.b1 { top: 40px; right: -10px; animation: float 6s ease-in-out -2s infinite; }
.hero-float-badge.b2 { bottom: 60px; left: -20px; animation: float 6s ease-in-out -4s infinite; }
.hero-float-badge.b3 { top: 50%; right: -30px; transform: translateY(-50%); animation: float 8s ease-in-out -1s infinite; }

/* ===========================
   FEATURES STRIP
=========================== */
.features-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 52px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card);
    border-color: var(--border-subtle);
}

.feature-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 1.15rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(255,98,0,0.40);
}

.feature-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.80rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about { padding: 110px 0; }

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:first-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 28px 32px;
}

.about-stat-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.about-stat-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff9500 100%);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
    box-shadow: 0 4px 20px rgba(255,98,0,0.40);
}

.about-stat-card .stat-icon-sm {
    width: 48px; height: 48px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--orange);
    margin: 0 auto 14px;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* About content */
.about-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-content h2 span { color: var(--orange); }

.about-content p {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.about-list {
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.check-icon {
    width: 22px; height: 22px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    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(--orange), #ff9500);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--border-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 0 32px rgba(255,98,0,0.08);
}

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

.service-icon {
    width: 68px; height: 68px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.65rem;
    color: var(--orange);
    margin: 0 auto 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 6px 24px rgba(255,98,0,0.45);
}

.service-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.80rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===========================
   PRICING SECTION
=========================== */
.pricing { padding: 110px 0; }

.pricing-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 44px;
}

.pricing-tab {
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: var(--transition);
}

.pricing-tab:hover { border-color: var(--border-color); color: #fff; }

.pricing-tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,98,0,0.40);
}

.pricing-panel { display: none; }

.pricing-panel.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    animation: fadeIn 0.35s ease;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--border-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.price-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.price-card-icon {
    width: 42px; height: 42px;
    min-width: 42px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 1rem;
}

.price-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
}

.price-card-note {
    font-size: 0.73rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.price-card-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--orange);
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 0.84rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pricing-note i { color: var(--orange); margin-right: 6px; }
.pricing-note strong { color: var(--text-primary); }

/* ===========================
   BOOKING SECTION
=========================== */
.booking {
    padding: 110px 0;
    background: var(--bg-secondary);
}

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

/* Steps sidebar */
.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    transition: var(--transition);
}

.booking-step.current {
    border-color: var(--orange);
    background: var(--orange-subtle);
}

.booking-step.done {
    border-color: rgba(37,211,102,0.3);
    background: rgba(37,211,102,0.06);
}

.step-num {
    width: 32px; height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
}

.booking-step.current .step-num {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.booking-step.done .step-num {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.booking-step.done .step-num::after { content: '✓'; }
.booking-step.done .step-num { font-size: 0; }
.booking-step.done .step-num::after { font-size: 0.85rem; }

.step-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.step-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.booking-note {
    margin-top: 8px;
    padding: 12px 14px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.booking-note i { color: var(--orange); margin-right: 6px; }

/* Form wrap */
.booking-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    min-height: 420px;
}

.booking-panel { display: none; }
.booking-panel.active { display: block; animation: fadeIn 0.3s ease; }

/* Calendar panel bleeds edge-to-edge */
#bpanel-1.booking-panel.active {
    margin: -40px;
    padding: 32px 40px 36px;
}

.booking-panel h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.booking-panel h3 span { color: var(--orange); }

/* ── Custom Calendar ── */
#ccr-calendar { width: 100%; }

.ccr-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.ccr-cal-month-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ccr-cal-nav {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    color: var(--orange);
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    font-family: var(--font);
}

.ccr-cal-nav:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.ccr-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 6px;
}

.ccr-cal-weekdays span {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    padding: 8px 0;
}

.ccr-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-secondary);
    position: relative;
    user-select: none;
}

.cal-day:hover:not(.cal-disabled):not(.cal-empty) {
    background: var(--orange-subtle);
    border-color: var(--border-color);
    color: #fff;
    transform: scale(1.06);
}

.cal-day.cal-today {
    border-color: var(--orange) !important;
    color: var(--orange);
    font-weight: 700;
}

.cal-day.cal-selected {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(255,98,0,0.45);
    font-weight: 700;
    transform: scale(1.08);
}

.cal-day.cal-disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background: transparent;
}

.cal-day.cal-empty {
    cursor: default;
    background: transparent;
    border-color: transparent;
}

.cal-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #25D366;
    display: block;
}

.cal-day.cal-selected .cal-dot {
    background: rgba(255,255,255,0.7);
}

.booking-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.leg-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}
.leg-avail { background: #25D366; }
.leg-full  { background: var(--text-muted); }

/* Time slots */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.slot-btn {
    padding: 14px 8px;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.3;
}

.slot-btn:hover:not(:disabled) {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,98,0,0.35);
}

.slot-full {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Form fields */
.bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.bf-field {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bf-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.bf-field input,
.bf-field select,
.bf-field textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.92rem;
    padding: 12px 14px;
    transition: border-color 0.2s;
    width: 100%;
}

.bf-field input:focus,
.bf-field select:focus,
.bf-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,98,0,0.12);
}

.bf-field select option { background: var(--bg-card); }

.req { color: var(--orange); }
.opt { color: var(--text-muted); font-weight: 400; }

.bf-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-top: 4px;
}

.bf-summary i { color: var(--orange); font-size: 1rem; }

.bf-error {
    padding: 12px 16px;
    background: rgba(220,53,69,0.12);
    border: 1px solid rgba(220,53,69,0.3);
    border-radius: var(--radius-sm);
    color: #ff6b75;
    font-size: 0.85rem;
    margin-top: 12px;
}

.booking-loading {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 16px 0;
}

.booking-back { align-self: flex-start; }

/* Success state */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
    animation: pulse-green 2s infinite;
}

.booking-success h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
}

.booking-success p { color: var(--text-secondary); font-size: 0.95rem; }
.success-sub { font-size: 0.85rem !important; margin-top: 8px; }

/* Responsive */
@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
    /* Compact horizontal stepper on mobile */
    .booking-steps {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
        gap: 6px;
    }
    .booking-step {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 7px;
        padding: 12px 4px;
    }
    .booking-step .step-text span { display: none; }       /* hide the long description */
    .booking-step .step-text strong { font-size: 0.7rem; line-height: 1.2; }
    .booking-note { flex: 1 1 100%; margin-top: 4px; text-align: center; }
    .booking-form-wrap { padding: 20px 16px; }
    /* Calendar no longer bleeds with a big negative margin on mobile (caused overflow) */
    #bpanel-1.booking-panel.active { margin: 0; padding: 0; }
    .slots-grid { grid-template-columns: repeat(3, 1fr); }
    .bf-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-step { padding: 10px 3px; }
    .booking-step .step-num { width: 28px; height: 28px; font-size: 0.75rem; }
    .ccr-cal-grid { gap: 3px; }
    .cal-day { font-size: 0.82rem; border-radius: 8px; }
    .booking-panel h3 { font-size: 1.05rem; }
}

/* ===========================
   REVIEWS SECTION
=========================== */
.reviews {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 5.5rem;
    font-family: Georgia, serif;
    color: rgba(255,98,0,0.10);
    line-height: 1;
    font-weight: 700;
}

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

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.review-stars i { color: #FFB800; font-size: 0.88rem; }

.review-text {
    font-size: 0.90rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 28px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, #ff9500 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-name { font-size: 0.90rem; font-weight: 700; }
.review-location { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.reviews-cta {
    text-align: center;
    margin-top: 52px;
}

.reviews-cta p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

/* ===========================
   RECOVERY SECTION
=========================== */
.recovery {
    padding: 90px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a00 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.recovery::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,98,0,0.08) 0%, transparent 65%);
    pointer-events: none;
}

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

.recovery-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.recovery-content h2 span { color: var(--orange); }

.recovery-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.recovery-list {
    margin: 22px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recovery-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.recovery-list li i { color: var(--orange); }

.recovery-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.recovery-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recovery-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px var(--border-subtle);
    max-width: 420px;
    width: 100%;
}

.recovery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.recovery-img-wrap:hover img {
    transform: scale(1.04);
}

.recovery-img-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15,15,15,0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    color: #fff;
}

.recovery-img-badge i { color: var(--orange); font-size: 1rem; }

/* ===========================
   CONTACT SECTION
=========================== */
.contact { padding: 110px 0; }

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-info h2 span { color: var(--orange); }

.contact-info > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
}

.contact-item-text label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text span {
    font-size: 0.93rem;
    font-weight: 600;
    color: #fff;
}

.contact-item-text a:hover { color: var(--orange); }

/* WhatsApp CTA box */
.wa-cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 52px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wa-cta-box .wa-big-icon {
    width: 88px; height: 88px;
    background: rgba(37,211,102,0.12);
    border: 2px solid rgba(37,211,102,0.28);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: #25D366;
    animation: pulse-green 3s infinite;
}

.wa-cta-box h3 { font-size: 1.55rem; font-weight: 800; }

.wa-cta-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 280px;
}

.wa-cta-box .btn { width: 100%; justify-content: center; font-size: 1rem; }

.wa-divider {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border-subtle);
}

/* ===========================
   FLOATING WHATSAPP
=========================== */
.float-wa {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.float-wa.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.float-wa-btn {
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem;
    color: #fff;
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    transition: var(--transition);
    text-decoration: none;
    animation: float 4s ease-in-out infinite;
}

.float-wa-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 36px rgba(37,211,102,0.65);
    color: #fff;
}

.float-msg-btn {
    width: 60px; height: 60px;
    background: #0099FF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem;
    color: #fff;
    box-shadow: 0 6px 28px rgba(0,153,255,0.55);
    transition: var(--transition);
    text-decoration: none;
}
.float-msg-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 36px rgba(0,153,255,0.65);
    color: #fff;
}

.float-wa-tip {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateX(6px);
    transition: var(--transition);
    pointer-events: none;
}

.float-wa:hover .float-wa-tip {
    opacity: 1;
    transform: translateX(0);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 64px;
}

.footer-brand .f-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand .f-logo .logo-icon {
    width: 40px; height: 40px;
    background: var(--orange);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #fff;
}

.footer-brand .f-logo span { color: var(--orange); }

.footer-brand > p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-social-link {
    width: 38px; height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    border-color: var(--border-color);
    color: var(--orange);
    background: var(--orange-subtle);
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
    font-size: 0.86rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--text-secondary);
}

.footer-contact-list li i { color: var(--orange); margin-top: 2px; width: 14px; text-align: center; flex-shrink: 0; }
.footer-contact-list li a { color: var(--text-secondary); }
.footer-contact-list li a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p { font-size: 0.80rem; color: var(--text-muted); }

.footer-back-top {
    font-size: 0.80rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-back-top:hover { color: var(--orange); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    50%       { box-shadow: 0 0 0 12px rgba(37,211,102,0.10); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children */
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.reveal-stagger.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.reveal-stagger.visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
    .features-grid    { grid-template-columns: repeat(2, 1fr); }
    .services-grid    { grid-template-columns: repeat(2, 1fr); }
    .pricing-panel.active { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-grid      { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .hero .container      { grid-template-columns: 1fr; text-align: center; }
    .hero-desc            { margin-left: auto; margin-right: auto; }
    .hero-ctas            { justify-content: center; }
    .hero-stats           { justify-content: center; }
    .hero-visual          { display: none; }

    .about .container     { grid-template-columns: 1fr; gap: 36px; }

    /* Compact horizontal stat strip on mobile */
    .about-cards {
        display: flex;
        gap: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .about-stat-card:first-child { display: none; }

    .about-stat-card {
        flex: 1;
        border: none;
        border-radius: 0;
        border-right: 1px solid var(--border-subtle);
        padding: 20px 12px;
        text-align: center;
        transform: none !important;
    }

    .about-stat-card:last-child { border-right: none; }

    .about-stat-card .stat-icon-sm { margin-bottom: 8px; width: 36px; height: 36px; font-size: 0.95rem; }
    .about-stat-number { font-size: 1.5rem; }
    .about-stat-label  { font-size: 0.72rem; }
    .recovery .container  { grid-template-columns: 1fr; gap: 48px; }
    .recovery-visual      { order: -1; }
    .contact .container   { grid-template-columns: 1fr; gap: 48px; }

    .nav-links            { display: none; }
    .nav-phone            { display: none; }
    .nav-cta .btn         { display: none; }
    .nav-icon-btn         { display: none; }
    .hamburger            { display: flex; }
    .nav-bar              { padding: 0 24px; }
}

@media (max-width: 600px) {
    .features-grid         { grid-template-columns: 1fr; }
    .services-grid         { grid-template-columns: 1fr; }
    .pricing-panel.active  { grid-template-columns: 1fr; }
    .reviews-grid          { grid-template-columns: 1fr; }
    .about-cards           { grid-template-columns: 1fr; }
    .about-stat-card:first-child { grid-column: 1; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 28px; }

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

    .wa-cta-box { padding: 36px 24px; }

    .float-wa-btn { width: 54px; height: 54px; font-size: 1.6rem; }

    .pricing-tabs { gap: 6px; }
    .pricing-tab  { padding: 8px 14px; font-size: 0.78rem; }

    .recovery-btns { flex-direction: column; }
    .recovery-btns .btn { width: 100%; justify-content: center; }
}

/* ===========================
   RECOVERY PAGE
=========================== */
.rec-hero {
    position: relative;
    padding: calc(var(--nav-height) + 70px) 0 70px;
    background: var(--bg-dark);
    overflow: hidden;
}

.rec-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.rec-hero-inner {
    max-width: 620px;
}

.rec-hero-list {
    margin-top: 24px;
}

.rec-hero-visual {
    display: flex;
    justify-content: center;
}

.rec-hero-visual .recovery-img-wrap {
    max-width: 420px;
    width: 100%;
}

@media (max-width: 900px) {
    .rec-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .rec-hero-visual { order: -1; }
}

.rec-hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.rec-hero-title .accent { color: var(--orange); }

.rec-hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

.rec-form-section {
    padding: 0 0 100px;
    background: var(--bg-dark);
}

.rec-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 820px;
    margin: -40px auto 0;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-card);
}

/* Toggle */
.rec-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}

.rec-toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 22px 16px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-subtle);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    text-align: center;
}

.rec-toggle-btn i { font-size: 1.6rem; color: var(--text-secondary); transition: var(--transition); }
.rec-toggle-btn span { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.rec-toggle-btn small { font-size: 0.78rem; color: var(--text-secondary); }

.rec-toggle-btn:hover { border-color: var(--border-color); }

.rec-toggle-btn.active {
    border-color: var(--orange);
    background: var(--orange-subtle);
}
.rec-toggle-btn.active i { color: var(--orange); }

/* Form fields */
.rec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rec-field {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rec-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.rec-field input,
.rec-field select,
.rec-field textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.95rem;
    padding: 13px 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.rec-field input:focus,
.rec-field select:focus,
.rec-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,98,0,0.12);
}

.rec-field select option { background: var(--bg-card); }

.req { color: var(--orange); }
.opt { color: var(--text-muted); font-weight: 400; }

/* Location */
.rec-loc-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.rec-loc-hint { font-size: 0.82rem; color: var(--text-secondary); }

#rec-map {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    margin-bottom: 12px;
    z-index: 1;
}

.rec-gps-status {
    font-size: 0.82rem;
    color: var(--orange);
    font-weight: 600;
    min-height: 18px;
    margin-top: 6px;
}

.rec-error {
    padding: 13px 16px;
    background: rgba(220,53,69,0.12);
    border: 1px solid rgba(220,53,69,0.3);
    border-radius: var(--radius);
    color: #ff6b75;
    font-size: 0.88rem;
    margin: 8px 0 16px;
}

.rec-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Success */
.rec-success {
    text-align: center;
    padding: 30px 10px;
}

.rec-success-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 18px;
    animation: pulse-green 2s infinite;
}

.rec-success h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.rec-success p { color: var(--text-secondary); font-size: 0.98rem; max-width: 440px; margin: 0 auto 24px; line-height: 1.7; }
.rec-success .btn { margin: 0 auto; }
.rec-success-sub { margin-top: 20px !important; font-size: 0.9rem !important; }
.rec-success-sub a { color: var(--orange); font-weight: 700; }

/* Leaflet dark tweaks */
.leaflet-container { background: var(--bg-secondary); font-family: var(--font); }
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: var(--bg-card); color: #fff; }

@media (max-width: 700px) {
    .rec-form-card { padding: 24px 18px; }
    .rec-toggle { grid-template-columns: 1fr; }
    .rec-row { grid-template-columns: 1fr; gap: 0; }
    .rec-toggle-btn { flex-direction: row; justify-content: flex-start; text-align: left; gap: 12px; padding: 16px; flex-wrap: wrap; }
    .rec-toggle-btn i { font-size: 1.3rem; }
    #rec-map { height: 260px; }
}

/* Minimal map attribution */
.leaflet-control-attribution {
    background: rgba(0,0,0,0.35) !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 9px !important;
    padding: 1px 5px !important;
}
.leaflet-control-attribution a { color: rgba(255,255,255,0.6) !important; }

/* Recovery/Sell form heading */
.rec-form-heading {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 26px;
    color: var(--text-primary);
}

/* Sell page hero video */
.recovery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 10;
}

/* ===========================
   HUB HOMEPAGE
=========================== */
.hub-hero {
    position: relative;
    padding: calc(var(--nav-height) + 80px) 0 80px;
    background: var(--bg-dark);
    overflow: hidden;
    text-align: center;
}
.hub-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hub-hero-inner .hero-tag { margin-left: auto; margin-right: auto; }
.hub-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 18px;
}
.hub-hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}
.hub-hero-desc strong { color: var(--text-primary); display: block; margin-top: 10px; }

.hub-cards-section { padding: 76px 0 100px; background: var(--bg-dark); }

/* Section heading */
.hub-section-head {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 5;
}
.hub-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 8px;
}
.hub-section-title span { color: var(--orange); }
.hub-section-sub { color: var(--text-secondary); font-size: 1rem; }

.hub-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 5;
}
.hub-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px 30px 32px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hub-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff9500);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.hub-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-card), 0 0 40px rgba(255,98,0,0.12);
}
.hub-card:hover::before { transform: scaleX(1); }

/* Featured card stands out */
.hub-card-featured {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange), 0 10px 40px rgba(255,98,0,0.15);
}
.hub-card-featured::before { transform: scaleX(1); }

.hub-card-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(255,98,0,0.45);
}

.hub-card-icon {
    width: 86px; height: 86px;
    border-radius: 50%;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.1rem;
    color: var(--orange);
    margin-bottom: 24px;
    transition: var(--transition);
}
.hub-card:hover .hub-card-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(255,98,0,0.45);
}
.hub-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.hub-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 26px; flex: 1; }

/* Card CTA looks like a button */
.hub-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 100px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}
.hub-card:hover .hub-card-btn {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,98,0,0.40);
}
.hub-card:hover .hub-card-btn i { transform: translateX(4px); }
.hub-card-btn i { transition: var(--transition); }

.hub-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 52px;
}
.hub-contact-label { color: var(--text-secondary); font-size: 0.92rem; font-weight: 600; }

/* ===========================
   AREAS WE COVER
=========================== */
.areas-section {
    padding: 90px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}
.areas-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.areas-head .badge { margin-bottom: 16px; }
.areas-title { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.areas-sub { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    max-width: 940px;
    margin: 0 auto;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.area-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transition: var(--transition);
}
.area-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    background: var(--bg-card-hover);
}
.area-card:hover::before { transform: scaleY(1); }

.area-card-pin {
    width: 44px; height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--orange-subtle);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 1.05rem;
    transition: var(--transition);
}
.area-card:hover .area-card-pin {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255,98,0,0.40);
}

.area-card-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.area-card-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.area-card-meta { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.area-card-arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}
.area-card:hover .area-card-arrow { color: var(--orange); transform: translateX(4px); }

.areas-foot {
    text-align: center;
    margin-top: 36px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.areas-foot i { color: var(--orange); margin-right: 6px; }
.areas-foot a { color: var(--orange); font-weight: 700; }

@media (max-width: 900px) {
    .hub-cards { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    /* Clean full-width tappable buttons; drop the cluttered meta line */
    .areas-grid { grid-template-columns: 1fr; gap: 10px; }
    .area-card { padding: 16px 18px; }
    .area-card-meta { display: none; }
    .area-card-arrow { color: var(--orange); }
}

/* Footer prominent contact buttons */
.footer-contact-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.footer-contact-cta .btn { padding: 11px 20px; font-size: 0.85rem; }

/* Navbar primary CTA button */
.nav-cta-btn { padding: 11px 24px; font-size: 0.86rem; }

/* ===========================
   HOME HUB — POLISH
=========================== */
/* Hero trust strip */
.hub-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin: 30px 0 34px;
}
.hub-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--text-secondary);
}
.hub-trust-item i { color: var(--orange); font-size: 0.9rem; }
.hub-trust-item strong { color: #fff; font-weight: 700; }

/* Services section decorative background */
.hub-cards-section { position: relative; overflow: hidden; }
.hub-cards-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(620px circle at 50% -40px, rgba(255,98,0,0.12), transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-dark) 45%);
}
.hub-cards-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,98,0,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,98,0,0.045) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.hub-cards-section > .container { position: relative; z-index: 2; }
.hub-section-head .badge { margin-bottom: 16px; }

/* ===========================
   FLOATING SCROLL-TO-FORM FAB
=========================== */
.float-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 9999;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 28px rgba(255,98,0,0.50);
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease, background .2s ease, box-shadow .2s ease;
}
.float-fab.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-fab:hover {
    background: var(--orange-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 38px rgba(255,98,0,0.60);
}
.float-fab-arrow {
    font-size: 1.15rem;
    animation: fab-bob 1.8s ease-in-out infinite;
}
.float-fab-tip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: #fff;
    border: 1px solid var(--border-subtle);
    padding: 7px 13px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    box-shadow: var(--shadow-card);
    transition: opacity .25s ease, transform .25s ease;
}
.float-fab:hover .float-fab-tip { opacity: 1; transform: translateX(0); }
@keyframes fab-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

@media (max-width: 600px) {
    .float-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .float-fab-tip { display: none; }
}

/* Booking note "Contact Us" button */
.booking-note-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--orange);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}
.booking-note-btn:hover { background: var(--orange-hover); color: #fff; transform: translateY(-2px); }

/* Footer "Built by Ntse.co.uk" credit */
.footer-built { color: var(--text-muted); }
.footer-built::before { content: "·"; margin: 0 8px; color: var(--text-muted); }
.footer-built a { color: var(--orange); font-weight: 600; }
.footer-built a:hover { color: var(--orange-hover); }
@media (max-width: 600px) {
    .footer-built { display: block; margin-top: 4px; }
    .footer-built::before { display: none; }
}

/* ===========================
   COOKIE CONSENT BANNER
=========================== */
.ccr-cookie {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 560px;
    margin: 0 auto;
    z-index: 10000;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 44px rgba(0,0,0,0.55);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ccr-cookie-text {
    flex: 1 1 240px;
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.ccr-cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.ccr-cookie-btns .btn { padding: 10px 20px; font-size: 0.85rem; }

@media (max-width: 600px) {
    .ccr-cookie { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
    .ccr-cookie-btns { width: 100%; }
    .ccr-cookie-btns .btn { flex: 1; justify-content: center; }
}
