/* Make modal header sticky/static */
.modal-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #B91C1C;
    color: #fff;
    padding: 24px 24px 16px 24px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Ensure modal-content has overflow for sticky children */
.modal-content {
    position: relative;
    overflow: auto;
}
/* Estimate Disclaimer Banner Styles */
.estimate-banner {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fffbe6;
    color: #222;
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #ffe58f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    letter-spacing: 0.2px;
}
@media (max-width: 600px) {
    .estimate-banner {
        font-size: 14px;
        padding: 10px 6px;
    }
}
/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 32px;
    right: 32px;
    background: #22c55e;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-size: 18px;
    z-index: 9999;
    opacity: 0.95;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Hayes Company Connection Section */
.hayes-company-section {
    background: #f8f9fa;
    padding: 70px 0 40px 0;
}
.hayes-company-card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.hayes-company-info {
    flex: 1;
    padding-right: 10px;
}
.hayes-company-info h2 {
    color: #B91C1C;
    font-size: 32px;
    margin-bottom: 20px;
}
.hayes-company-info p {
    font-size: 18px;
    color: #444;
    margin-bottom: 18px;
}
.hayes-company-benefits {
    margin-top: 18px;
    margin-bottom: 10px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.13em;
    margin-bottom: 14px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.benefit-icon {
    font-size: 1.5em;
    margin-top: 2px;
}
.benefit-desc {
    color: #555;
    margin-left: 4px;
}
.hayes-company-image {
    flex: 0 0 340px;
    max-width: 340px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.hayes-company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 900px) {
    .hayes-company-card {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    .hayes-company-image {
        max-width: 100%;
        min-height: 180px;
    }
    .hayes-company-info {
        padding-right: 0;
    }
}
/* About Story Section */
.about-story {
    background: #f8f9fa;
    padding: 70px 0 40px 0;
}
.story-card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.story-image {
    flex: 0 0 340px;
    max-width: 340px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-text {
    flex: 1;
    padding-left: 10px;
}
.story-text h2 {
    color: #B91C1C;
    font-size: 32px;
    margin-bottom: 20px;
}
.story-text p {
    font-size: 18px;
    color: #444;
    margin-bottom: 18px;
}
@media (max-width: 900px) {
    .story-card {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    .story-image {
        max-width: 100%;
        min-height: 180px;
    }
    .story-text {
        padding-left: 0;
    }
}
/* Mission & Values Section */
.mission-values {
    background: #f8f9fa;
    padding: 80px 0;
}
.mission-content h2 {
    text-align: center;
    font-size: 36px;
    color: #B91C1C;
    margin-bottom: 50px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}
.value-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 36px 28px 28px 28px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border-top: 6px solid #1E3A8A;
}
.value-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}
.value-icon {
    font-size: 2.5em;
    margin-bottom: 18px;
}
.value-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #B91C1C;
    margin-bottom: 12px;
}
.value-desc {
    font-size: 1.08em;
    color: #444;
    margin-bottom: 0;
}
/* Distinct Contact Grid Styling */
.distinct-contact-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}
.contact-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 32px 24px 24px 24px;
    flex: 1 1 0;
    min-width: 260px;
    max-width: 340px;
    text-align: center;
    border-top: 6px solid #e0e0e0;
    transition: box-shadow 0.2s;
}
.contact-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.contact-card-call {
    border-top-color: #e74c3c;
}
.contact-card-email {
    border-top-color: #8e44ad;
}
.contact-card-quote {
    border-top-color: #2a4d9b;
}
.contact-card .contact-icon {
    font-size: 2.2em;
    margin-bottom: 10px;
}
.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: 700;
}
.contact-card-desc {
    font-size: 1em;
    color: #666;
    margin-top: 10px;
}
/* Contact Benefits List Styling */
.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}
.benefits-list li {
    margin-bottom: 12px;
    font-size: 1.15em;
    display: flex;
    align-items: center;
}
.benefits-list li::before {
    content: "\2714";
    color: #2ecc40;
    font-size: 1.2em;
    margin-right: 10px;
    font-weight: bold;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #B91C1C;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #B91C1C;
    background: rgba(185, 28, 28, 0.1);
}

.nav-links a.active {
    background: rgba(185, 28, 28, 0.1);
    color: #B91C1C;
    font-weight: 600;
}

.quote-nav-btn {
    background: #B91C1C !important;
    color: #fff !important;
    font-weight: bold !important;
    padding: 12px 20px !important;
}

.quote-nav-btn:hover {
    background: #991b1b !important;
    color: #fff !important;
}

/* Hero Section */
.hero {
    background: #e8e8e8; /* Color matched to the background of the image */
    color: #333;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    display: none;
}

.hero-img {
    display: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image {
    flex: 0 0 500px;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 150px;
}

.hero-feature img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
}

.hero-feature span {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

/* Mobile responsive for hero */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image {
        flex: none;
        max-width: 100%;
        order: -1; /* Put image on top on mobile */
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-feature {
        flex: 1;
        min-width: 120px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        max-width: 200px;
    }
}
    
    .hero-feature {
        flex: 1;
        min-width: 120px;
    }


.cta-button {
    display: inline-block;
    background: #B91C1C;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.cta-button:hover {
    background: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
}

.secondary-button {
    display: inline-block;
    background: #1E3A8A;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.secondary-button:hover {
    background: #1e40af;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #B91C1C 0%, #991b1b 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    color: #B91C1C;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-icon {
    font-size: 48px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #B91C1C;
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card a {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 600;
}

.feature-card a:hover {
    text-decoration: underline;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    color: #B91C1C;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-preview-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.service-preview-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-preview-card h3 {
    color: #1E3A8A;
    font-size: 24px;
    margin: 20px 20px 15px;
}

.service-preview-card p {
    margin: 0 20px 15px;
    color: #555;
}

.service-preview-card a {
    display: inline-block;
    margin: 0 20px 20px;
    color: #B91C1C;
    text-decoration: none;
    font-weight: 600;
}

.service-preview-card a:hover {
    text-decoration: underline;
}

.services-cta {
    text-align: center;
}

/* Services Section (Full) */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    color: #B91C1C;
    margin-bottom: 50px;
}

.service-item {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid #B91C1C;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 8px 8px 0;
}

.service-item h3 {
    color: #1E3A8A;
    font-size: 28px;
    margin-bottom: 15px;
}

.service-item ul {
    margin-left: 20px;
    margin-top: 15px;
}

.service-item li {
    margin-bottom: 10px;
    color: #555;
}

.service-item .service-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* About Section */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #B91C1C 0%, #991b1b 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    color: #B91C1C;
    font-size: 32px;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    width: 100%;
    height: 300px;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #B91C1C;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #1E3A8A;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: #B91C1C;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.customer-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.customer-info strong {
    color: #B91C1C;
    font-size: 18px;
}

.customer-info span {
    color: #666;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* Quote Section */
.quote-section {
    background: #1E3A8A;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quote-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.quote-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.quote-button {
    background: #B91C1C;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.quote-button:hover {
    background: #991a1a;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    color: #B91C1C;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    color: #1E3A8A;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-item p {
    color: #555;
}

.contact-item a {
    color: #B91C1C;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-section {
    margin-top: 60px;
}

.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #B91C1C;
    margin-bottom: 30px;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    background: #B91C1C;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    color: #1E3A8A;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B91C1C;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.radio-group input[type="radio"] {
    width: auto;
    margin-right: 8px;
}

.estimate-display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.estimate-display h4 {
    color: #B91C1C;
    margin-bottom: 10px;
    font-size: 18px;
}

.estimate-amount {
    font-size: 32px;
    font-weight: bold;
    color: #1E3A8A;
}

.total-amount {
    font-size: 32px;
    font-weight: bold;
    color: #1E3A8A;
    margin-bottom: 10px;
}

.breakdown {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.submit-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.submit-btn {
    background: #B91C1C;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #991a1a;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.error-message {
    color: #B91C1C;
    font-size: 14px;
    margin-top: 5px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #B91C1C;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #B91C1C;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #B91C1C;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 20px 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #1E3A8A;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}
