/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --navy: #0F172A;
    --navy-700: #1E293B;
    --orange: #F97316;
    --orange-dark: #EA580C;
    --orange-10: rgba(249, 115, 22, 0.08);
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-700: #334155;

    --font: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius: 8px;
    --radius-lg: 12px;

    --transition: 0.2s ease;

    --container: 1100px;
    --py: 5rem;
}

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

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

body {
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    /* extra bottom padding on mobile for sticky bar */
    padding-bottom: 0;
}

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

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

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

p {
    font-size: 1rem;
    color: var(--gray-500);
}

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

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.65rem;
}

.section-head {
    margin-bottom: 2.75rem;
}

.section-head h2 {
    margin-bottom: 0.5rem;
}

.section-head p {
    max-width: 520px;
}

.section-head.center {
    text-align: center;
}

.section-head.center p {
    margin: 0 auto;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--py) 0;
}

.bg-gray {
    background: var(--gray-50);
}

.bg-navy {
    background: var(--navy);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.7rem 1.45rem;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--navy);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.logo-sub {
    display: block;
    font-size: 0.66rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.04em;
    margin-top: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}

.header-phone svg {
    width: 14px;
    height: 14px;
    fill: var(--orange);
}

/* Mobile: hide header phone text above the number button */
@media (max-width: 540px) {
    .header-phone-text {
        display: none;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 5rem 0 4.5rem;
    background: var(--white);
}

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

.hero-inner h1 {
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.trust-line {
    font-size: 0.88rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.trust-stars {
    color: #F59E0B;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* Divider under hero */
.hero-divider {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-item {
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: border-color var(--transition), background var(--transition);
}

.service-item:hover {
    border-color: var(--orange);
    background: var(--orange-10);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0.875rem;
    color: var(--orange);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--orange);
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.service-item p {
    font-size: 0.87rem;
    line-height: 1.6;
}

/* ============================================
   STATS — no boxes, just big numbers
   ============================================ */
.stats-section {
    padding: 4rem 0;
}

.stats-divider-top {
    border: none;
    border-top: 1px solid var(--gray-100);
}

.stats-divider-bottom {
    border: none;
    border-top: 1px solid var(--gray-100);
}

.stats-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 3.5rem 0;
    gap: 2rem;
}

.stat-num {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-num span {
    color: var(--orange);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-top: 0.4rem;
    font-weight: 500;
}

/* Vertical dividers between stats */
.stats-wrap .stat-item+.stat-item {
    border-left: 1px solid var(--gray-100);
}

/* ============================================
   EMERGENCY
   ============================================ */
.emergency-wrap {
    background: var(--gray-50);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.emergency-copy {
    max-width: 520px;
}

.emergency-copy h2 {
    margin-bottom: 0.5rem;
}

.emergency-copy p {
    margin: 0;
}

.emergency-cta {
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.review-item {
    padding: 0;
    border: none;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.85rem;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: #F59E0B;
}

.review-text {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.1rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.reviewer-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.reviewer-loc {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Dividers between reviews */
.reviews-grid .review-item+.review-item {
    border-left: 1px solid var(--gray-200);
    padding-left: 1.75rem;
}

/* ============================================
   FINAL CTA (dark navy)
   ============================================ */
.final-cta {
    background: var(--navy);
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 0.65rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.final-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-700);
    color: rgba(255, 255, 255, 0.5);
    padding: 1.5rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.footer-inner a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-inner a:hover {
    color: var(--white);
}

/* ============================================
   FLOATING WHATSAPP (small, subtle)
   ============================================ */
.wa-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 800;
}

.wa-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float a:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

/* ============================================
   MOBILE STICKY BOTTOM CTA BAR
   ============================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 0.75rem 1rem;
    gap: 0.6rem;
    z-index: 850;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
}

.mobile-cta-bar a {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.7rem 0.5rem;
}

/* ============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================ */
@media (max-width: 900px) {
    :root {
        --py: 4rem;
    }

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

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

    .stats-wrap .stat-item+.stat-item {
        border-left: none;
    }

    .stats-wrap .stat-item:nth-child(even) {
        border-left: 1px solid var(--gray-100);
    }

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

    .reviews-grid .review-item+.review-item {
        border-left: none;
        border-top: 1px solid var(--gray-200);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .emergency-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.75rem;
    }

    .emergency-cta {
        width: 100%;
    }

    .emergency-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================ */
@media (max-width: 640px) {
    :root {
        --py: 3rem;
    }

    body {
        padding-bottom: 72px;
    }

    /* space for sticky bar */

    .hero {
        padding: 3rem 0;
    }

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

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

    .stats-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        padding: 2.5rem 0;
    }

    .stats-wrap .stat-item:nth-child(even) {
        border-left: 1px solid var(--gray-100);
    }

    .final-cta-btns .btn {
        width: 100%;
    }

    /* Show mobile CTA bar */
    .mobile-cta-bar {
        display: flex;
    }

    /* Hide WA float on mobile — sticky bar already has Call + WhatsApp */
    .wa-float {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}