/* RESET & BASE */
:root {
    --primary: #FF6B00;
    /* Safety Orange */
    --tech-blue: #00d9ff;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* UTILS */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Adjust based on navbar height */
    width: auto;
    object-fit: contain;
}

.nav-links a {
    margin-left: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links .btn-nav {
    background: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: white;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge-premium {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.warning-box {
    margin-top: 3rem;
    background: rgba(255, 0, 0, 0.15);
    border-left: 4px solid #ff4444;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    border-radius: 0 4px 4px 0;
}

.warning-box svg {
    color: #ff4444;
    flex-shrink: 0;
}

/* SERVICES */
.section-dark {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-box {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}


/* Thorton */

.specs-list {
    list-style: none;
    margin-top: auto;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Remove old icon box if present or override */

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.specs-list {
    list-style: none;
    margin-top: auto;
}

.specs-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.specs-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* INSURANCE BANNER */
.insurance-banner-box {
    margin-top: 4rem;
    background: linear-gradient(90deg, #1a1a1a 0%, #111 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.insurance-icon {
    font-size: 3rem;
}

.insurance-text h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.insurance-text p {
    color: #e0e0e0;
}

/* STATS */
.stats-banner {
    background: var(--primary);
    padding: 3rem 0;
    color: white;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* COVERAGE */
.section-map {
    padding: 6rem 0;
    background: #0f0f0f;
}

.map-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.map-text {
    flex: 1;
}

.location-list {
    margin-top: 2rem;
}

.location-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
}

.location-list small {
    display: block;
    color: var(--text-muted);
}

.map-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.map-card {
    background: #1a1a1a;
    padding: 2rem;
    border-left: 4px solid var(--primary);
    width: 300px;
}

/* CTA & FOOTER */
.section-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
}

.disclaimer-small {
    font-size: 0.8rem;
    color: #666;
}


/* FOOTER */
.footer-content {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.hours-info {
    margin-top: 1.5rem;
    color: #a0a0a0;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ SECTION */
.section-faq {
    padding: 6rem 0;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .map-layout {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }

    .stats-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .menu-toggle {
        display: block;
    }

    .four-col {
        grid-template-columns: 1fr;
    }

    .insurance-banner-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* QUOTE FORM */
.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 1rem;
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-actions {
    margin-top: 2rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .quote-form-container {
        padding: 1.5rem;
    }
}