:root {
    /* Colors */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-primary: #007bff; /* Electric Blue */
    --accent-hover: #0056b3;
    --accent-secondary: #ff5a00; /* Vivid Orange for secondary CTA */
    --accent-secondary-hover: #cc4800;
    --trust-strip-bg: #1e293b;
    --border-color: #334155;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
     margin-bottom: 1rem;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--accent-secondary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}

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

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo {
    max-height: 60px;
    width: auto;
}

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.header-hours {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    color: var(--text-secondary);
    font-weight: 500;
}

.main-nav a:hover {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem; /* Larger touch target */
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px auto;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.8), rgba(15, 23, 42, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand-crest {
    max-height: 220px;
    width: auto;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--trust-strip-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.trust-strip-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.trust-item .icon {
    font-size: 1.5rem;
}

/* Services */
.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-primary);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Promotional Banner */
.promo-banner-container {
    display: flex;
    justify-content: center;
}

.promo-banner-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-banner-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 90, 0, 0.2);
}

/* Reviews */
.reviews {
    background-color: var(--bg-darker);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
}

.reviews .subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}



.reviews-widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .reviews-widgets-grid {
        grid-template-columns: 1fr;
    }
}

.reviews-widget-container {
    width: 100%;
}

.widget-placeholder-box {
    background-color: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

/* About */
.about {
    background-color: var(--bg-dark);
}

.about-container {
    max-width: 800px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

/* Contact */
.contact {
    background-color: var(--bg-darker);
}

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

.contact-form-container, .contact-info-container {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form-container h2, .contact-info-container h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem; /* Larger touch target for mobile */
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-size: 16px; /* Prevents iOS auto-zoom */
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.info-block p {
    color: var(--text-secondary);
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Footer */
.site-footer {
    background-color: #000;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left p, .footer-right p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--bg-card);
    border-radius: 50%;
    color: white;
    margin-left: 0.5rem;
    font-weight: bold;
}

.footer-social a:hover {
    background-color: var(--accent-primary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    body {
        padding-top: 65px;
        padding-bottom: 80px;
    }

    .site-header {
        height: 65px;
        background: rgba(15, 23, 42, 0.95) !important;
        backdrop-filter: blur(8px);
        position: fixed;
        top: 0;
        z-index: 1000;
    }

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

    .header-logo {
        max-height: 40px;
        width: auto;
    }

    .main-nav, .header-cta, .header-hours {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 0.5rem;
    }

    .mobile-sticky-actions {
        position: fixed;
        bottom: 20px;
        left: 5%;
        width: 90%;
        height: 54px;
        background: transparent;
        display: flex;
        gap: 12px;
        z-index: 9999;
        pointer-events: none;
    }

    .mobile-sticky-actions .btn {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 50px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        pointer-events: auto;
    }

    .hero {
        text-align: center;
        padding: 3rem 0;
        height: auto;
        min-height: calc(100vh - 125px);
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-brand-crest {
        max-height: 150px;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subheadline {
        font-size: 1.1rem;
    }

    .hero-actions {
        display: none;
    }

    .trust-strip-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }
    
    .services h2, .reviews h2, .about h2, .contact-form-container h2, .contact-info-container h2 {
        font-size: 2rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}
