/* ===========================
   Design Tokens
=========================== */
:root {
    --black: #0A0A0B;
    --grey-900: #111114;
    --grey-800: #1C1C21;
    --grey-700: #27272E;
    --grey-600: #3D3D47;
    --grey-400: #7A7A8A;
    --grey-200: #C8C8D0;
    --white: #FFFFFF;
    --amber: #F5A623;
    --amber-dark: #C4841A;
    --amber-light: #FBBF43;
    --red: #E63946;

    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container: 1200px;
    --radius: 4px;
    --radius-lg: 8px;

    --transition: 0.25s ease;
    --header-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   Typography
=========================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

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

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

/* ===========================
   Buttons
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-amber {
    background: var(--amber);
    color: var(--black);
    border-color: var(--amber);
}
.btn-amber:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--grey-200);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,255,255,0.2);
}

.btn-lg {
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
}

/* ===========================
   Section Utilities
=========================== */
.section-dark { background: var(--grey-900); }

.section-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amber);
    margin-bottom: 1rem;
}

.section-header { margin-bottom: 4rem; }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
}

/* ===========================
   Reveal Animation
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Emergency Bar
=========================== */
.emergency-bar {
    background: var(--red);
    padding: 0.55rem 0;
    position: relative;
    z-index: 1001;
}
.emergency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.emergency-bar a {
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.2rem 0.9rem;
    border-radius: 2rem;
    transition: background var(--transition);
}
.emergency-bar a:hover { background: rgba(255,255,255,0.15); }

/* ===========================
   Header
=========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-right: auto;
    text-decoration: none;
}
.logo-main {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.65rem;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.04em;
}
.logo-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--amber);
}

.main-nav ul { display: flex; gap: 0.25rem; }
.main-nav a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-200);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.main-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.07);
}

.nav-cta { font-size: 0.88rem; padding: 0.55rem 1.3rem; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { text-align: center; width: 100%; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav a {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 8vw, 3rem);
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    color: var(--white);
    transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--amber); }

/* ===========================
   Hero
=========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
    padding: 6rem 0 8rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: gridDrift 25s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

@keyframes gridDrift {
    0% { background-position: 0 0; }
    100% { background-position: 64px 64px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--amber);
    border: 1px solid rgba(245, 166, 35, 0.35);
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(4.5rem, 13vw, 10rem);
    line-height: 0.92;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-200);
    max-width: 520px;
    margin-bottom: 2.75rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--grey-600);
    z-index: 2;
    animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--grey-600), transparent);
}
@keyframes scrollPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   Trust Bar
=========================== */
.trust-bar {
    background: var(--grey-800);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.75rem 0;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 3rem;
    gap: 0.2rem;
}
.trust-item i { font-size: 1.25rem; color: var(--amber); margin-bottom: 0.25rem; }
.trust-item span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.trust-item small { font-size: 0.75rem; color: var(--grey-400); }
.trust-divider { width: 1px; height: 52px; background: rgba(255,255,255,0.08); }

/* ===========================
   Services Section
=========================== */
.services-section { padding: 7rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    background: var(--grey-800);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
    text-decoration: none;
    color: inherit;
}
.service-card:hover { background: var(--grey-700); }
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--amber);
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--amber);
    color: var(--black);
    border-color: var(--amber);
}

.service-card h3 { font-size: 1.35rem; letter-spacing: 0.02em; }

.service-card p { font-size: 0.88rem; color: var(--grey-400); line-height: 1.65; flex: 1; }

.service-arrow {
    color: var(--amber);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--transition);
    align-self: flex-start;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ===========================
   Stats Section
=========================== */
.stats-section {
    padding: 8rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.stats-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(8rem, 20vw, 18rem);
    text-transform: uppercase;
    color: rgba(255,255,255,0.018);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.05em;
    user-select: none;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item { padding: 2rem 1rem; }

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    color: var(--white);
    position: relative;
    display: inline-block;
}
.stat-number::after {
    content: '+';
    font-size: 0.45em;
    color: var(--amber);
    position: absolute;
    top: 0.1em;
    right: -0.6em;
}
.stat-number.no-plus::after { display: none; }

.stat-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-200);
    margin-top: 0.5rem;
}
.stat-sub { font-size: 0.78rem; color: var(--grey-400); margin-top: 0.25rem; }

/* ===========================
   Why Section
=========================== */
.why-section { padding: 8rem 0; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-intro {
    font-size: 1.05rem;
    color: var(--grey-200);
    margin: 1.5rem 0 2rem;
    line-height: 1.75;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--grey-200);
}
.why-list i { color: var(--amber); font-size: 0.95rem; flex-shrink: 0; }

.why-card-stack {
    position: relative;
    height: 380px;
}

.why-card-big {
    position: absolute;
    top: 0;
    left: 0;
    right: 44px;
    bottom: 44px;
    background: var(--grey-700);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}
.why-card-year {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--amber);
}
.why-card-num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(5rem, 10vw, 8rem);
    line-height: 1;
    color: var(--white);
}
.why-card-caption {
    font-size: 0.88rem;
    color: var(--grey-400);
    max-width: 180px;
    line-height: 1.5;
}
.why-card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 44px);
    height: calc(100% - 44px);
    background: var(--amber);
    border-radius: var(--radius-lg);
    opacity: 0.12;
    z-index: 1;
}

/* ===========================
   Emergency Section
=========================== */
.emergency-section {
    background: var(--red);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.emergency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.04) 20px,
        rgba(0,0,0,0.04) 40px
    );
}

.emergency-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.emergency-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.75rem;
}
.emergency-label i { color: #FFE08A; }

.emergency-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}
.emergency-content p { font-size: 0.95rem; color: rgba(255,255,255,0.65); }

.emergency-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.emergency-note {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.45);
}

/* ===========================
   Footer
=========================== */
.site-footer {
    background: var(--grey-900);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--grey-400); line-height: 1.6; margin-bottom: 0.4rem; }

.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--amber);
    margin-bottom: 1.25rem;
}

.footer-nav ul,
.footer-services ul { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-nav a,
.footer-services li { font-size: 0.88rem; color: var(--grey-400); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }

.footer-contact p { font-size: 0.88rem; color: var(--grey-400); line-height: 1.6; margin-bottom: 0.4rem; }
.footer-contact a { color: var(--grey-200); transition: color var(--transition); }
.footer-contact a:hover { color: var(--amber); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.78rem;
    color: var(--grey-600);
}

/* ===========================
   Page Hero (inner pages)
=========================== */
.page-hero {
    padding: 6rem 0 5rem;
    background: var(--grey-900);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 166, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p { color: var(--grey-400); margin-top: 1rem; max-width: 520px; font-size: 1.1rem; }

/* ===========================
   Services Full Page
=========================== */
.services-full { padding: 6rem 0; }

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-row {
    background: var(--grey-900);
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    transition: background var(--transition);
}
.service-row:hover { background: var(--grey-800); }

.service-row-icon {
    width: 62px;
    height: 62px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--amber);
    flex-shrink: 0;
    transition: all var(--transition);
}
.service-row:hover .service-row-icon {
    background: var(--amber);
    color: var(--black);
    border-color: var(--amber);
}

.service-row h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.service-row p { color: var(--grey-400); line-height: 1.7; max-width: 580px; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.service-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-400);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.22rem 0.7rem;
    border-radius: 2rem;
}

/* ===========================
   Contact Page
=========================== */
.contact-section { padding: 6rem 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.contact-info > p { color: var(--grey-400); line-height: 1.7; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; }

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.contact-detail-text { display: flex; flex-direction: column; }
.contact-detail-text span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey-400);
}
.contact-detail-text a,
.contact-detail-text p { font-size: 1rem; color: var(--white); margin: 0; }
.contact-detail-text a { transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--amber); }

.contact-form {
    background: var(--grey-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 3rem;
}
.contact-form h3 { font-size: 1.8rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.4rem; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--grey-400);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--grey-700);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-600); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--amber); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A7A8A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-group select option { background: var(--grey-800); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-full { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem; }

/* ===========================
   Map
=========================== */
.map-wrap {
    margin-top: 4rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.25rem;
    background: var(--grey-800);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-200);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.map-label i { color: var(--amber); }

.map-frame {
    height: 400px;
    position: relative;
}
.map-frame iframe {
    display: block;
    filter: grayscale(30%) invert(92%) hue-rotate(180deg);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .why-grid { grid-template-columns: 1fr; gap: 4rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav, .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-inner { flex-direction: column; gap: 1rem; }
    .trust-divider { width: 40px; height: 1px; }
    .emergency-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .service-row { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero-actions { flex-direction: column; }
    .btn-lg { width: 100%; justify-content: center; }
    .contact-form { padding: 2rem 1.5rem; }
    .emergency-bar .container { flex-direction: column; gap: 0.5rem; }
}
