/* ===================================================
   WASTE RESCUERS - STYLESHEET
   Clean, modern, professional design
   =================================================== */

/* ============ CSS VARIABLES ============ */
:root {
    /* Brand Colors */
    --orange: #FF6B35;
    --orange-dark: #E55A2B;
    --green: #22C55E;
    --green-dark: #16A34A;
    --green-light: #4ADE80;
    --blue: #3B82F6;
    
    /* Neutrals */
    --dark: #1A1A1A;
    --text: #2D2D2D;
    --text-light: #6B7280;
    --bg: #FFFFFF;
    --bg-soft: #F9FAFB;
    --bg-cream: #FFF7F0;
    --border: #E5E7EB;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-green: 0 8px 24px rgba(34, 197, 94, 0.25);
    --shadow-orange: 0 8px 24px rgba(255, 107, 53, 0.25);
    
    /* Spacing */
    --container: 1200px;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    
    /* Fonts */
    --font-display: 'Bricolage Grotesque', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============ CONTAINER ============ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HEADER / NAVBAR ============ */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

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

.logo-box {
    background: var(--dark);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text {
    font-size: 11px;
}

.logo-text:last-child {
    font-size: 13px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-full);
    transition: all 0.2s var(--ease);
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: var(--bg-cream);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.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);
}

/* ============ HERO SECTION ============ */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FFF7F0 0%, #F0FDF4 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
    animation: fadeUp 0.8s var(--ease) backwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.25s; }
.hero-title span:nth-child(3) { animation-delay: 0.4s; }

.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-dark { color: var(--dark); }

.hero-subtitle {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 8px;
    animation: fadeUp 0.8s var(--ease) 0.55s backwards;
}

.badge {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    margin-left: 4px;
}

.hero-tagline {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s var(--ease) 0.7s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease) 0.85s backwards;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-green {
    background: var(--green);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.35);
}

.btn-orange {
    background: var(--orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.btn-white {
    background: white;
    color: var(--green-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid white;
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s var(--ease);
}

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

/* ============ STATS SECTION ============ */
.stats {
    padding: 20px 0 60px;
    position: relative;
    z-index: 2;
}

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

.stat-card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-green { color: var(--green); }
.stat-blue { color: var(--blue); }

.stat-label {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* ============ SERVICES PREVIEW (2-column) ============ */
.services-preview {
    padding: 40px 0 80px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Left card: Our Services */
.services-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.services-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--green));
}

.services-card-title {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.services-card-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.services-list {
    margin-bottom: 24px;
}

.services-list li {
    padding: 8px 0;
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.view-all-link {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s var(--ease);
}

.view-all-link:hover {
    border-bottom-color: var(--orange);
}

/* Right card: Book An Appointment */
.appointment-card {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-green);
}

.appointment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.appointment-title {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.appointment-desc {
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
    opacity: 0.95;
    text-align: center;
    position: relative;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    position: relative;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all 0.2s var(--ease);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.info-icon {
    font-size: 16px;
}

.appointment-card .btn-outline {
    display: block;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

/* ============ SECTION HEADER ============ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.section-tag {
    color: var(--orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* ============ SERVICES GRID ============ */
.services-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

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

.service-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

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

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

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s var(--ease);
    display: inline-block;
}

.learn-more:hover {
    color: var(--green-dark);
    transform: translateX(4px);
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-subtitle {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.about-list {
    margin-bottom: 16px;
}

.about-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.about-list li::before {
    content: '•';
    color: var(--green);
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 4px;
}

.about-list li strong {
    color: var(--dark);
}

.about-footer-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.about-image-wrapper {
    position: sticky;
    top: 100px;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #FFF7F0 0%, #F0FDF4 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    text-align: center;
    color: var(--text-light);
}

.image-placeholder span {
    font-size: 80px;
    display: block;
    margin-bottom: 12px;
}

.image-placeholder p {
    font-weight: 500;
}

/* ============ CTA / BOOKING SECTION ============ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 50%, #0E8B47 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s var(--ease);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s var(--ease);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

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

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE - TABLET ============ */
@media (max-width: 992px) {
    .two-column-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-image-wrapper {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: start;
    }
}

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Mobile navbar */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.4s var(--ease);
        border-top: 1px solid var(--border);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Services preview cards */
    .services-card,
    .appointment-card {
        padding: 28px 24px;
    }
    
    .services-card-title,
    .appointment-title {
        font-size: 26px;
    }
    
    /* Services grid */
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    /* About */
    .about-section {
        padding: 60px 0;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    /* WhatsApp button smaller on mobile */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}


/* ===================================================
   INNER PAGES STYLES
   (about.html, services.html, contact.html, booking.html)
   =================================================== */

/* ============ NAV CTA BUTTON ============ */
.nav-cta {
    background: var(--orange);
    color: white !important;
    padding: 10px 22px !important;
    margin-left: 8px;
    box-shadow: var(--shadow-orange);
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    color: white !important;
    transform: translateY(-1px);
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #FFF7F0 0%, #F0FDF4 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 70%);
    border-radius: 50%;
}

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--orange);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--orange-dark);
}

.breadcrumb-separator {
    color: var(--border);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-title .text-orange,
.page-title .text-green {
    display: inline;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}


/* ============ ABOUT PAGE - MISSION SECTION ============ */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mission-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 100px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.mission-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
}


/* ============ FEATURE CARDS GRID ============ */
.features-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

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

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-green);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}


/* ============ SERVICES PAGE - DETAILED SERVICE BLOCKS ============ */
.service-detail-section {
    padding: 80px 0;
    background: white;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block.reverse .service-block-image {
    order: 2;
}

.service-block.reverse .service-block-content {
    order: 1;
}

.service-block-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: var(--shadow-md);
}

.service-block-image.green-bg {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
}

.service-block-image.orange-bg {
    background: linear-gradient(135deg, #FFEDD5, #FED7AA);
}

.service-block-image.blue-bg {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}

.service-block-image.yellow-bg {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.service-block-image.purple-bg {
    background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
}

.service-block-image.pink-bg {
    background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
}

.service-block-image.teal-bg {
    background: linear-gradient(135deg, #CCFBF1, #99F6E4);
}

.service-block-tag {
    display: inline-block;
    background: var(--bg-cream);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-block-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-block-desc {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--text);
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}


/* ============ PROCESS STEPS ============ */
.process-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

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

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-orange);
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}


/* ============ CONTACT PAGE ============ */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.contact-info-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.2s;
}

.contact-info-card a:hover {
    color: var(--orange);
}


/* ============ CONTACT FORM ============ */
.contact-form-section {
    padding: 60px 0;
    background: var(--bg-soft);
}

.form-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-wrapper {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label .required {
    color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    background: white;
    transition: all 0.2s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-green);
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.35);
}

.form-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
}

.sidebar-card p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    position: relative;
}

.sidebar-info-item:first-of-type {
    border-top: none;
}

.sidebar-info-item .icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-info-item a,
.sidebar-info-item span {
    color: white;
}

.sidebar-card-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    box-shadow: var(--shadow-orange);
    text-align: center;
}

.sidebar-card-orange .btn-white-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid white;
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.sidebar-card-orange .btn-white-outline:hover {
    background: white;
    color: var(--orange);
}


/* ============ MAP SECTION ============ */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-container {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.map-pin {
    font-size: 60px;
    margin-bottom: 12px;
    animation: bounce 2s infinite;
    z-index: 1;
}

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

.map-container h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
    z-index: 1;
}

.map-container p {
    color: var(--text-light);
    z-index: 1;
}


/* ============ BOOKING PAGE ============ */
.booking-section {
    padding: 60px 0 80px;
    background: var(--bg-soft);
}

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

.booking-form-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.booking-step {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.booking-step:last-of-type {
    border-bottom: none;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-green);
}

.step-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
}

.step-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
    font-weight: 400;
    font-family: var(--font-body);
}

/* Service selection cards */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    background: white;
}

.service-option:hover {
    border-color: var(--green);
    background: #F0FDF4;
}

.service-option input {
    margin: 0;
    accent-color: var(--green);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.service-option-icon {
    font-size: 24px;
}

.service-option-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

/* Trust badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.trust-badge {
    background: white;
    padding: 16px 12px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.trust-badge-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.trust-badge-text {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}


/* ============ INTRO PARAGRAPH ============ */
.intro-section {
    padding: 60px 0 20px;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
}


/* ============ RESPONSIVE - INNER PAGES ============ */
@media (max-width: 992px) {
    .mission-grid,
    .service-block,
    .service-block.reverse,
    .form-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-block.reverse .service-block-image,
    .service-block.reverse .service-block-content {
        order: unset;
    }
    
    .features-grid,
    .contact-info-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0 30px;
    }
    
    .features-grid,
    .contact-info-grid,
    .process-grid,
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-wrapper,
    .booking-form-card {
        padding: 28px 24px;
    }
    
    .service-block-image {
        font-size: 80px;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}


/* ===================================================
   PRICING PAGE STYLES
   =================================================== */

.pricing-section {
    padding: 60px 0 80px;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--orange);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-12px);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: var(--shadow-orange);
}

/* Top header - matches reference image */
.pricing-header {
    background: #F3F4F6;
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.3px;
}

/* Truck illustration container */
.truck-illustration {
    padding: 40px 24px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    position: relative;
}

.truck-svg {
    width: 100%;
    max-width: 340px;
    height: auto;
}

/* Pricing info tooltip box (like the black box in reference) */
.price-tooltip {
    position: absolute;
    top: 50px;
    right: 24px;
    background: var(--dark);
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
}

.price-tooltip .price-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 2px;
}

.price-tooltip .price-check {
    color: var(--green-light);
    font-size: 10px;
    margin-top: 2px;
}

/* Black bottom section */
.pricing-info {
    background: var(--dark);
    color: white;
    padding: 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-info h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.pricing-info .price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.pricing-info .price .currency {
    font-size: 28px;
    vertical-align: top;
    margin-right: 2px;
}

.pricing-info .weight-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-info .features {
    margin-bottom: 24px;
    flex: 1;
}

.pricing-info .features li {
    padding: 6px 0 6px 26px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.pricing-info .features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.pricing-info .btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--orange);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.5px;
}

.pricing-info .btn-pricing:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.pricing-info .btn-pricing.btn-green-pricing {
    background: var(--green);
}

.pricing-info .btn-pricing.btn-green-pricing:hover {
    background: var(--green-dark);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* ============ PRICING NOTE / DISCLAIMER ============ */
.pricing-note {
    max-width: 800px;
    margin: 48px auto 0;
    padding: 24px 32px;
    background: var(--bg-cream);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    text-align: center;
}

.pricing-note p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.pricing-note strong {
    color: var(--orange);
}

/* ============ COMPARISON TABLE ============ */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

.comparison-table-wrapper {
    margin-top: 48px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead {
    background: var(--dark);
    color: white;
}

.comparison-table th {
    padding: 20px 16px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 32px;
}

.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}

.comparison-table td:first-child {
    text-align: left;
    padding-left: 32px;
    font-weight: 600;
    color: var(--dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: var(--bg-soft);
}

.comparison-table .price-cell {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--orange);
}

.comparison-table .check-yes {
    color: var(--green);
    font-size: 20px;
    font-weight: 700;
}

.comparison-table .check-no {
    color: var(--text-light);
    font-size: 20px;
}

/* ============ FAQ SECTION ============ */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
    background: white;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-soft);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-cream);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.faq-item.active .faq-icon {
    background: var(--orange);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
}

/* ============ RESPONSIVE FOR PRICING ============ */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .pricing-header h3 {
        font-size: 19px;
    }
    
    .pricing-info {
        padding: 24px 20px;
    }
    
    .pricing-info h2 {
        font-size: 22px;
    }
    
    .pricing-info .price {
        font-size: 32px;
    }
    
    .price-tooltip {
        display: none;
    }
}


/* ===================================================
   HOME PAGE - NEW SECTIONS
   Reviews, Gallery, Areas, FAQ
   =================================================== */

/* ============ AREAS WE COVER ============ */
.areas-section {
    padding: 80px 0;
    background: white;
}

.areas-header {
    text-align: center;
    margin-bottom: 48px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.area-card {
    background: white;
    padding: 20px 16px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    text-align: center;
    transition: all 0.3s var(--ease);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transition: height 0.3s var(--ease);
    z-index: 0;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.area-card:hover::before {
    height: 100%;
}

.area-card:hover .area-pin,
.area-card:hover .area-name,
.area-card:hover .area-zone {
    color: white;
}

.area-pin {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--orange);
    transition: color 0.3s var(--ease);
    position: relative;
    z-index: 1;
}

.area-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
    transition: color 0.3s var(--ease);
    position: relative;
    z-index: 1;
}

.area-zone {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
    font-weight: 500;
    transition: color 0.3s var(--ease);
    position: relative;
    z-index: 1;
}

.areas-cta {
    text-align: center;
    margin-top: 32px;
    color: var(--text-light);
    font-size: 15px;
}

.areas-cta strong {
    color: var(--orange);
}


/* ============ REVIEWS / TESTIMONIALS ============ */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF7F0 0%, #F0FDF4 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 5%;
    font-family: var(--font-display);
    font-size: 280px;
    color: rgba(255, 107, 53, 0.08);
    line-height: 1;
    pointer-events: none;
}

.reviews-section::after {
    content: '"';
    position: absolute;
    bottom: 40px;
    right: 5%;
    font-family: var(--font-display);
    font-size: 280px;
    color: rgba(34, 197, 94, 0.08);
    line-height: 1;
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
    position: relative;
}

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

.review-stars {
    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.review-avatar.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.review-avatar.blue { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.review-avatar.purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.review-avatar.pink { background: linear-gradient(135deg, #EC4899, #BE185D); }
.review-avatar.teal { background: linear-gradient(135deg, #14B8A6, #0F766E); }

.review-author-info {
    flex: 1;
}

.review-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
}

.review-location {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.review-verified {
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}


/* ============ GALLERY (Before/After) ============ */
.gallery-section {
    padding: 80px 0;
    background: white;
}

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

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Before/After split visualization */
.gallery-split {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.gallery-before,
.gallery-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: white;
    font-family: var(--font-display);
}

.gallery-before {
    background: linear-gradient(135deg, #6B7280, #374151);
}

.gallery-after {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.gallery-emoji {
    font-size: 56px;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.gallery-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.gallery-desc {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
}

.gallery-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    z-index: 2;
}

.gallery-divider::after {
    content: '⇆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    padding: 20px 16px 12px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    z-index: 3;
}


/* ============ FAQ ============ */
.home-faq-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

.home-faq-grid {
    max-width: 800px;
    margin: 48px auto 0;
}


/* ============ RESPONSIVE - HOME NEW SECTIONS ============ */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reviews-section::before,
    .reviews-section::after {
        font-size: 180px;
    }
    
    .gallery-emoji {
        font-size: 42px;
    }
    
    .gallery-before,
    .gallery-after {
        padding: 16px;
    }
}

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


/* ===================================================
   ADDITIONAL PAGES STYLES
   Blog, Legal, 404, Thank You
   =================================================== */

/* ============ BLOG PAGE ============ */
.blog-section {
    padding: 60px 0 80px;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-image.gradient-1 { background: linear-gradient(135deg, #FF6B35, #E55A2B); }
.blog-image.gradient-2 { background: linear-gradient(135deg, #22C55E, #16A34A); }
.blog-image.gradient-3 { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.blog-image.gradient-4 { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.blog-image.gradient-5 { background: linear-gradient(135deg, #EC4899, #BE185D); }
.blog-image.gradient-6 { background: linear-gradient(135deg, #14B8A6, #0F766E); }

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-meta-dot {
    color: var(--border);
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.blog-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-read-more {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s var(--ease);
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15), transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
}

.newsletter-btn {
    padding: 14px 28px;
    background: var(--dark);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.newsletter-btn:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* ============ LEGAL PAGES (Privacy, Terms, Cookies) ============ */
.legal-section {
    padding: 60px 0 80px;
    background: white;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.legal-meta {
    color: var(--text-light);
    font-size: 14px;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-meta strong {
    color: var(--dark);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--dark);
    margin-top: 36px;
    margin-bottom: 16px;
    font-weight: 700;
    padding-left: 16px;
    border-left: 4px solid var(--orange);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li,
.legal-content ol li {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 15px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--orange);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-content a:hover {
    border-bottom-color: var(--orange);
}

.legal-toc {
    background: var(--bg-soft);
    padding: 24px 28px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    border-left: 4px solid var(--green);
}

.legal-toc h4 {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legal-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 24px;
}

.legal-toc ol li {
    list-style: none;
    margin-bottom: 6px;
    font-size: 14px;
}

.legal-toc ol li a {
    color: var(--text);
    font-weight: 500;
    border: none;
}

.legal-toc ol li a:hover {
    color: var(--orange);
}

.legal-highlight {
    background: var(--bg-cream);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--orange);
    margin: 20px 0;
}

.legal-highlight p {
    margin: 0;
    color: var(--text);
}


/* ============ 404 PAGE ============ */
.error-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF7F0 0%, #F0FDF4 100%);
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
    border-radius: 50%;
}

.error-page::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent 70%);
    border-radius: 50%;
}

.error-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 14rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--orange), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -8px;
    margin-bottom: 16px;
    animation: bounce 3s ease-in-out infinite;
}

.error-emoji {
    font-size: 80px;
    margin-bottom: 16px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.error-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.error-desc {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.error-suggestions {
    background: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.error-suggestions h4 {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    padding: 6px 0;
    font-size: 14px;
}

.error-suggestions li a {
    color: var(--orange);
    font-weight: 600;
    transition: color 0.2s;
}

.error-suggestions li a:hover {
    color: var(--orange-dark);
}


/* ============ THANK YOU PAGE ============ */
.thankyou-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.thankyou-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.thankyou-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    box-shadow: var(--shadow-green);
    animation: scaleIn 0.6s var(--ease) backwards;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.thankyou-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -1px;
}

.thankyou-desc {
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.thankyou-details {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.thankyou-details h4 {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.thankyou-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}

.thankyou-detail-row:last-child {
    border-bottom: none;
}

.thankyou-detail-row .label {
    color: var(--text-light);
    font-weight: 500;
}

.thankyou-detail-row .value {
    color: var(--dark);
    font-weight: 700;
}

.thankyou-detail-row .value.highlight {
    color: var(--orange);
}

.thankyou-steps {
    text-align: left;
    margin-bottom: 32px;
}

.thankyou-steps h4 {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.thankyou-step {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 12px 0;
}

.thankyou-step-num {
    width: 32px;
    height: 32px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.thankyou-step p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.thankyou-step p strong {
    color: var(--dark);
}

.thankyou-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-content {
        padding: 36px 28px;
    }
    
    .legal-toc ol {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 48px auto 0;
    }
    
    .legal-content {
        padding: 28px 20px;
    }
    
    .thankyou-card {
        padding: 36px 24px;
    }
    
    .thankyou-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}


/* ===================================================
   LANDING PAGE - CONVERSION OPTIMIZED
   For Google Ads Traffic
   =================================================== */

/* ============ URGENCY BAR ============ */
.urgency-bar {
    background: linear-gradient(90deg, #DC2626 0%, #EA580C 50%, #DC2626 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    color: white;
    padding: 12px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-bar .pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1s ease-in-out infinite;
}

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

.urgency-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 800;
    margin-left: 4px;
}

/* ============ LP HEADER (minimal) ============ */
.lp-header {
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 41px; /* below urgency bar */
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.lp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: white !important;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-green);
    animation: pulse-green 2s ease-in-out infinite;
}

.lp-phone-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4), 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* ============ LP HERO ============ */
.lp-hero {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #FFF7F0 0%, #FFFFFF 50%, #F0FDF4 100%);
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
    border-radius: 50%;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.lp-eyebrow::before {
    content: '⚡';
    font-size: 16px;
}

.lp-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.lp-headline .price-pop {
    color: var(--orange);
    display: inline-block;
    position: relative;
}

.lp-headline .price-pop::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 53, 0.2);
    z-index: -1;
}

.lp-subheadline {
    color: var(--text);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.5;
    margin-bottom: 24px;
}

.lp-subheadline strong {
    color: var(--dark);
}

/* Trust ribbon */
.lp-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex-wrap: wrap;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.lp-trust-item .check-circle {
    width: 22px;
    height: 22px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.lp-stars {
    color: #FBBF24;
    font-size: 16px;
    letter-spacing: 1px;
}

/* MASSIVE PHONE BUTTON */
.lp-mega-phone {
    display: block;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: white !important;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    animation: pulse-mega 2.5s ease-in-out infinite;
}

@keyframes pulse-mega {
    0%, 100% { 
        box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 16px 40px rgba(34, 197, 94, 0.6), 0 0 0 12px rgba(34, 197, 94, 0.1);
        transform: scale(1.01);
    }
}

.lp-mega-phone:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(34, 197, 94, 0.5);
}

.lp-mega-phone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 50%);
}

.lp-mega-phone .label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.9;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    position: relative;
}

.lp-mega-phone .number {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    display: block;
    position: relative;
}

.lp-mega-phone .icon {
    font-size: 24px;
    margin-right: 6px;
}

.lp-mega-phone .sub-label {
    font-size: 13px;
    margin-top: 6px;
    opacity: 0.95;
    position: relative;
}

/* OR divider */
.lp-or-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.lp-or-divider::before,
.lp-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Quick Form */
.lp-quick-form {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    transition: all 0.3s var(--ease);
}

.lp-quick-form:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.lp-quick-form h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.lp-quick-form .form-desc {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 16px;
}

.lp-quick-form input,
.lp-quick-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.2s var(--ease);
}

.lp-quick-form input:focus,
.lp-quick-form select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.lp-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: white;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lp-form-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.5);
}

.lp-form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-light);
}

/* Hero visual side */
.lp-hero-visual {
    position: relative;
}

.lp-hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.lp-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), var(--green));
}

.lp-price-tag {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #FFF7F0, #FED7AA);
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 2px dashed var(--orange);
}

.lp-price-tag .from-text {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-price-tag .big-price {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin: 4px 0;
    letter-spacing: -2px;
}

.lp-price-tag .big-price .currency {
    font-size: 0.5em;
    vertical-align: top;
}

.lp-price-tag .price-desc {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 4px;
}

.lp-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.lp-features-list li .check-circle {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Live activity */
.lp-live-activity {
    background: var(--bg-soft);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text);
}

.lp-live-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.lp-live-activity strong {
    color: var(--dark);
}

/* ============ BENEFITS BAR ============ */
.lp-benefits {
    background: var(--dark);
    color: white;
    padding: 32px 0;
}

.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.lp-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lp-benefit .emoji {
    font-size: 32px;
    margin-bottom: 4px;
}

.lp-benefit .title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.lp-benefit .sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============ HOW IT WORKS (LP version) ============ */
.lp-how {
    padding: 60px 0;
    background: white;
}

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

.lp-section-tag {
    color: var(--orange);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.lp-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

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

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s var(--ease);
}

.lp-step:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.lp-step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-orange);
}

.lp-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.lp-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ SERVICES MINI (LP version) ============ */
.lp-services {
    padding: 60px 0;
    background: var(--bg-soft);
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.lp-service-mini {
    background: white;
    padding: 20px 16px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.lp-service-mini:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.lp-service-mini .emoji {
    font-size: 36px;
    margin-bottom: 8px;
}

.lp-service-mini h4 {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--dark);
    font-weight: 700;
}

.lp-service-mini .from {
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}

.lp-services-cta {
    text-align: center;
}

/* ============ REVIEWS BAR (LP) ============ */
.lp-reviews {
    padding: 60px 0;
    background: white;
}

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

.lp-review {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.lp-review .stars {
    color: #FBBF24;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.lp-review p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.lp-review .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.lp-review .reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.lp-review .reviewer-info strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
}

.lp-review .reviewer-info span {
    color: var(--text-light);
    font-size: 11px;
}

/* ============ FINAL CTA ============ */
.lp-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 50%);
}

.lp-final-cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.lp-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.lp-final-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.lp-final-phone {
    display: inline-block;
    background: white;
    color: var(--orange) !important;
    padding: 28px 56px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--ease);
}

.lp-final-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.lp-final-phone .label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
}

.lp-final-phone .number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -1px;
}

/* ============ STICKY MOBILE CALL BAR ============ */
.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
    border-top: 1px solid var(--border);
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    padding: 16px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--shadow-green);
    animation: pulse-green 2s ease-in-out infinite;
}

.sticky-call-btn .icon {
    font-size: 24px;
}

/* ============ EXIT INTENT POPUP ============ */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    padding: 24px;
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s var(--ease);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--bg-soft);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-light);
    transition: all 0.2s var(--ease);
}

.exit-popup-close:hover {
    background: var(--dark);
    color: white;
}

.exit-popup-emoji {
    font-size: 56px;
    margin-bottom: 8px;
}

.exit-popup h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.exit-popup p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.exit-popup .discount {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border: 2px dashed var(--orange);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.exit-popup .discount strong {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--orange);
    display: block;
}

.exit-popup-phone {
    display: block;
    background: var(--green);
    color: white !important;
    padding: 18px 24px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-green);
}

.exit-popup-phone:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.exit-popup-phone .icon {
    margin-right: 8px;
}

/* ============ THANK YOU MESSAGE (after form submit) ============ */
.lp-thank-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    padding: 24px;
}

.lp-thank-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lp-thank-card {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 48px 32px;
    text-align: center;
    transform: scale(0.7);
    transition: transform 0.4s var(--ease);
}

.lp-thank-overlay.active .lp-thank-card {
    transform: scale(1);
}

.lp-thank-check {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: var(--shadow-green);
}

.lp-thank-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.lp-thank-card p {
    color: var(--text);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
}

.lp-thank-cta {
    background: var(--green);
    color: white !important;
    padding: 20px 32px;
    border-radius: var(--radius);
    display: block;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    box-shadow: var(--shadow-green);
    animation: pulse-green 2s ease-in-out infinite;
    transition: all 0.3s var(--ease);
}

.lp-thank-cta:hover {
    transform: translateY(-2px);
}

.lp-thank-cta .icon {
    margin-right: 8px;
}

.lp-thank-note {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 16px !important;
}

/* ============ LP FOOTER (minimal) ============ */
.lp-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 32px 0;
    text-align: center;
}

.lp-footer .logo-box {
    margin: 0 auto 16px;
    display: inline-flex;
}

.lp-footer p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.lp-footer a {
    color: var(--orange);
    margin: 0 8px;
}

/* ============ LP RESPONSIVE ============ */
@media (max-width: 992px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .lp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-reviews-row {
        grid-template-columns: 1fr;
    }
    
    .lp-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lp-header {
        top: 36px; /* smaller urgency bar */
    }
    
    .urgency-bar {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .urgency-bar .hide-mobile {
        display: none;
    }
    
    body {
        padding-bottom: 80px; /* space for sticky bar */
    }
    
    .sticky-call {
        display: block;
    }
    
    .lp-trust-row {
        gap: 12px;
        padding: 12px 16px;
    }
    
    .lp-trust-item {
        font-size: 12px;
    }
    
    .lp-mega-phone {
        padding: 20px 24px;
    }
    
    .lp-hero-card {
        padding: 24px 20px;
    }
    
    .lp-final-phone {
        padding: 20px 32px;
    }
    
    .exit-popup {
        padding: 28px 20px;
    }
}


/* ===================================================
   WHATSAPP MEGA BUTTON (Landing Page)
   =================================================== */

.lp-mega-whatsapp {
    display: block;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white !important;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    animation: pulse-wa 2.5s ease-in-out infinite;
}

@keyframes pulse-wa {
    0%, 100% { 
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
        transform: scale(1.01);
    }
}

.lp-mega-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.lp-mega-whatsapp::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 50%);
}

.lp-mega-whatsapp .wa-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
}

.lp-mega-whatsapp .wa-icon-wrap svg {
    width: 40px;
    height: 40px;
}

.lp-mega-whatsapp .label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.95;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    position: relative;
}

.lp-mega-whatsapp .number {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    display: block;
    position: relative;
    line-height: 1.2;
}

.lp-mega-whatsapp .sub-label {
    font-size: 13px;
    margin-top: 6px;
    opacity: 0.95;
    position: relative;
}

/* Dual sticky mobile bar (Phone + WhatsApp) */
.sticky-call-dual {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 12px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
    border-top: 1px solid var(--border);
    gap: 8px;
}

.sticky-call-dual.show {
    display: flex;
}

.sticky-call-dual .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    color: white;
}

.sticky-call-dual .btn-phone {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    animation: pulse-green 2s ease-in-out infinite;
}

.sticky-call-dual .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
}

.sticky-call-dual .sticky-btn .icon {
    font-size: 18px;
}

.sticky-call-dual .sticky-btn svg {
    width: 18px;
    height: 18px;
}

/* WhatsApp prominent inline button (smaller variant for sections) */
.lp-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white !important;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease);
}

.lp-wa-btn:hover {
    background: linear-gradient(135deg, #1DA851 0%, #128C7E 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.lp-wa-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile - dual sticky bar shows on mobile only */
@media (max-width: 768px) {
    .sticky-call {
        display: none !important;  /* hide single one */
    }
    .sticky-call-dual {
        display: flex !important;
    }
    
    .lp-mega-whatsapp {
        padding: 20px 24px;
    }
}

@media (min-width: 769px) {
    .sticky-call-dual {
        display: none !important;
    }
}
