@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@300;400;500;600&family=Roboto+Mono:wght@400;500&display=swap');

:root {
    --col-steel:    #1a2332;
    --col-steel-2:  #243144;
    --col-steel-3:  #2e3f57;
    --col-amber:    #e8a020;
    --col-amber-2:  #f0b840;
    --col-amber-dk: #c47a10;
    --col-white:    #f5f3ef;
    --col-off:      #eae7e0;
    --col-text:     #2a2a2a;
    --col-muted:    #5a6475;
    --col-border:   #ddd8cc;
    --col-light:    #f8f6f2;
    --col-card:     #ffffff;

    --shadow-sm:  0 2px 8px rgba(26,35,50,0.08);
    --shadow-md:  0 6px 24px rgba(26,35,50,0.12);
    --shadow-lg:  0 16px 50px rgba(26,35,50,0.18);
    --shadow-xl:  0 30px 80px rgba(26,35,50,0.22);

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 110px;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --font-mono:    'Roboto Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--col-light);
    color: var(--col-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

#page-container { position: relative; min-height: 100vh; }

#content-wrap {
    padding-top: var(--header-h);
    padding-bottom: 7rem;
    animation: pageFadeIn 0.5s ease both;
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- HEADER ---- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 100;
    background: var(--col-steel);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    transition: height var(--transition);
    gap: 12px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--col-amber) 0%, var(--col-amber-2) 60%, transparent 100%);
}

.header .logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

.header-logo {
    height: 78px;
    width: auto;
    transition: height var(--transition), opacity var(--transition);
    filter: brightness(0) saturate(100%) invert(94%) sepia(8%) saturate(229%) hue-rotate(349deg) brightness(101%) contrast(92%);
}
.header-logo:hover { opacity: 0.88; }

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(245,243,239,0.85);
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.header li a {
    display: block;
    padding: 9px 16px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245,243,239,0.9);
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
}

.header li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 2px;
    background: var(--col-amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    border-radius: 2px;
}

.header li a:hover {
    color: var(--col-amber-2);
    border-color: rgba(232,160,32,0.25);
    background: rgba(232,160,32,0.08);
}
.header li a:hover::after { transform: scaleX(1); }

/* GET A QUOTE button */
.header-quote-btn {
    display: inline-block;
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--col-steel);
    background: var(--col-amber);
    border: 2px solid var(--col-amber);
    border-radius: 4px;
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(232,160,32,0.35);
    flex-shrink: 0;
}
.header-quote-btn:hover {
    background: var(--col-amber-dk);
    border-color: var(--col-amber-dk);
    color: var(--col-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232,160,32,0.45);
    text-decoration: none;
}

/* Hamburger */
.menu-btn { display: none; }

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    flex-shrink: 0;
}

.menu-icon .navicon {
    background: var(--col-white);
    display: block;
    height: 3px;
    width: 28px;
    position: relative;
    border-radius: 2px;
    transition: background var(--transition);
}
.menu-icon .navicon::before,
.menu-icon .navicon::after {
    content: '';
    background: var(--col-white);
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-icon .navicon::before { top: 9px; }
.menu-icon .navicon::after  { top: -9px; }

.header .menu-btn:checked ~ .menu-icon .navicon { background: transparent; }
.header .menu-btn:checked ~ .menu-icon .navicon::before { transform: rotate(-45deg); top: 0; }
.header .menu-btn:checked ~ .menu-icon .navicon::after  { transform: rotate(45deg); top: 0; }

.header .menu { clear: both; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.header .menu-btn:checked ~ .header-right .menu { max-height: 300px; }

@media (max-width: 974px) {
    .header { flex-wrap: wrap; height: auto; min-height: 74px; padding: 8px 16px; }
    .header-logo { height: 54px; }
    .header-contact { display: none; }
    .header-quote-btn {
        display: block;
        width: calc(100% - 32px);
        margin: 8px 16px 14px;
        text-align: center;
    }
    .menu-icon { display: block; }
    .header-right {
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    .header .menu-btn:checked ~ .header-right { max-height: 420px; }
    .header .menu { max-height: none; }
    .header ul { flex-direction: column; gap: 0; width: 100%; padding: 8px 0; }
    .header li a { padding: 12px 16px; font-size: 18px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .header li a::after { display: none; }
    #content-wrap { padding-top: 74px; }
}

@media (min-width: 975px) {
    .header .menu { max-height: none; overflow: visible; }
    .header-right { max-height: none; overflow: visible; }
    .header ul { flex-direction: row; }
}

/* ---- FOOTER ---- */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 7rem;
    background: var(--col-steel);
    color: rgba(245,243,239,0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--col-amber) 0%, var(--col-amber-2) 40%, transparent 100%);
}
.footer-contact { font-family: var(--font-mono); font-size: 12px; line-height: 1.8; letter-spacing: 0.3px; }
.footer-link { text-decoration: none; color: var(--col-amber-2); transition: color var(--transition); }
.footer-link:hover { color: var(--col-white); }
.copyright-text { font-family: var(--font-mono); font-size: 11px; opacity: 0.55; letter-spacing: 0.3px; }

/* ---- BUTTONS ---- */
.normal-button {
    display: inline-block;
    padding: 13px 34px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--col-steel);
    background: var(--col-amber);
    border: 2px solid var(--col-amber);
    border-radius: 4px;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(232,160,32,0.3);
    position: relative;
    overflow: hidden;
}
.normal-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.15);
    transition: left 0.3s ease;
}
.normal-button:hover {
    background: var(--col-amber-dk);
    border-color: var(--col-amber-dk);
    color: var(--col-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,160,32,0.4);
    text-decoration: none;
}
.normal-button:hover::before { left: 100%; }

/* ---- STAT BAR ---- */
.stat-bar {
    background: var(--col-amber);
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 40px;
    border-right: 1px solid rgba(26,35,50,0.15);
    flex: 1;
    min-width: 150px;
    text-align: center;
    transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.14); }

.stat-num {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--col-steel);
    line-height: 1;
    letter-spacing: -1px;
}
.stat-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--col-steel);
    opacity: 0.72;
    margin-top: 6px;
    max-width: 130px;
    line-height: 1.3;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
    background: var(--col-steel-2);
    padding: 64px 8%;
    display: flex;
    gap: 0;
    align-items: stretch;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 220px;
    padding: 0 36px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; padding-right: 0; }

.trust-icon { font-size: 30px; line-height: 1; }

.trust-item h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--col-amber);
}
.trust-item p {
    font-size: 15px;
    color: rgba(245,243,239,0.62);
    line-height: 1.7;
}

/* ---- LEGACY ---- */
.head-h1 { display: none; }

@media (max-width: 768px) {
    .trust-strip { flex-direction: column; padding: 40px 8%; gap: 36px; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 36px; }
    .trust-item:first-child { padding-left: 0; }
    .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 600px) {
    footer { flex-direction: column; height: auto; padding: 20px 24px 16px; gap: 8px; text-align: center; }
    .copyright-text { text-align: center; }
}

@media (max-width: 500px) {
    .stat-item { padding: 18px 16px; min-width: 120px; }
    .stat-num { font-size: 38px; }
    .stat-label { font-size: 10px; }
}