:root {
    --primary-red: #c62817;      
    --dark-red: #8b0000;         
    --dark-bg: #121212;         
    --card-bg: #1e1e1e;         
    --light-grey: #e0e0e0;      
}

body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.red-text { color: var(--primary-red); }

/* --- Header & Navigation --- */
header {
    background: #000;
    padding: 15px 0;
    border-bottom: 3px solid var(--primary-red);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { flex: 1; }
.logo-main { font-size: 36px; font-weight: 700; }
.logo-sub { display: block; font-size: 11px; letter-spacing: 3px; color: #aaa; }

nav { flex: 2; text-align: center; }
nav ul { list-style: none; display: inline-flex; padding: 0; margin: 0; }
nav ul li a { color: white; text-decoration: none; padding: 0 15px; font-weight: 700; font-size: 14px; text-transform: uppercase; }
nav ul li a.active { color: var(--primary-red); }

.quote-container { flex: 1; display: flex; justify-content: flex-end; }
.btn-top-quote {
    background: linear-gradient(180deg, #e53935 0%, var(--dark-red) 100%);
    padding: 10px 22px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 4px 0 #5a0000;
    white-space: nowrap;
}

/* --- Hero Section --- */
.hero {
    background: radial-gradient(circle at center, #333 0%, #111 100%);
    padding: 80px 0 160px 0;
}

.hero-grid { display: flex; align-items: center; justify-content: space-between; }
.hero-text h1 { font-size: 62px; line-height: 0.95; margin: 0 0 20px 0; }
.hero-text p { font-size: 22px; color: #ccc; margin-bottom: 35px; }

.btn-red {
    background: linear-gradient(180deg, #e53935 0%, #b71c1c 100%);
    padding: 18px 45px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    border-radius: 5px;
    display: inline-block;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.phone-num { font-weight: 700; font-size: 26px; display: block; margin-top: 5px; }
.hero-image img { width: 100%; max-width: 600px; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.7)); }

/* --- Services (Solid Red Wrapper) --- */
.services {
    background-color: var(--light-grey);
    padding: 80px 0;
    margin-top: -100px;
}

.services-wrapper {
    display: flex;
    gap: 30px;
    padding: 50px;
    background-color: var(--primary-red); 
    border-radius: 8px;
}

.card {
    background: var(--card-bg);
    flex: 1;
    padding: 60px 30px;
    text-align: center;
    border-radius: 4px;
}

.card-icon { height: 70px; margin-bottom: 20px; }
.card-line { width: 50px; height: 3px; background: var(--primary-red); margin: 0 auto 20px; }
.card p { margin-bottom: 0; color: #bbb; font-size: 16px; }

/* --- Contact Form Styling --- */
form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
}

/* --- Features & Footer --- */
.why-choose { padding: 80px 0; text-align: center; background: var(--dark-bg); }
.features-grid { display: flex; justify-content: space-between; border-top: 1px solid #333; padding-top: 40px; }
.feature-item { font-weight: 700; font-size: 20px; display: flex; align-items: center; gap: 10px; }

.cta-footer {
    padding: 100px 0;
    text-align: center;
    background: var(--dark-bg);
    border-top: 4px solid var(--primary-red);
}

.cta-footer h2 { font-size: 40px; margin-bottom: 30px; text-transform: uppercase; }

/* Responsive */
@media (max-width: 992px) {
    .nav-wrapper, .hero-grid, .services-wrapper, .features-grid { flex-direction: column; text-align: center; }
    .quote-container { justify-content: center; margin-top: 20px; }
    .features-grid { gap: 20px; align-items: center; }
}