:root {
    --primary-color: #dc3545;
    --secondary-color: #343a40;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
}

body {
    background-color: var(--dark-bg);
    color: #e0e0e0;
}

.hero-section {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%),
    url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1200') center/cover;
    color: white;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    border-color: var(--primary-color);
}

.testimonial-card {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem 0;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.5);
}

.call-button {
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: bold;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.bg-darker {
    background-color: var(--darker-bg);
}

.bg-dark-custom {
    background-color: #1a1a1a;
}

footer {
    background: var(--darker-bg);
    color: white;
    padding: 40px 0;
    border-top: 1px solid #3a3a3a;
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}
