:root {
    --brand-red: #e60000;
    --brand-red-hover: #ff1a1a;
    --bg-black: #0a0a0a;
    --bg-dark-grey: #141414;
    --card-bg: #1e1e1e;
    --silver-accent: #c0c0c0;
    --text-light: #ffffff;
    --text-muted: #b3b3b3;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-black);
    color: var(--text-light);
    line-height: 1.6;
}

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

.header {
    background-color: var(--bg-dark-grey);
    padding: 12px 0;
    border-bottom: 3px solid var(--brand-red);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 65px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-status {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse 1.6s infinite;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease-in-out;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(180deg, var(--brand-red-hover) 0%, var(--brand-red) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(230, 0, 0, 0.5);
}

.btn-primary:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.7);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border: 2px solid var(--silver-accent);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: var(--silver-accent);
    color: var(--bg-black);
    transform: translateY(-2px);
}

.btn-header {
    background: linear-gradient(180deg, var(--brand-red-hover) 0%, var(--brand-red) 100%);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 10px 18px;
    animation: headerBtnPulse 3s ease-in-out infinite;
}

@keyframes headerBtnPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    10% {
        transform: scale(1.06) rotate(-2deg);
    }
    15% {
        transform: scale(1.06) rotate(2deg);
    }
    20% {
        transform: scale(1.06) rotate(-2deg);
    }
    25% {
        transform: scale(1.06) rotate(0deg);
    }
    30% {
        transform: scale(1);
    }
}

.hero {
    position: relative;
    padding: 110px 0;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #222;
    background-color: var(--bg-black);
}

.hero::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), url('hero-banner.jpg') center/cover no-repeat;
    filter: blur(8px);
    transform: scale(1.05);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 0, 0, 0.2);
    border: 1px solid var(--brand-red);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    color: var(--brand-red);
}

.hero p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.services {
    padding: 80px 0;
    background-color: var(--bg-black);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 35px 30px;
    border-radius: 6px;
    border-left: 5px solid var(--brand-red);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(230, 0, 0, 0.2);
    border-left-color: #ffffff;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--brand-red);
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--silver-accent);
    transform: scale(1.15);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-section {
    position: relative;
    padding: 60px 0;
    background-color: var(--bg-dark-grey);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    overflow: hidden;
}

.info-section::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.88)), url('info-bg.jpg') center/cover no-repeat;
    filter: blur(8px) grayscale(100%);
    opacity: 0.4;
    transform: scale(1.05);
    z-index: 1;
}

.info-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background-color: var(--bg-black);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #333;
    position: relative;
}

.highlighted-box {
    background-color: var(--bg-black);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #333;
    position: relative;
}

.info-badge-live, .info-badge-hours {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    background-color: rgba(230, 0, 0, 0.2);
}

.info-badge-live {
    background-color: rgba(230, 0, 0, 0.2);
    color: #ff4d4d;
    border: 1px solid var(--brand-red);
}

.info-badge-hours {
    background-color: rgba(230, 0, 0, 0.2);
    color: #ff4d4d;
    border: 1px solid var(--brand-red);
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.hours-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 5px;
}

.hours-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.cta-banner {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), var(--bg-black);
    padding: 70px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cta-banner p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer {
    background-color: #050505;
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid #1a1a1a;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
}

.footer-location {
    margin-bottom: 15px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--silver-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-red);
}

.footer-links .divider {
    margin: 0 8px;
    color: #444;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 15px auto;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #666;
}

.copyright {
    font-size: 0.75rem;
    color: #444;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .header-right {
        flex-direction: column;
        gap: 10px;
    }

    .brand-logo {
        height: 55px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }
}

.contact-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--bg-dark-grey);
    border-top: 1px solid #222;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.88)), url('contact-bg.jpg') center/cover no-repeat;
    filter: blur(8px) grayscale(100%);
    opacity: 0.4;
    transform: scale(1.05);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 6px;
    border-top: 4px solid var(--brand-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-dark-grey);
    border: 1px solid #333;
    border-radius: 4px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 8px rgba(230, 0, 0, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%20c0c0c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-dark-grey);
    color: var(--text-light);
}

.form-submit-btn {
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
    border: none;
}

.form-notice {
    background-color: var(--bg-dark-grey);
    border-left: 4px solid var(--brand-red);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-notice strong {
    color: var(--text-light);
}

.form-notice a {
    color: var(--brand-red);
    font-weight: bold;
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
    }
}

/* ==========================================
   DESKTOP PHONE MODAL STYLES
   ========================================== */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-bg);
    border-top: 4px solid var(--brand-red);
    border-radius: 6px;
    padding: 35px 30px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    color: var(--text-muted);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--brand-red);
}

.modal-content h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-light);
}

.phone-display {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-red);
    margin: 10px 0 20px 0;
    letter-spacing: 1px;
}

.modal-content .btn {
    width: 100%;
    margin-bottom: 15px;
}

.modal-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 15px 0 10px 0;
}


.modal-content .btn {
    width: 100%;
    margin-bottom: 15px;
    border: none; 
    box-shadow: none; 
    cursor: pointer;
    font-family: var(--font-main); 
}

#copyPhoneBtn {
    background: linear-gradient(180deg, var(--brand-red-hover) 0%, var(--brand-red) 100%);
    color: #ffffff;
}

#copyPhoneBtn:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
}

.service-area-section {
    padding: 80px 0;
    background-color: var(--bg-black, #0a0a0a);
}

.service-area-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.service-area-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.service-area-content .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.area-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.area-list li {
    font-size: 1rem;
    color: var(--text-muted, #ccc);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 10px;
}

.area-list i {
    color: var(--brand-red, #e50914);
}

.service-area-map-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 480px;
    width: 100%;
}

.service-map-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 0px 25px rgba(229, 9, 20, 0.25));
    transition: transform 0.3s ease;
}

.service-map-img:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .service-area-container {
        flex-direction: column;
        align-items: flex-start; 
        gap: 30px;
    }

    .service-area-content {
        max-width: 100%;
    }

    .service-area-map-wrapper {
        max-width: 100%;
        margin: 0 auto; 
    }
}

@media (max-width: 480px) {
    .service-area-map-wrapper {
        padding: 0 10px;
    }
}