/* =====================================================
   MILANO BROTHERS CONSTRUCTION — demo site stylesheet
   Dark navy + safety-orange accent · Oswald/Inter
   ===================================================== */

:root {
    --navy:       #0A1628;
    --navy-2:     #13203A;
    --navy-3:     #1E2D4C;
    --orange:     #F97316;
    --orange-2:   #EA580C;
    --orange-3:   #FDBA74;
    --cream:      #F5F1EB;
    --cream-2:    #FAF7F2;
    --white:      #FFFFFF;
    --charcoal:   #1F2937;
    --gray-1:     #4B5563;
    --gray-2:     #6B7280;
    --gray-3:     #9CA3AF;
    --gray-4:     #D1D5DB;
    --gray-5:     #E5E7EB;
    --gray-6:     #F3F4F6;
    --border:     #E5E7EB;
    --shadow-sm:  0 2px 8px rgba(10,22,40,0.06);
    --shadow:     0 8px 24px rgba(10,22,40,0.10);
    --shadow-lg:  0 20px 48px rgba(10,22,40,0.18);
    --font-display: 'Oswald', sans-serif;
    --font-body:    'Inter', sans-serif;
    --radius:     6px;
    --radius-lg:  14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream-2);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; color: var(--navy); }
h1 { font-size: 64px; }
h2 { font-size: 44px; }
h3 { font-size: 26px; }
h4 { font-size: 18px; text-transform: uppercase; letter-spacing: 1.5px; }

/* ============ TOPBAR ============ */
.topbar {
    background: var(--navy);
    color: #cdd5e4;
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left { display: flex; gap: 28px; }
.topbar-left i { color: var(--orange); margin-right: 6px; }
.topbar-phone {
    color: var(--white);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.topbar-phone i { color: var(--orange); }
.topbar-phone:hover { color: var(--orange); }
@media (max-width: 768px) {
    .topbar-hours { display: none; }
    .topbar { font-size: 12px; }
}

/* ============ HEADER ============ */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand-logo { height: 56px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a,
.main-nav .nav-dropdown > a {
    padding: 10px 14px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy);
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.main-nav > a:hover,
.main-nav .nav-dropdown > a:hover,
.main-nav > a.active,
.main-nav .nav-dropdown > a.active {
    color: var(--orange);
}
.main-nav .btn-quote {
    margin-left: 12px;
    padding: 12px 22px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.main-nav .btn-quote:hover { background: var(--orange-2); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(249,115,22,0.35); }
.main-nav .btn-quote i { font-size: 12px; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    display: none;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--charcoal);
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--orange); }

.hamburger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.2s; }

@media (max-width: 980px) {
    .brand-logo { height: 44px; }
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 4px;
        box-shadow: -12px 0 40px rgba(0,0,0,0.3);
        transition: right 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    .main-nav.open { right: 0; }
    .main-nav > a,
    .main-nav .nav-dropdown > a { color: var(--white); padding: 14px 18px; }
    .main-nav > a.active,
    .main-nav .nav-dropdown > a.active,
    .main-nav > a:hover,
    .main-nav .nav-dropdown > a:hover { color: var(--orange); background: rgba(255,255,255,0.04); }
    .nav-dropdown-menu {
        position: static;
        display: block;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0 0 8px 20px;
    }
    .nav-dropdown-menu a { color: #cdd5e4; padding: 8px 14px; }
    .nav-dropdown-menu a:hover { background: transparent; color: var(--orange); }
    .btn-desktop-only { display: none !important; }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-2); border-color: var(--orange-2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(249,115,22,0.35); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-2); border-color: var(--navy-2); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; letter-spacing: 1.5px; }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.78) 45%, rgba(10,22,40,0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 720px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.5);
    border-radius: 999px;
    color: var(--orange-3);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}
.hero-eyebrow i { font-size: 10px; }
.hero h1 {
    color: var(--white);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.02;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.hero h1 span.accent { color: var(--orange); }
.hero-sub {
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin-bottom: 36px;
    line-height: 1.5;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}
.hero-trust-item i { color: var(--orange); font-size: 20px; }
.hero-trust-item strong { color: var(--white); display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1; }
.hero-trust-item small { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; }

@media (max-width: 768px) {
    .hero { min-height: 560px; }
    .hero-content { padding: 56px 0; }
    .hero h1 { font-size: 44px; }
    .hero-sub { font-size: 16px; }
    .hero-trust { gap: 20px; }
    .hero-trust-item { font-size: 13px; }
    .hero-trust-item strong { font-size: 18px; }
}

/* ============ PAGE HERO (non-home) ============ */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(249,115,22,0.2) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero-eyebrow {
    font-family: var(--font-display);
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.page-hero h1 { color: var(--white); font-size: 58px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 680px; margin: 18px auto 0; }

@media (max-width: 768px) {
    .page-hero { padding: 60px 0 48px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero p { font-size: 15px; }
}

/* ============ SECTION HEADINGS ============ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.section-title { margin-bottom: 14px; }
.section-lead { font-size: 17px; color: var(--gray-1); max-width: 680px; line-height: 1.6; }
.section-heading-center { text-align: center; margin-bottom: 60px; }
.section-heading-center .section-lead { margin: 14px auto 0; }

.section-dark { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-lead { color: rgba(255,255,255,0.75); }

.section-cream { background: var(--cream); }

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-sm { padding: 48px 0; }
    h2 { font-size: 32px; }
    .section-heading-center { margin-bottom: 40px; }
}

/* ============ SERVICES GRID ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px;
    height: 64px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 28px;
    transition: all 0.25s;
}
.service-card:hover .service-icon { background: var(--orange); color: var(--white); }
.service-card h3 { color: var(--navy); }
.service-card p { color: var(--gray-1); font-size: 15px; line-height: 1.6; }
.service-card-link {
    font-family: var(--font-display);
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.service-card-link i { transition: transform 0.2s; }
.service-card:hover .service-card-link i { transform: translateX(4px); }

@media (max-width: 960px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px 24px; }
}

/* ============ WHY US / TRUST ============ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-item { text-align: center; padding: 0 16px; }
.trust-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
    color: var(--white);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(249,115,22,0.25);
}
.trust-item h3 { color: var(--navy); font-size: 22px; margin-bottom: 10px; }
.trust-item p { color: var(--gray-1); font-size: 15px; line-height: 1.7; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ STATS ROW ============ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--orange); line-height: 1; letter-spacing: -1px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-top: 8px; display: block; font-family: var(--font-display); }
@media (max-width: 760px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
    .stat-number { font-size: 38px; }
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-grid-home {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    cursor: pointer;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '\f00e'; /* search-plus */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(249,115,22,0.5) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-grid-home .gallery-item { aspect-ratio: auto; }
.gallery-grid-home .gallery-item.span-2 { grid-column: span 2; grid-row: span 2; }

@media (max-width: 960px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid-home { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 140px; }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-grid-home { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 0;
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--orange); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 600px) {
    .lightbox { padding: 16px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 18px; }
    .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
}

/* ============ CTA STRIP ============ */
.cta-strip {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
    padding: 56px 0;
    color: var(--white);
}
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h3 { color: var(--white); font-size: 32px; margin-bottom: 6px; }
.cta-strip p { font-size: 16px; opacity: 0.92; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: var(--white); color: var(--orange); border-color: var(--white); }
.cta-strip .btn-primary:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-strip .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.7); }
.cta-strip .btn-outline:hover { background: var(--white); color: var(--orange); }
@media (max-width: 760px) { .cta-strip { padding: 40px 0; } .cta-strip h3 { font-size: 24px; } }

/* ============ SERVICE DETAIL PAGE ============ */
.service-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.service-detail-main h2 { margin-bottom: 24px; }
.service-detail-main p { font-size: 16px; color: var(--gray-1); line-height: 1.7; margin-bottom: 18px; }
.service-detail-main h3 { font-size: 22px; margin: 30px 0 16px; color: var(--navy); }
.service-detail-main ul { padding-left: 0; margin-bottom: 20px; }
.service-detail-main ul li { position: relative; padding: 10px 0 10px 32px; font-size: 15px; color: var(--charcoal); border-bottom: 1px solid var(--border); }
.service-detail-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--orange);
    font-size: 14px;
}
.service-detail-sidebar {
    background: var(--navy);
    color: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    align-self: start;
    position: sticky;
    top: 90px;
}
.service-detail-sidebar h3 { color: var(--white); margin-bottom: 12px; font-size: 22px; }
.service-detail-sidebar p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 22px; }
.service-detail-sidebar .btn { width: 100%; justify-content: center; }
.service-detail-sidebar .phone-block {
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}
.service-detail-sidebar .phone-block small {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-weight: 600;
}
.service-detail-sidebar .phone-block a { font-family: var(--font-display); font-size: 28px; color: var(--orange); font-weight: 700; }
.service-detail-sidebar ul { margin-top: 16px; }
.service-detail-sidebar ul li { padding: 6px 0 6px 26px; font-size: 13px; }
.service-detail-sidebar ul li::before { color: var(--orange); top: 8px; }

@media (max-width: 960px) {
    .service-detail { grid-template-columns: 1fr; gap: 32px; }
    .service-detail-sidebar { position: static; }
}

/* ============ CONTACT / QUOTE FORM ============ */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; }
.quote-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
}
.quote-form h2 { margin-bottom: 8px; }
.quote-form p.form-lead { color: var(--gray-1); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-family: var(--font-display); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy); margin-bottom: 8px; }
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--cream-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(249,115,22,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.quote-form button[type=submit] { width: 100%; justify-content: center; margin-top: 8px; }

.contact-sidebar-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    align-self: start;
}
.contact-sidebar-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-sidebar-card p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; }
.contact-method-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(249,115,22,0.2);
    border: 1px solid rgba(249,115,22,0.4);
    border-radius: 50%;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.contact-method-text small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.6); font-family: var(--font-display); font-weight: 600; margin-bottom: 4px; }
.contact-method-text a,
.contact-method-text span { color: var(--white); font-weight: 600; font-size: 16px; }
.contact-method-text a:hover { color: var(--orange); }

@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .quote-form { padding: 28px 22px; }
}

/* ============ FLASH / ALERT ============ */
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 15px; display: flex; gap: 12px; align-items: flex-start; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.alert i { font-size: 20px; line-height: 1.2; }

/* ============ FOOTER ============ */
.site-footer { background: #050D1C; color: rgba(255,255,255,0.7); padding: 72px 0 24px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; font-family: var(--font-display); letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); transition: color 0.2s; font-size: 14px; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact li i { color: var(--orange); font-size: 14px; width: 18px; padding-top: 4px; }
.footer-logo { height: 56px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tagline { color: rgba(255,255,255,0.75); margin-bottom: 8px; font-size: 14px; line-height: 1.6; }
.footer-years { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 16px; }
.footer-license {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.35);
    border-radius: var(--radius);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-legal a { color: rgba(255,255,255,0.65); margin-left: 10px; }
.footer-legal a:hover { color: var(--orange); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
