/* =============================================
   ACTIVE FIRE SOLUTION NZ — MAIN STYLESHEET
   ============================================= */

:root {
    --fire-red:    #D62B2B;
    --fire-orange: #E8540A;
    --fire-dark:   #111111;
    --fire-gray:   #1C1C1C;
    --fire-mid:    #2A2A2A;
    --fire-light:  #F5F5F5;
    --fire-white:  #FFFFFF;
    --fire-muted:  #888888;
    --fire-accent: #FF6B35;
    --font-head:   'Oswald', sans-serif;
    --font-body:   'Source Sans 3', sans-serif;
    --transition:  0.3s ease;
    --shadow:      0 8px 32px rgba(214,43,43,0.15);
    --radius:      6px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--fire-dark);
    background: var(--fire-white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* ── TOP BAR ── */
.topbar {
    background: var(--fire-dark);
    color: #ccc;
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 2px solid var(--fire-red);
}
.topbar-info span { color: #ccc; }
.topbar-info i { color: var(--fire-red); }
.topbar-social a {
    color: #888;
    font-size: 1rem;
    transition: color var(--transition);
}
.topbar-social a:hover { color: var(--fire-red); }

/* ── NAVBAR ── */
.main-navbar {
    background: var(--fire-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.6rem 0;
    z-index: 1000;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    font-size: 2.2rem;
    color: var(--fire-red);
    height: 69px;
    animation: flicker 3s infinite;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fire-dark);
    letter-spacing: 2px;
}
.brand-sub {
    font-family: var(--font-head);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--fire-red);
    font-weight: 500;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--fire-dark) !important;
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    transition: color var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--fire-red);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 0.85rem; right: 0.85rem; }
.nav-link:hover, .nav-link.active { color: var(--fire-red) !important; }
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-top: 3px solid var(--fire-red);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 0.5rem 0;
}
.dropdown-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    color: var(--fire-dark);
    transition: all var(--transition);
}
.dropdown-item:hover { background: #fff4f4; color: var(--fire-red); padding-left: 1.6rem; }
.navbar-toggler { border-color: var(--fire-red); }
.navbar-toggler-icon { filter: none; }

/* ── BUTTONS ── */
.btn-fire {
    background: var(--fire-red);
    color: #fff !important;
    font-family: var(--font-head);
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--fire-red);
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-fire:hover {
    background: transparent;
    color: var(--fire-red) !important;
}
.btn-fire-outline {
    background: transparent;
    color: var(--fire-red) !important;
    font-family: var(--font-head);
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--fire-red);
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-fire-outline:hover { background: var(--fire-red); color: #fff !important; }
.btn-fire-white {
    background: var(--fire-white);
    color: var(--fire-red) !important;
    font-family: var(--font-head);
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--fire-white);
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-fire-white:hover { background: transparent; color: #fff !important; }

/* ── SECTION COMMONS ── */
.section-label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--fire-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    color: var(--fire-dark);
}
.section-title span { color: var(--fire-red); }
.divider-fire {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange));
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}
.divider-fire.mx-auto { margin-left: auto; margin-right: auto; }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(214,43,43,0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232,84,10,0.12) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D62B2B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214,43,43,0.15);
    border: 1px solid rgba(214,43,43,0.4);
    color: #ff6b6b;
    font-family: var(--font-head);
    font-size: 0.78rem;
    letter-spacing: 3px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s infinite;
}
.hero-badge i { color: var(--fire-red); font-size: 1rem; }
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.hero-title .highlight {
    color: var(--fire-red);
    position: relative;
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #bbb;
    max-width: 580px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--fire-red);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-image-side {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-fire-graphic {
    width: 100%;
    max-width: 500px;
    position: relative;
}
.fire-circle {
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214,43,43,0.25) 0%, rgba(232,84,10,0.15) 40%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: breathe 4s ease-in-out infinite;
}
.fire-circle::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 2px dashed rgba(214,43,43,0.3);
    animation: spin 20s linear infinite;
}
.fire-circle::after {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid rgba(214,43,43,0.2);
    animation: spin 10s linear infinite reverse;
}
.fire-icon-big {
    font-size: 10rem;
    color: var(--fire-red);
    animation: flicker 2s infinite;
    filter: drop-shadow(0 0 40px rgba(214,43,43,0.6));
}
.hero-float-badge {
    position: absolute;
    background: var(--fire-dark);
    border: 1px solid rgba(214,43,43,0.4);
    border-radius: var(--radius);
    padding: 0.8rem 1.2rem;
    color: #fff;
    font-size: 0.8rem;
    font-family: var(--font-head);
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.hero-float-badge i { color: var(--fire-red); margin-right: 6px; }
.badge-1 { top: 10%; left: -5%; animation: float1 4s ease-in-out infinite; }
.badge-2 { bottom: 20%; right: -5%; animation: float2 5s ease-in-out infinite; }

/* ── SERVICES HOME CARDS ── */
.services-section { padding: 6rem 0; background: var(--fire-light); }
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.35s ease;
    border-bottom: 4px solid transparent;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(214,43,43,0.04), transparent);
    transition: left 0.5s ease;
}
.service-card:hover::before { left: 0; }
.service-card:hover {
    border-bottom-color: var(--fire-red);
    box-shadow: 0 12px 40px rgba(214,43,43,0.12);
    transform: translateY(-6px);
}
.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #fff0f0, #ffe0e0);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--fire-red);
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--fire-red);
    color: #fff;
    transform: scale(1.1);
}
.service-card h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { color: #666; font-size: 0.95rem; }
.service-link {
    color: var(--fire-red);
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    transition: gap var(--transition);
}
.service-link:hover { gap: 12px; color: var(--fire-red); }

/* ── WHY CHOOSE US ── */
.why-section { padding: 6rem 0; background: var(--fire-dark); }
.why-section .section-title { color: #fff; }
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(214,43,43,0.1);
    border-color: rgba(214,43,43,0.4);
    transform: translateY(-4px);
}
.why-num {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(214,43,43,0.2);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}
.why-card:hover .why-num { color: var(--fire-red); }
.why-card h5 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-card p { color: #888; font-size: 0.92rem; margin: 0; }

/* ── CTA BAND ── */
.cta-section {
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '\f46a';
    font-family: 'bootstrap-icons';
    font-size: 20rem;
    color: rgba(255,255,255,0.05);
    position: absolute;
    right: -3rem; top: -3rem;
    line-height: 1;
}
.cta-section .section-title { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); }

/* ── PROCESS SECTION ── */
.process-section { padding: 6rem 0; }
.process-step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}
.process-step:not(:last-child)::after {
    content: '\f285';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: -20px; top: 22px;
    color: var(--fire-red);
    font-size: 1.5rem;
    opacity: 0.5;
}
.step-circle {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--fire-red);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    position: relative;
    z-index: 1;
}
.step-circle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(214,43,43,0.3);
}
.process-step h5 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: #666; }

/* ── PAGE HERO (Inner Pages) ── */
.page-hero {
    background: linear-gradient(135deg, #111 60%, #1a0505);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--fire-red));
}
.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
}
.page-hero-title span { color: var(--fire-red); }
.page-hero p { color: #aaa; font-size: 1.05rem; max-width: 600px; }
.breadcrumb-fire .breadcrumb-item { font-size: 0.85rem; }
.breadcrumb-fire .breadcrumb-item a { color: var(--fire-red); text-decoration: none; }
.breadcrumb-fire .breadcrumb-item.active { color: #888; }
.breadcrumb-fire .breadcrumb-item + .breadcrumb-item::before { color: #555; }

/* ── ABOUT PAGE ── */
.about-section { padding: 6rem 0; }
.about-image-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-img-placeholder {
    background: linear-gradient(135deg, var(--fire-dark), #2a0a0a);
    height: 450px;
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem;
    color: var(--fire-red);
    border-radius: var(--radius);
    position: relative;
}
.about-years-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--fire-red);
    color: #fff;
    width: 120px; height: 120px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: var(--font-head);
    box-shadow: 0 8px 24px rgba(214,43,43,0.4);
}
.about-years-badge span:first-child { font-size: 2.5rem; line-height: 1; }
.about-years-badge span:last-child { font-size: 0.7rem; letter-spacing: 2px; text-align: center; }
.check-list { list-style: none; padding: 0; }
.check-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #444;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}
.check-list li::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--fire-red);
    font-weight: 700;
}
.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.team-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a0a0a, var(--fire-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--fire-red);
    margin: 0 auto 1.2rem;
    border: 3px solid rgba(214,43,43,0.3);
}
.team-card h5 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card .role { color: var(--fire-red); font-size: 0.85rem; letter-spacing: 1px; font-family: var(--font-head); }

/* ── SERVICES PAGE ── */
.services-full-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.35s ease;
}
.services-full-card:hover { box-shadow: 0 16px 48px rgba(214,43,43,0.14); transform: translateY(-6px); }
.sfc-header {
    background: linear-gradient(135deg, var(--fire-dark), #2a0a0a);
    padding: 2rem;
    text-align: center;
}
.sfc-icon {
    font-size: 3.5rem;
    color: var(--fire-red);
    margin-bottom: 1rem;
    display: block;
}
.sfc-header h3 { color: #fff; font-size: 1.4rem; margin: 0; }
.sfc-body { padding: 2rem; }
.sfc-body p { color: #666; font-size: 0.93rem; }
.sfc-features { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.sfc-features li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    font-size: 0.88rem;
    color: #555;
}
.sfc-features li::before {
    content: '\f270';
    font-family: 'bootstrap-icons';
    position: absolute; left: 0;
    color: var(--fire-red);
    font-size: 0.7rem; top: 0.5rem;
}

/* ── SERVICE DETAIL PAGE ── */
.service-detail { padding: 5rem 0; }
.service-detail-img {
    background: linear-gradient(135deg, var(--fire-dark), #2a0505);
    border-radius: var(--radius);
    height: 380px;
    display: flex; align-items: center; justify-content: center;
    font-size: 9rem;
    color: var(--fire-red);
}
.info-box {
    background: #fff8f8;
    border-left: 4px solid var(--fire-red);
    padding: 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
}
.info-box h5 { font-size: 1rem; margin-bottom: 0.5rem; }
.info-box p { margin: 0; font-size: 0.9rem; color: #555; }
.sidebar-card {
    background: var(--fire-dark);
    border-radius: var(--radius);
    padding: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.sidebar-card h5 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }
.sidebar-services { list-style: none; padding: 0; }
.sidebar-services li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.sidebar-services li a:hover { color: var(--fire-red); padding-left: 6px; }
.sidebar-services li a i { color: var(--fire-red); }

/* ── CONTACT PAGE ── */
.contact-section { padding: 5rem 0; }
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.form-label { font-family: var(--font-head); letter-spacing: 1px; font-size: 0.88rem; margin-bottom: 0.4rem; }
.form-control, .form-select {
    border: 1.5px solid #e5e5e5;
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--fire-red);
    box-shadow: 0 0 0 3px rgba(214,43,43,0.1);
}
.contact-info-card {
    background: var(--fire-dark);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 60%;
    color: #fff;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
    width: 50px; height: 50px;
    background: rgba(214,43,43,0.15);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--fire-red);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-info-text h6 { color: #fff; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.3rem; }
.contact-info-text p, .contact-info-text a {
    color: #aaa; font-size: 0.9rem; margin: 0; text-decoration: none;
    transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--fire-red); }
.map-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: var(--radius);
    height: 350px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    color: var(--fire-red);
    margin-top: 1.5rem;
    border: 1px solid rgba(214,43,43,0.2);
}
.alert-fire {
    background: #fff8f8;
    border: 1px solid rgba(214,43,43,0.3);
    border-left: 4px solid var(--fire-red);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    color: var(--fire-dark);
    font-size: 0.9rem;
}
.alert-fire i { color: var(--fire-red); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 5rem 0; background: var(--fire-light); }
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-4px); }
.testimonial-card::before {
    content: '\f6b0';
    font-family: 'bootstrap-icons';
    font-size: 4rem;
    color: rgba(214,43,43,0.08);
    position: absolute;
    top: 1rem; right: 1.5rem;
    line-height: 1;
}
.stars { color: #f59e0b; margin-bottom: 1rem; }
.testimonial-card p { color: #555; font-size: 0.95rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; }
.author-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a0a0a, var(--fire-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--fire-red);
    font-size: 1.2rem;
}
.author-name { font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 0; }
.author-role { font-size: 0.8rem; color: #999; }

/* ── EMERGENCY FAB ── */
.emergency-fab {
    position: fixed;
    bottom: 2rem; right: 2rem;
    background: var(--fire-red);
    color: #fff;
    border-radius: 50px;
    padding: 0.85rem 1.5rem;
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(214,43,43,0.5);
    z-index: 9999;
    animation: pulse-fab 2s infinite;
    transition: transform var(--transition);
}
.emergency-fab:hover { color: #fff; transform: scale(1.05); }
.emergency-fab i { font-size: 1.1rem; }

/* ── FOOTER ── */
.footer { background: #0a0a0a; }
.footer-top { padding: 5rem 0 3rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer .brand-name { color: #fff; }
.footer-about { color: #777; font-size: 0.9rem; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: #888;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--fire-red); border-color: var(--fire-red); color: #fff; }
.footer-heading {
    font-family: var(--font-head);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(214,43,43,0.4);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links li a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.footer-links li a::before {
    content: '›';
    color: var(--fire-red);
    font-size: 1.1rem;
}
.footer-links li a:hover { color: var(--fire-red); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    color: #777;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
}
.footer-contact-list li i { color: var(--fire-red); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list li a { color: #777; text-decoration: none; transition: color var(--transition); }
.footer-contact-list li a:hover { color: var(--fire-red); }
.footer-cert { display: flex; flex-direction: column; gap: 8px; }
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(214,43,43,0.1);
    border: 1px solid rgba(214,43,43,0.2);
    color: #ff8888;
    font-size: 0.78rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-family: var(--font-head);
    letter-spacing: 1px;
}
.cert-badge i { color: var(--fire-red); }
.footer-bottom {
    background: #050505;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: #555; }
.footer-bottom a { color: var(--fire-red); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes flicker {
    0%,100% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 0.95; }
}
@keyframes breathe {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes float1 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes float2 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
@keyframes pulse-badge {
    0%,100% { box-shadow: 0 0 0 0 rgba(214,43,43,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(214,43,43,0); }
}
@keyframes pulse-fab {
    0%,100% { box-shadow: 0 6px 24px rgba(214,43,43,0.5); }
    50% { box-shadow: 0 6px 36px rgba(214,43,43,0.8); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-image-side { display: none; }
    .hero { min-height: 70vh; }
    .hero-stats { gap: 1.5rem; }
    .hero-float-badge { display: none; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.9rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .process-step::after { display: none; }
}
