/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f39c12; /* Accent */
    --secondary-color: #0f1b2d; /* Deep navy */
    --muted-navy: #1a2a3f;
    --text-color: #26313f;
    --subtle-text: #5a6b7b;
    --light-bg: #f5f7fb;
    --white: #ffffff;
    --card-border: #e6ebf2;
    --shadow: 0 6px 24px rgba(15,27,45,0.08);
    --shadow-soft: 0 2px 10px rgba(15,27,45,0.06);
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}.phone-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.phone-cta:hover {
    background: #e67e22;
}

/* Burger Menu - Hidden on Desktop */
.burger-menu {
    display: none;
}

/* Burger button styling */
.burger-menu {
    width: 36px;
    height: 28px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 4px 2px;
    margin-left: 0.5rem;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: radial-gradient(1000px 500px at 80% -50%, rgba(243,156,18,0.18), transparent 60%),
                linear-gradient(180deg, var(--secondary-color) 0%, var(--muted-navy) 100%);
    color: var(--white);
    padding: 4.5rem 0 4rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--card-border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-card p {
    margin-bottom: 0.75rem;
    color: var(--subtle-text);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: left;
    box-shadow: var(--shadow-soft);
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.review-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Service Areas */
.service-areas {
    padding: 4rem 0;
    background: var(--light-bg);
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.area-list h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.area-list ul {
    list-style: none;
}

.area-list li {
    padding: 0.5rem 0;
    color: #666;
}

.area-list li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
footer {
    background: #0b1422;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
    
    .header-content {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.75rem 0;
        align-items: center;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    /* Mobile Navigation */
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    nav.active {
        display: flex;
    }
    
    .phone-cta {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        margin-left: auto;
    }

    /* Show burger on mobile */
    .burger-menu {
        display: flex;
    }
    
    .phone-cta .phone-icon {
        display: none;
    }
    
    /* Burger Menu */
    .burger-menu {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        margin-left: 1rem;
        order: 3;
    }
    
    .burger-menu span {
        width: 25px;
        height: 3px;
        background: var(--secondary-color);
        transition: all 0.3s ease;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .phone-cta {
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}/* Page Header */
.page-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}
/* Sticky mobile call-to-action bar */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(0,0,0,0.08);
        z-index: 200;
    }

    .mobile-sticky-cta a {
        display: block;
        text-align: center;
        padding: 0.9rem 0.75rem;
        text-decoration: none;
        color: var(--white);
        font-weight: 700;
    }

    .mobile-sticky-cta .cta-call {
        background: var(--primary-color);
    }

    .mobile-sticky-cta .cta-text {
        background: var(--secondary-color);
    }

    body {
        /* Prevent content behind sticky bar */
        padding-bottom: 64px;
    }
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-item p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-item ul {
    margin: 1rem 0 2rem 2rem;
}

.service-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Active navigation indicator */
nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Form error states */
.error {
    border-color: #e74c3c !important;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Location Pages */
.local-content {
    padding: 4rem 0;
}

.local-content h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.local-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.local-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.local-content ul, .local-content ol {
    margin: 1rem 0 2rem 2rem;
}

.local-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Content Pages */
.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-wrapper h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.content-wrapper h4 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-wrapper ul, .content-wrapper ol {
    margin: 1rem 0 2rem 2rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.content-wrapper strong {
    color: var(--secondary-color);
}

/* === New components for Bold Industrial theme === */
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.5rem; align-items: center; }
.hero-kicker { display:inline-block; background: rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.18); padding:0.25rem 0.6rem; border-radius:999px; font-size:0.85rem; margin-bottom:0.75rem; }
.hero-side { display:flex; align-items:center; justify-content:center; }
.hero-card { background: var(--white); color: var(--text-color); padding: 1.25rem; border-radius: var(--radius); box-shadow: var(--shadow); width:100%; max-width:420px; }
.hero-card h3 { margin-bottom: 0.5rem; color: var(--secondary-color); }
.hero-list { list-style:none; margin-top:0.75rem; }
.hero-list li { padding:0.4rem 0; color: var(--subtle-text); }
.hero-list li::before { content:'✔ '; color: var(--primary-color); font-weight:700; }

.process { padding: 4rem 0; }
.process h2 { text-align:center; font-size:2.2rem; color: var(--secondary-color); margin-bottom: 2rem; }
.process-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.5rem; }
.process-step { background: var(--white); border:1px solid var(--card-border); border-radius: var(--radius); padding:1.25rem; box-shadow: var(--shadow-soft); }
.process-step .step-num { display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:50%; background: var(--primary-color); color:#fff; font-weight:700; margin-bottom:0.5rem; }
.process-step h3 { margin-bottom:0.5rem; color: var(--secondary-color); font-size:1.1rem; }
.process-step p { color: var(--subtle-text); }

.installs { padding:4rem 0; background: var(--white); }
.installs h2 { text-align:center; font-size:2.2rem; color: var(--secondary-color); margin-bottom:2rem; }
.installs-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:1rem; }
.install-card { background: var(--white); border:1px solid var(--card-border); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); }
.install-card img { width:100%; height:160px; object-fit:cover; display:block; }
.install-card .meta { padding:0.75rem 1rem; color: var(--subtle-text); font-size:0.95rem; }

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text ul {
    margin: 1rem 0 2rem 2rem;
}

.about-text li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-item p {
    line-height: 1.6;
}

.contact-form-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.ghl-form-placeholder {
    margin-top: 1.5rem;
}

/* Emergency CTA */
.emergency-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.emergency-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.emergency-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

/* Responsive updates */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding: 0 1rem;
    }
    
    .dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block;
        box-shadow: none;
        background: var(--light-bg);
        margin: 0.5rem 0;
        padding: 0.5rem;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
}
