/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(163, 43, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 43, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #a32b20;
    border: 2px solid #a32b20;
}

.btn-secondary:hover {
    background: #a32b20;
    color: white;
    transform: translateY(-2px);
}

/* ===== HEADER STYLES ===== */
/* Header styles moved to header.css */

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(163, 43, 32, 0.8) 100%), 
                url('https://images.unsplash.com/photo-1544966503-7cc5ac882d5f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 69px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(163, 43, 32, 0.6) 50%, rgba(0,0,0,0.8) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 30px 30px;
    animation: particleFloat 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(163, 43, 32, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    color: #ffd700;
    animation: pulse 2s infinite;
}

.hero-title {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 400px;
    opacity: 0.95;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.2s both;
}



.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.hero-actions .btn-primary {
    background: #a32b20;
    color: white;
    border: 2px solid #a32b20;
}

.hero-actions .btn-primary:hover {
    background: #8b2419;
    border-color: #8b2419;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 43, 32, 0.3);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: #a32b20;
    border: 2px solid #a32b20;
}

.hero-actions .btn-secondary:hover {
    background: #a32b20;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 43, 32, 0.3);
}

.btn-hero {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}



.hero-visual {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-truck {
    position: relative;
    max-width: 500px;
}

.truck-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: truckFloat 6s ease-in-out infinite;
}

.truck-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    margin: 0 auto 0.5rem;
    animation: scrollBounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes truckFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(163, 43, 32, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    color: #a32b20;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: white;
    padding: 6rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stats h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 800;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(163, 43, 32, 0.1);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #a32b20;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #a32b20;
    font-weight: 600;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: white;
    padding: 6rem 2rem;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(163, 43, 32, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(163, 43, 32, 0.1);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #a32b20;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #5a6c7d;
    margin: 0;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem;
}

.map-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(163, 43, 32, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    border: none;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #a32b20 50%, transparent 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-header .section-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(163, 43, 32, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a32b20 0%, #c0392b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card.emergency-card {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
}

.contact-card.emergency-card .card-icon i {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-card.emergency-card .contact-link {
    color: #ffd700;
}

.contact-card.emergency-card .card-description {
    color: rgba(255,255,255,0.9);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: #a32b20;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-card.emergency-card .card-icon i {
    color: #ffd700;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-card.emergency-card .card-content h3 {
    color: white;
}

.phone-number, .email, .address, .hours {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #a32b20;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c0392b;
}

.card-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.5;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #28a745;
}

.contact-card.emergency-card .response-time {
    color: #ffd700;
}



/* Emergency Contact Section */
.emergency-contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(163, 43, 32, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.emergency-badge i {
    color: #ffd700;
    animation: pulse 2s infinite;
}

.emergency-content {
    position: relative;
    z-index: 2;
}

.emergency-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.emergency-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.emergency-features .feature i {
    color: #28a745;
    font-size: 1.1rem;
}

.btn-emergency {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
    color: white;
}

/* Service Process */
.service-process {
    text-align: center;
    padding: 3rem 0;
}

.service-process h3 {
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(163, 43, 32, 0.3);
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Floating Contact Buttons - Moved to footer.css */



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .emergency-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .emergency-contact {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .emergency-content h3 {
        font-size: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact float responsive styles moved to footer.css */
}

@media (max-width: 480px) {
    .contact-cards {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .emergency-contact {
        padding: 1.5rem;
    }
    
    .emergency-content h3 {
        font-size: 1.3rem;
    }
    
    .emergency-content p {
        font-size: 1rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===== FOOTER ===== */
/* Footer styles moved to footer.css for better organization */

/* ===== CONTACT FLOAT BUTTONS ===== */
/* Contact float buttons styles moved to footer.css for better organization */

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp and Phone button animations moved to footer.css */

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0 1rem;
        flex-direction: row;
        gap: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
        padding: 4rem 1rem;
    }

    .hero-title-main {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-title-sub {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-truck {
        max-width: 300px;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact float responsive styles moved to footer.css */
    
    /* Mobile Navigation Styles moved to header.css */
}

@media (max-width: 480px) {
    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-title-main {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .hero-title-sub {
        font-size: clamp(1rem, 2vw, 1.3rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-truck {
        max-width: 250px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile navigation improvements moved to header.css */
}

/* ===== NEW PAGE STYLES ===== */

/* ===== NAVIGATION STYLES ===== */
/* Navigation styles moved to header.css */

/* Animate-in class for scroll animations */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    margin-top: 69px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-page {
    padding: 6rem 2rem;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #a32b20;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.values-list i {
    color: #a32b20;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem;
}

.team-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(163, 43, 32, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.member-avatar i {
    font-size: 2rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-title {
    color: #a32b20;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Features Page Styles */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(163, 43, 32, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.feature-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a32b20;
    font-weight: bold;
}

/* Equipment Section */
.equipment-section {
    background: white;
    padding: 6rem 2rem;
}

.equipment-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-item {
    text-align: center;
    padding: 2rem;
}

.equipment-item i {
    font-size: 3rem;
    color: #a32b20;
    margin-bottom: 1.5rem;
}

.equipment-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.equipment-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Safety Section */
.safety-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem;
}

.safety-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.safety-item {
    text-align: center;
    padding: 2rem;
}

.safety-item i {
    font-size: 3rem;
    color: #a32b20;
    margin-bottom: 1.5rem;
}

.safety-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.safety-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Services Page Styles */
.services-page {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a32b20;
    font-weight: bold;
}

/* Additional Services */
.additional-services {
    background: white;
    padding: 6rem 2rem;
}

.additional-services h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-service {
    text-align: center;
    padding: 2rem;
}

.additional-service i {
    font-size: 3rem;
    color: #a32b20;
    margin-bottom: 1.5rem;
}

.additional-service h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-service p {
    color: #5a6c7d;
    line-height: 1.6;
}

.additional-service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(163, 43, 32, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.additional-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.additional-service-item i {
    font-size: 3rem;
    color: #a32b20;
    margin-bottom: 1.5rem;
}

.additional-service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-service-item p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a32b20;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid #a32b20;
    border-radius: 25px;
}

.service-link:hover {
    background: #a32b20;
    color: white;
    transform: translateY(-2px);
}

.service-link i {
    font-size: 0.8rem;
    margin: 0;
}

/* Service Areas */
.service-areas {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem;
}

.service-areas h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-areas > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #5a6c7d;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(163, 43, 32, 0.1);
}

.area-item i {
    font-size: 2.5rem;
    color: #a32b20;
    margin-bottom: 1rem;
}

.area-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.area-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Emergency Services */
.emergency-services {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    padding: 6rem 2rem;
}

.emergency-services h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: white;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.emergency-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.emergency-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-features {
    list-style: none;
    padding: 0;
}

.emergency-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.9;
}

.emergency-features i {
    color: #ffd700;
    font-size: 1.2rem;
}

.emergency-cta {
    text-align: center;
}

.emergency-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.emergency-cta p {
    opacity: 0.8;
    margin-top: 1rem;
}

/* Blog Page Styles */
.blog-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(163, 43, 32, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-post.featured .post-image {
    height: 100%;
}

.blog-post.featured .post-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-content h2,
.post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.blog-post.featured .post-content h2 {
    font-size: 2rem;
}

.post-content p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-excerpt {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.post-excerpt h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.post-excerpt ul {
    list-style: none;
    padding: 0;
}

.post-excerpt li {
    padding: 0.3rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.post-excerpt li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #a32b20;
    font-weight: bold;
}

.read-more {
    color: #a32b20;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c0392b;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: white;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: white;
    color: #a32b20;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* FAQ Page Styles */
.faq-categories {
    background: white;
    padding: 2rem;
    border-bottom: 1px solid rgba(163, 43, 32, 0.1);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid #a32b20;
    background: transparent;
    color: #a32b20;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #a32b20;
    color: white;
}

.faq-content {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-category {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category.active {
    display: block;
}

.faq-category h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #2c3e50;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(163, 43, 32, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 3rem;
    color: #a32b20;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: #a32b20;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    background: white;
    padding: 6rem 2rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.form-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #5a6c7d;
}

.feature i {
    color: #a32b20;
    font-size: 1.2rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(163, 43, 32, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a32b20;
}

.contact-faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.contact-faq h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-faq p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(163, 43, 32, 0.1);
}

.contact-option i {
    font-size: 3rem;
    color: #a32b20;
    margin-bottom: 1.5rem;
}

.contact-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-option p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.emergency-cta {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    padding: 6rem 2rem;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.emergency-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: white;
}

.emergency-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-features {
    list-style: none;
    padding: 0;
}

.emergency-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.9;
}

.emergency-features i {
    color: #ffd700;
    font-size: 1.2rem;
}

.emergency-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.emergency-btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .about-grid,
    .contact-form-grid,
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured .post-content {
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 4rem 1rem;
    }
    
    .about-page,
    .features-section,
    .services-page,
    .blog-section,
    .faq-content,
    .contact-info-section,
    .contact-form-section {
        padding: 4rem 1rem;
    }
    
    .team-grid,
    .features-grid,
    .equipment-grid,
    .safety-grid,
    .additional-services-grid,
    .areas-grid,
    .contact-grid,
    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card,
    .team-member,
    .feature-card {
        padding: 2rem 1.5rem;
    }
} 

/* Contact Action Buttons */
.btn-contact-action {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(163, 43, 32, 0.3);
    margin-top: 1rem;
    width: 100%;
    text-decoration: none;
    line-height: 1;
}

.btn-contact-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 43, 32, 0.4);
    color: white;
}

.btn-contact-action i {
    font-size: 1.1rem;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

/* Emergency card button styling */
.contact-card.emergency-card .btn-contact-action {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #a32b20;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.contact-card.emergency-card .btn-contact-action i {
    color: #a32b20;
}

.contact-card.emergency-card .btn-contact-action:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    color: #a32b20;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.contact-card.emergency-card .btn-contact-action:hover i {
    color: #a32b20;
}

/* Regular contact card button styling */
.contact-card:not(.emergency-card) .btn-contact-action {
    background: linear-gradient(135deg, #a32b20 0%, #c0392b 100%);
    color: white;
}

.contact-card:not(.emergency-card) .btn-contact-action i {
    color: white;
}

.contact-card:not(.emergency-card) .btn-contact-action:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a32b20 100%);
    color: white;
}

.contact-card:not(.emergency-card) .btn-contact-action:hover i {
    color: white;
}

/* Responsive adjustments for contact buttons */
@media (max-width: 768px) {
    .btn-contact-action {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        align-items: center;
    }
    
    .btn-contact-action i {
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}