/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* 508 Compliance - Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Skip to Main Content Link for Keyboard Navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Form Fieldsets for 508 Compliance */
fieldset {
    border: none;
    padding: 0;
    margin: 2rem 0 1rem 0;
}

fieldset legend {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

fieldset:first-of-type {
    margin-top: 0;
}

/* Required Field Indicator */
abbr[title="required"] {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

/* Header and Navigation */
header {
    background: white;
    color: #000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #3498db;
}

.phone-btn {
    background: #e74c3c;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.phone-btn:hover {
    background: #c0392b;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.text-preferred {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-style: italic;
}

.special-offer {
    background: rgba(231, 76, 60, 0.9);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
}

.special-offer h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #229954;
}

.cta-button-secondary {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem;
    transition: background 0.3s;
}

.cta-button-secondary:hover {
    background: #2980b9;
}

.cta-button-large {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem;
    transition: background 0.3s;
}

.cta-button-large:hover {
    background: #c0392b;
}

/* Notice Section */
.notice {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
}

.notice h2 {
    color: #856404;
    margin-bottom: 1rem;
}

/* Damage Examples */
.damage-examples {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.damage-examples h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.damage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.damage-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.damage-item:hover {
    transform: translateY(-5px);
}

.damage-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.damage-item p {
    padding: 1rem;
    font-weight: bold;
    text-align: center;
}

/* Why Us Section */
.why-us {
    padding: 4rem 2rem;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.benefit {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.benefit h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Service Area */
.service-area {
    background: #2c3e50;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.service-area h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-area ul {
    list-style: none;
    font-size: 1.2rem;
    margin: 1rem 0 2rem 0;
}

.service-area ul li {
    margin: 0.5rem 0;
}

/* Hiring Section */
.hiring {
    background: #3498db;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.hiring h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: #34495e;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.price-box {
    background: white;
    border: 3px solid #3498db;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.price-box h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: #27ae60;
    font-weight: bold;
    margin: 1rem 0;
}

.price-detail {
    color: #666;
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.special-pricing {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.special-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.special-terms {
    font-size: 1.2rem;
}

.service-note {
    background: #fff3cd;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.additional-services {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.additional-services h4 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.additional-services h4:first-of-type {
    margin-top: 0;
}

.text-note {
    font-style: italic;
    color: #f8f9fa;
    margin: 1rem 0;
}

.phone-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.emergency {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 0.8rem;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Service Requirements */
.service-requirements {
    padding: 4rem 2rem;
}

.service-requirements h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.requirement {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 10px;
}

.requirement h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.requirement ul {
    list-style-position: inside;
}

.requirement ul li {
    margin: 0.5rem 0;
}

.cancellation-policy {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
}

.cancellation-policy h3 {
    color: #856404;
    margin-bottom: 1rem;
}

/* Service Area Details */
.service-area-details {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.service-area-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-area-details h3 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.area-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.area-list li {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.disclaimer {
    background: #e8f4f8;
    padding: 1rem;
    border-left: 4px solid #3498db;
    margin-top: 2rem;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-method {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-method h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.best-time {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.special-notice {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.special-notice h3 {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    background: #27ae60;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #229954;
}

.form-note {
    text-align: center;
    color: #666;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Hiring CTA */
.hiring-cta {
    background: #34495e;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.hiring-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #3498db;
    text-decoration: none;
}

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

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

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

    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .tagline {
        font-size: 1.2rem;
    }

    .special-offer h2 {
        font-size: 1.5rem;
    }

    .damage-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .cta-button-secondary {
        display: block;
        margin: 0.5rem 0;
    }
}
