/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: #fff;
}

/* ===== Variables ===== */
:root {
    --primary: #1e3a5f;
    --primary-dark: #152b47;
    --accent: #f97316;
    --accent-dark: #ea6c0a;
    --white: #ffffff;
    --light: #f8fafc;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
    --radius: 8px;
    --radius-lg: 12px;
}

/* ===== Utilities ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { color: var(--muted); }
a { text-decoration: none; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all .2s ease;
    font-family: inherit;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ===== Navigation ===== */
.nav {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.nav-logo-icon {
    width: 38px; height: 38px;
    background: var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.nav-logo-name { font-weight: 800; font-size: 1.15rem; line-height: 1.1; }
.nav-logo-name span { display: block; font-size: 0.65rem; font-weight: 400; opacity: .7; letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 9px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    transition: background .2s;
}
.nav-cta:hover { background: var(--accent-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: #fff; }

/* Mobile nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--primary-dark);
    position: absolute;
    top: 68px; left: 0; right: 0;
    padding: 8px 24px 16px;
    z-index: 199;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    color: rgba(255,255,255,.85);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-weight: 500;
    font-size: .95rem;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: #fff; }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a90 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -60px;
    width: 380px; height: 380px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}
.hero-content { max-width: 620px; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,.15);
    color: #fbb469;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid rgba(249,115,22,.3);
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero-sub { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 34px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.stat-num { font-size: 1.85rem; font-weight: 800; color: #fff; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ===== Section Scaffold ===== */
.section { padding: 80px 0; }
.section-light { background: var(--light); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px;
}
.section-header h2 { color: var(--primary); margin-bottom: 14px; }
.section-header p { max-width: 540px; margin: 0 auto; font-size: 1rem; }

/* ===== Service Cards (Home overview) ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 50px; height: 50px;
    background: rgba(30,58,95,.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: var(--primary);
}
.service-card h3 { color: var(--primary); margin-bottom: 8px; }
.service-card p { font-size: .9rem; line-height: 1.65; }

/* ===== Why Choose Us ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.feature-item { text-align: center; padding: 28px 20px; }
.feature-icon {
    width: 62px; height: 62px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
}
.feature-item h3 { color: var(--primary); margin-bottom: 8px; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star { color: #f59e0b; font-size: .95rem; }
.review-text { color: var(--text); font-size: .9rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: .85rem;
    flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--text); font-size: .9rem; }
.review-time { font-size: .75rem; color: var(--muted); }

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a90 100%);
    padding: 80px 0;
    text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Guarantee ===== */
.guarantee-section {
    background: var(--primary);
    padding: 80px 0;
}
.guarantee-section .section-label { color: var(--accent); }
.guarantee-section .section-header h2 { color: #fff; }
.guarantee-section .section-header p { color: rgba(255,255,255,.7); }
.guarantee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 44px; }
.guarantee-item {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 26px;
    text-align: center;
}
.guarantee-emoji { font-size: 2.2rem; margin-bottom: 12px; }
.guarantee-item h4 { color: #fff; font-size: .95rem; margin-bottom: 6px; }
.guarantee-item p { color: rgba(255,255,255,.6); font-size: .82rem; }

/* ===== Footer ===== */
.footer { background: #0d1e33; color: rgba(255,255,255,.75); padding: 60px 0 28px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 44px;
    margin-bottom: 44px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon {
    width: 34px; height: 34px;
    background: var(--accent);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
}
.footer-brand { font-weight: 800; color: #fff; font-size: 1.05rem; }
.footer-desc { font-size: .875rem; line-height: 1.7; margin-bottom: 0; }
.footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 10px; font-size: .875rem; align-items: flex-start; }
.footer-contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: rgba(255,255,255,.38);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a90 100%);
    padding: 56px 0;
    text-align: center;
    color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.76); font-size: 1rem; max-width: 480px; margin: 0 auto; }
.breadcrumb {
    display: flex; align-items: center; gap: 6px; justify-content: center;
    margin-bottom: 16px; font-size: .8rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.35); }
.breadcrumb .cur { color: rgba(255,255,255,.9); }

/* ===== Services Detail (services.html) ===== */
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 26px; }
.svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.svc-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.svc-card-head {
    background: var(--primary);
    padding: 22px 26px;
    display: flex; align-items: center; gap: 14px;
}
.svc-card-head svg { color: var(--accent); flex-shrink: 0; }
.svc-card-head h3 { color: #fff; font-size: 1.05rem; }
.svc-card-body { padding: 22px 26px; }
.svc-card-body p { font-size: .9rem; line-height: 1.7; margin-bottom: 14px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: .875rem; color: var(--text);
}
.svc-list li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ===== About Page ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a90 100%);
    border-radius: var(--radius-lg);
    padding: 56px 36px;
    text-align: center;
    color: #fff;
}
.about-visual-icon { font-size: 4.5rem; margin-bottom: 18px; }
.about-visual h3 { font-size: 1.4rem; margin-bottom: 8px; }
.about-visual p { color: rgba(255,255,255,.72); font-size: .9rem; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.astat {
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
}
.astat-num { font-size: 1.75rem; font-weight: 800; color: var(--accent); }
.astat-label { font-size: .75rem; color: rgba(255,255,255,.65); margin-top: 3px; }
.about-content .section-label, .about-content h2 { text-align: left; }
.about-content h2 { color: var(--primary); margin-bottom: 14px; }
.about-text { color: var(--muted); font-size: .98rem; line-height: 1.8; margin-bottom: 14px; }
.value-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.value-list li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text); }
.val-check {
    width: 22px; height: 22px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #fff;
}

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}
.team-avatar {
    width: 72px; height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem; font-weight: 800; color: #fff;
}
.team-card h3 { color: var(--primary); font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: .85rem; }

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-box {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-info-box h3 { color: var(--primary); margin-bottom: 28px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.cd-icon {
    width: 42px; height: 42px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
}
.cd-text strong { display: block; color: var(--text); font-size: .88rem; margin-bottom: 2px; }
.cd-text span { color: var(--muted); font-size: .88rem; }
.hours-block { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
.hours-block h4 { color: var(--primary); margin-bottom: 12px; font-size: .95rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; padding: 7px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); font-weight: 500; }
.hours-row .time { color: var(--muted); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: .9rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color .2s;
    background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-title { color: var(--primary); margin-bottom: 22px; font-size: 1.35rem; }

/* ===== Hero V2 ===== */
.hero-v2 {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}
.hero-v2::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: rgba(249,115,22,.06);
    border-radius: 50%;
    pointer-events: none;
}
.hero-v2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 0;
}
.hero-v2-text { position: relative; z-index: 1; padding-bottom: 80px; }
.hero-v2-h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-v2-h1 span { color: var(--accent); }
.hero-v2-sub {
    color: rgba(255,255,255,.78);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.hpill {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.18);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 500;
}
.hero-v2-visual {
    position: relative;
    align-self: flex-end;
}
.hero-v2-img-wrap {
    position: relative;
}
.hero-v2-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px 16px 0 0;
    display: block;
    box-shadow: -20px 20px 60px rgba(0,0,0,.35);
}
.hero-emergency-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.emergency-dot {
    width: 10px; height: 10px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero-emergency-badge strong { display: block; color: var(--text); font-size: .82rem; }
.hero-emergency-badge span { color: var(--muted); font-size: .75rem; }
.hero-rating-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--accent);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(249,115,22,.4);
}
.rating-stars { color: #fff; font-size: 1rem; letter-spacing: 2px; }
.rating-text { color: rgba(255,255,255,.9); font-size: .7rem; font-weight: 600; margin-top: 2px; }

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--primary-dark);
    padding: 28px 0;
}
.stats-bar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.stats-bar-item {
    text-align: center;
    padding: 0 48px;
}
.stats-bar-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stats-bar-label {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.stats-bar-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

/* ===== Service Image Cards ===== */
.svc-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    cursor: pointer;
}
.svc-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.svc-img-card:hover .svc-img-bg { transform: scale(1.07); }
.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,16,36,.97) 30%, rgba(8,16,36,.55) 65%, rgba(8,16,36,.2) 100%);
    transition: background .3s;
}
.svc-img-card:hover .svc-img-overlay {
    background: linear-gradient(to top, rgba(8,16,36,1) 35%, rgba(8,16,36,.65) 70%, rgba(8,16,36,.3) 100%);
}
.svc-img-content {
    position: relative;
    z-index: 1;
    padding: 28px;
}
.svc-img-icon {
    width: 42px; height: 42px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    margin-bottom: 12px;
}
.svc-img-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 7px;
}
.svc-img-card p {
    color: rgba(255,255,255,.7);
    font-size: .875rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.svc-arrow {
    display: inline-block;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-6px);
    transition: all .3s;
}
.svc-img-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ===== Trust Split ===== */
.trust-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.trust-split-image {
    position: relative;
    overflow: hidden;
}
.trust-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.trust-split-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,50,.55) 0%, rgba(10,20,50,.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}
.trust-years-badge {
    background: var(--accent);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-years-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.trust-years-num span { font-size: 1.8rem; }
.trust-years-label {
    color: rgba(255,255,255,.9);
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.4;
}
.trust-split-content {
    background: #fff;
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trust-split-content h2 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.2;
}
.trust-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.trust-checklist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.tc-icon {
    width: 26px; height: 26px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}
.trust-checklist strong { display: block; color: var(--text); font-size: .95rem; margin-bottom: 2px; }
.trust-checklist span { color: var(--muted); font-size: .875rem; line-height: 1.5; }

/* ===== Team Strip ===== */
.team-strip-section {
    background: var(--primary);
}
.team-strip-header {
    text-align: center;
    padding: 64px 24px 40px;
}
.team-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.ts-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.ts-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s ease;
}
.ts-card:hover img { transform: scale(1.06); }
.ts-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,20,50,.95) 0%, rgba(10,20,50,.6) 60%, transparent 100%);
    padding: 32px 20px 22px;
    transform: translateY(8px);
    transition: transform .3s;
}
.ts-card:hover .ts-overlay { transform: translateY(0); }
.ts-name { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.ts-role { color: rgba(255,255,255,.7); font-size: .78rem; }

/* ===== CTA with Background Image ===== */
.cta-image-section {
    position: relative;
    padding: 110px 0;
    text-align: center;
    overflow: hidden;
}
.cta-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
}
.cta-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,50,.92) 0%, rgba(15,40,80,.88) 100%);
}
.cta-image-content {
    position: relative;
    z-index: 1;
}
.cta-image-badge {
    display: inline-block;
    background: rgba(249,115,22,.2);
    color: #fbb469;
    border: 1px solid rgba(249,115,22,.35);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 22px;
}
.cta-image-content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 14px;
}
.cta-image-content p {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Hero Image Layout ===== */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-image-wrap {
    position: relative;
    z-index: 1;
}
.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    border: 3px solid rgba(255,255,255,.15);
}

/* ===== About Photo ===== */
.about-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 0;
}
.about-visual {
    padding: 0;
    overflow: hidden;
}
.about-visual .about-stats-grid {
    padding: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a90 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ===== Team Photos ===== */
.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    border: 3px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-v2-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .trust-split { grid-template-columns: 1fr; }
    .trust-split-image { min-height: 380px; }
    .trust-split-content { padding: 56px 40px; }
    .svc-img-grid { grid-template-columns: 1fr 1fr; }
    .team-strip-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar-item { padding: 0 28px; }
}
@media (max-width: 768px) {
    /* ---- Nav ---- */
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: block; }

    /* ---- Hero V2 — Mobile: image behind text ---- */
    .hero-v2 { padding: 0; position: relative; min-height: 92svh; display: flex; flex-direction: column; }

    /* Image fills the full section as background */
    .hero-v2-visual {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .hero-v2-img-wrap,
    .hero-v2-img-wrap picture {
        display: block;
        width: 100%;
        height: 100%;
    }
    .hero-v2-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
        border-radius: 0;
        box-shadow: none;
    }

    /* Dark overlay so text is readable over the image */
    .hero-v2-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(10,20,50,.72) 0%, rgba(10,20,50,.88) 100%);
    }

    /* Text sits on top of the image */
    .hero-v2-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        position: relative;
        z-index: 1;
        padding-bottom: 0;
        gap: 0;
    }
    .hero-v2-text {
        padding: 72px 0 60px;
        text-align: center;
    }
    .hero-v2-h1 {
        font-size: clamp(1.9rem, 8.5vw, 2.4rem);
        letter-spacing: -0.01em;
    }
    .hero-v2-sub {
        font-size: .95rem;
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* Hide floating badges on mobile */
    .hero-emergency-badge,
    .hero-rating-badge { display: none; }

    /* Pills — centred row */
    .hero-pills {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }
    .hpill { font-size: .75rem; padding: 5px 11px; }

    /* Buttons — full-width, stacked, centred */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* ---- Other sections ---- */
    .hero { padding: 60px 0; }
    .hero-container { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
    .svc-img-grid { grid-template-columns: 1fr; }
    .svc-img-card { min-height: 240px; }
    .team-strip-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar-grid { flex-wrap: wrap; gap: 0; justify-content: center; }
    .stats-bar-item { padding: 14px 20px; width: 50%; }
    .stats-bar-divider { display: none; }
    .trust-split-content { padding: 44px 24px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .services-grid, .reviews-grid, .services-detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .guarantee-grid { grid-template-columns: 1fr 1fr; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .features-grid, .guarantee-grid, .about-stats-grid, .team-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .team-strip-grid { grid-template-columns: 1fr 1fr; }
    .hero-v2-h1 { font-size: 1.65rem; }
    .stats-bar-num { font-size: 1.6rem; }
}
