:root {
    --black: #050505;
    --navy: #002347;
    --silver: #C0C0C0;
    --grey: #1A1A1A;
    --steel: #2F2F2F;
    --white: #FFFFFF;
    --glass: rgba(0, 35, 71, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--black); color: var(--white); overflow-x: hidden; width: 100%; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- NAVIGATION --- */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 10px 5%; display: flex; justify-content: space-between; align-items: center;
    background: var(--glass); backdrop-filter: blur(15px); border-bottom: 1px solid var(--silver);
}
.logo-box { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 50px; height: 50px; border: 2px solid var(--silver); border-radius: 4px; display: flex; align-items: center; justify-content: center; background: var(--navy); overflow: hidden; }
.logo-img img { height: 100%; width: auto; }
.logo-text { font-weight: 800; font-size: 1.1rem; line-height: 1; color: var(--white); }
.logo-text span { color: var(--silver); font-size: 0.7rem; display: block; letter-spacing: 2px; margin-top: 4px; }

.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a:hover { color: var(--silver); }
.nav-links a.active-link { color: var(--silver); border-bottom: 2px solid var(--silver); }
.emergency-btn { background: var(--silver); color: var(--navy); padding: 8px 15px; border-radius: 4px; font-weight: 800; animation: pulse 2s infinite; font-size: 0.9rem; white-space: nowrap; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: var(--white); display: block; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 71px; left: 0; width: 100%;
        background: var(--navy); flex-direction: column; align-items: flex-start;
        gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
        border-bottom: 1px solid var(--silver);
    }
    .nav-links.open { max-height: 500px; }
    .nav-links a:not(.emergency-btn) { width: 100%; padding: 16px 5%; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-links a.active-link { border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.05); }
    .nav-links a.emergency-btn { margin: 15px 5% 20px; }
    .logo-text { font-size: 0.9rem; }
}

/* --- PAGE HEADER (non-home pages) --- */
.page-header { position: relative; padding: 160px 5% 70px; text-align: center; background: linear-gradient(rgba(0,10,20,0.75), rgba(0,10,20,0.9)), var(--grey); border-bottom: 1px solid var(--steel); }
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--white); }
.page-header p { color: var(--silver); margin-top: 15px; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- HERO (home only) --- */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(0.3); }
.hero-content h1 { font-size: clamp(2.2rem, 8vw, 5rem); color: var(--white); line-height: 0.9; margin-bottom: 20px; }
.hero-content h1 span { color: var(--silver); }
.hero-content p { color: var(--silver); font-size: clamp(1rem, 2vw, 1.2rem); margin-top: 10px; margin-bottom: 30px; }

/* --- SEARCH BAR --- */
.search-container { position: relative; max-width: 700px; margin: 0 auto; width: 100%; }
.search-input { width: 100%; padding: 22px 35px; border-radius: 50px; border: none; background: #f1f1f1; color: #333; font-size: 1.1rem; font-weight: 500; outline: none; box-shadow: 0 10px 25px rgba(0,0,0,0.4); transition: 0.3s; }
.search-input:focus { background: #ffffff; box-shadow: 0 15px 30px rgba(0,0,0,0.5); }

.suggestions-dropdown { position: absolute; top: 110%; left: 0; width: 100%; background: white; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 1100; max-height: 350px; overflow-y: auto; display: none; text-align: left; }
.suggestion-item { padding: 15px 25px; color: var(--black); cursor: pointer; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.suggestion-item:hover { background: #f4f4f4; }
.suggestion-item span { font-size: 0.7rem; background: var(--navy); color: white; padding: 2px 8px; border-radius: 10px; }
.no-match-box { padding: 25px; color: var(--black); text-align: center; }
.no-match-box p { margin-bottom: 15px; font-weight: 600; }
.direct-call-btn { display: inline-block; background: var(--navy); color: white; padding: 12px 25px; border-radius: 50px; font-weight: 800; text-decoration: none; }

/* --- SECTIONS --- */
.section { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); color: var(--silver); }
.line { width: 60px; height: 4px; background: var(--navy); margin: 15px auto; border: 1px solid var(--silver); }

/* --- QUICK LINKS (home) --- */
.quick-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.quick-link-card { background: var(--grey); border: 1px solid var(--steel); padding: 35px 25px; text-align: center; transition: 0.3s; }
.quick-link-card:hover { border-color: var(--silver); background: var(--navy); transform: translateY(-6px); }
.quick-link-card i { font-size: 2rem; color: var(--silver); margin-bottom: 15px; }
.quick-link-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.quick-link-card p { color: #999; font-size: 0.85rem; }

/* --- SERVICES --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: var(--grey); padding: 30px; border: 1px solid var(--steel); transition: 0.4s; cursor: pointer; position: relative; }
.service-card:hover { transform: translateY(-10px); border-color: var(--silver); background: var(--navy); }
.service-card i { font-size: 2.2rem; color: var(--silver); margin-bottom: 15px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.view-more { font-size: 0.8rem; font-weight: 700; color: var(--silver); display: flex; align-items: center; gap: 8px; margin-top: 15px; }

/* --- AREAS --- */
.area-section { background: #0a0a0a; border-top: 1px solid var(--steel); }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
.tag { padding: 5px 12px; background: var(--navy); border: 1px solid var(--silver); font-size: 0.8rem; border-radius: 3px; color: var(--silver); transition: 0.3s; }
.tag.highlight { background: var(--silver); color: var(--navy); font-weight: 800; }

/* --- CONTACT --- */
.contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; background: var(--grey); padding: 40px; border: 1px solid var(--silver); }
@media (max-width: 900px) { .contact-container { grid-template-columns: 1fr; padding: 25px; } }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; background: var(--black); border: 1px solid var(--steel); color: white; outline: none; font-size: 16px; }
.contact-form input:focus { border-color: var(--silver); }
.submit-btn { width: 100%; padding: 18px; background: var(--silver); color: var(--navy); border: none; font-weight: 800; cursor: pointer; text-transform: uppercase; transition: 0.3s; }
.submit-btn:hover { background: var(--white); }

/* --- MODAL --- */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.98); z-index: 2000; display: none; overflow-y: auto; padding: 20px; }
.modal-content { max-width: 1000px; margin: 40px auto; background: var(--grey); border: 1px solid var(--silver); padding: 30px; position: relative; }
.close-modal { position: absolute; top: 10px; right: 20px; font-size: 2rem; cursor: pointer; color: var(--silver); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 20px; }
@media (max-width: 768px) { .modal-grid { grid-template-columns: 1fr; } }

/* --- FOOTER --- */
footer { padding: 60px 10% 20px; background: #000; border-top: 1px solid var(--steel); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 40px; }
.footer-bottom { text-align: center; border-top: 1px solid var(--steel); padding-top: 20px; font-size: 0.8rem; color: #666; }

.back-to-top { position: fixed; bottom: 40px; left: 40px; width: 60px; height: 60px; background-color: #001f3f; border: 2px solid #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: 0.4s; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.back-to-top.show { opacity: 1; }
.back-to-top i { color: #ffffff; font-size: 1.5rem; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(192, 192, 192, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(192, 192, 192, 0); } 100% { box-shadow: 0 0 0 0 rgba(192, 192, 192, 0); } }

/* --- ABOUT --- */
.about-section { background: #0a0a0a; border-top: 1px solid var(--steel); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { color: #bbb; line-height: 1.8; margin-bottom: 16px; font-size: 1.02rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { background: var(--grey); border: 1px solid var(--steel); padding: 25px 20px; text-align: center; }
.about-stat i { font-size: 1.8rem; color: var(--silver); margin-bottom: 10px; }
.about-stat h3 { font-size: 1.6rem; color: var(--white); }
.about-stat p { color: #999; font-size: 0.85rem; margin-top: 5px; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- GALLERY --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; border: 1px solid var(--steel); aspect-ratio: 1/1; background: var(--grey); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,35,71,0.9), transparent 60%); display: flex; align-items: flex-end; padding: 15px; opacity: 0; transition: 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }

/* --- BLOG --- */
.blog-section { background: #0a0a0a; border-top: 1px solid var(--steel); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.blog-card { background: var(--grey); border: 1px solid var(--steel); display: flex; flex-direction: column; cursor: pointer; transition: 0.3s; }
.blog-card:hover { border-color: var(--silver); transform: translateY(-6px); }
.blog-card-icon { height: 140px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--silver); border-bottom: 1px solid var(--steel); }
.blog-card-body { padding: 22px; }
.blog-date { font-size: 0.75rem; color: var(--silver); text-transform: uppercase; letter-spacing: 1px; }
.blog-card h3 { font-size: 1.1rem; margin: 10px 0; }
.blog-card p { color: #999; font-size: 0.9rem; line-height: 1.6; }
.blog-read { color: var(--silver); font-size: 0.8rem; font-weight: 700; margin-top: 15px; display: block; }

/* --- FAQ --- */
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item { background: var(--grey); border: 1px solid var(--steel); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1rem; }
.faq-question:hover { color: var(--silver); }
.faq-question i { transition: 0.3s; color: var(--silver); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 25px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 25px 20px; }
.faq-answer p { color: #aaa; line-height: 1.7; font-size: 0.95rem; }

/* --- STATS STRIP --- */
.stats-strip { background: var(--grey); border-top: 1px solid var(--steel); border-bottom: 1px solid var(--steel); padding: 45px 5%; display: flex; justify-content: center; flex-wrap: wrap; gap: 50px; text-align: center; }
.stat-block h3 { font-size: 2.2rem; color: var(--white); }
.stat-block p { color: var(--silver); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* --- ALTERNATING IMAGE/TEXT SECTIONS --- */
.alt-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.alt-section:last-child { margin-bottom: 0; }
.alt-section.reverse .alt-media { order: 2; }
.alt-section.reverse .alt-text { order: 1; }
@media (max-width: 900px) {
    .alt-section, .alt-section.reverse .alt-media, .alt-section.reverse .alt-text { grid-template-columns: 1fr; order: unset; }
    .alt-section { gap: 30px; margin-bottom: 60px; }
}
.alt-media img { width: 100%; display: block; border: 1px solid var(--steel); }
.alt-media.panel { background: var(--grey); border: 1px solid var(--steel); padding: 55px 40px; text-align: center; }
.alt-media.panel i { font-size: 3rem; color: var(--silver); margin-bottom: 20px; }
.alt-media.panel h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.alt-media.panel p { color: #999; font-size: 0.95rem; line-height: 1.6; }
.alt-eyebrow { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 12px; display: block; }
.alt-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: 18px; }
.alt-text p { color: #bbb; line-height: 1.8; margin-bottom: 16px; font-size: 1.02rem; }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: #ccc; font-size: 0.98rem; line-height: 1.5; }
.feature-list li i { color: var(--silver); margin-top: 4px; }

/* --- PROCESS STEPS --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; position: relative; }
.process-step { background: var(--grey); border: 1px solid var(--steel); padding: 35px 25px; text-align: center; position: relative; }
.process-num { width: 42px; height: 42px; border: 1px solid var(--silver); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--silver); }
.process-step h3 { font-size: 1rem; margin-bottom: 10px; }
.process-step p { color: #999; font-size: 0.88rem; line-height: 1.55; }

/* --- TESTIMONIALS --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--grey); border: 1px solid var(--steel); padding: 30px; }
.testimonial-stars { color: var(--silver); margin-bottom: 15px; letter-spacing: 3px; }
.testimonial-text { color: #ccc; font-style: italic; line-height: 1.7; margin-bottom: 20px; font-size: 0.98rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); border: 1px solid var(--silver); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--silver); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: #888; }

/* --- BRAND STRIP --- */
.brand-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brand-badge { border: 1px solid var(--steel); background: var(--grey); padding: 14px 28px; font-weight: 800; letter-spacing: 1px; color: var(--silver); font-size: 0.95rem; text-transform: uppercase; }

/* --- CTA BANNER --- */
.cta-banner { background: var(--navy); border-top: 1px solid var(--steel); border-bottom: 1px solid var(--steel); padding: 60px 5%; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 15px; }
.cta-banner p { color: var(--silver); max-width: 550px; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.cta-btn { padding: 15px 32px; font-weight: 800; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; border: 1px solid var(--silver); }
.cta-btn-fill { background: var(--silver); color: var(--navy); }
.cta-btn-fill:hover { background: var(--white); }
.cta-btn-outline { color: var(--white); background: transparent; }
.cta-btn-outline:hover { background: rgba(255,255,255,0.08); }

/* --- FAQ CATEGORIES --- */
.faq-category-title { color: var(--silver); font-size: 1.1rem; margin: 45px 0 18px; text-transform: uppercase; letter-spacing: 1px; }
.faq-category-title:first-of-type { margin-top: 0; }

/* --- HOURS / INFO LIST --- */
.info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 25px; }
.info-list-item { display: flex; gap: 16px; align-items: flex-start; }
.info-list-icon { width: 46px; height: 46px; background: var(--grey); border: 1px solid var(--steel); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--silver); font-size: 1.1rem; }
.info-list-title { font-weight: 700; color: var(--white); font-size: 0.95rem; margin-bottom: 3px; }
.info-list-text { color: #999; font-size: 0.9rem; line-height: 1.5; }

/* --- COVERAGE SPLIT (Areas page) --- */
.coverage-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
@media (max-width: 900px) { .coverage-split { grid-template-columns: 1fr; } }
.coverage-card { background: var(--grey); border: 1px solid var(--steel); padding: 35px; }
.coverage-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.coverage-card p { color: #999; line-height: 1.7; font-size: 0.95rem; }
.coverage-card i { color: var(--silver); font-size: 1.6rem; margin-bottom: 15px; }
