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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.header-contact {
    text-align: right;
}

.phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #ffd700;
}

.emergency-text {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 600;
    margin: 0;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
    color: #6c757d;
}

.breadcrumb-list a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.breadcrumb-list li:last-child {
    color: #6c757d;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::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>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.response-time {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Service Links */
.service-link {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #667eea;
    text-decoration: underline;
}

.learn-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

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

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

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Emergency CTA Section */
.emergency-cta {
    padding: 4rem 0;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.emergency-button {
    display: inline-block;
    background: white;
    color: #ff6b6b;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.emergency-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.response-guarantee {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    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;
}

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

.step p {
    color: #666;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.service-areas h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-areas p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.area {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.area:hover {
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid #667eea;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item strong {
    min-width: 120px;
}

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

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

.contact-image {
    text-align: center;
}

.contact-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section ul li a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.footer-phone {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-phone:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.disclaimer {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services h2,
    .why-choose-us h2,
    .process h2,
    .service-areas h2,
    .faq h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .cta-button,
    .emergency-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .areas-list {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .services,
    .why-choose-us,
    .process,
    .service-areas,
    .faq,
    .contact {
        padding: 3rem 0;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
}

/* New Content Sections */
.call-now-section,
.arrival-section,
.first-hour-section,
.equipment-section,
.timeline-section,
.pricing-section,
.insurance-section,
.safety-section,
.local-advantage-section,
.business-section,
.trust-signals-section,
.ready-section,
.final-cta-section {
    padding: 4rem 0;
    background: white;
}

.call-now-section h2,
.arrival-section h2,
.first-hour-section h2,
.equipment-section h2,
.timeline-section h2,
.pricing-section h2,
.insurance-section h2,
.safety-section h2,
.local-advantage-section h2,
.business-section h2,
.trust-signals-section h2,
.ready-section h2,
.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.call-now-section p,
.arrival-section p,
.first-hour-section p,
.equipment-section p,
.timeline-section p,
.pricing-section p,
.insurance-section p,
.safety-section p,
.local-advantage-section p,
.business-section p,
.trust-signals-section p,
.ready-section p,
.final-cta-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.key-insight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.key-insight p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.inline-phone {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 700;
}

.inline-phone:hover {
    text-decoration: underline;
}

.homepage-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.back-to-home {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Equipment Table */
.equipment-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.equipment-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.equipment-table th {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.equipment-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.equipment-table tr:hover {
    background: #f8f9fa;
}

/* Cost Benchmarks */
.cost-benchmarks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benchmark {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.benchmark .amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benchmark .description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* FAQ Highlight */
.faq-highlight {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.faq-highlight h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Safety Checklist */
.safety-checklist {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    list-style: none;
}

.safety-checklist li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.safety-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Pro Tip */
.pro-tip {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

/* Ready Checklist */
.ready-checklist {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    list-style: none;
}

.ready-checklist li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.ready-checklist li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Emergency Water Removal Page Specific Styles */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.badge.open-now {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.badge.same-day {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.badge.phone {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

/* First Call Checklist */
.first-call-checklist {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    list-style: none;
    counter-reset: checklist-counter;
}

.first-call-checklist li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 3rem;
    counter-increment: checklist-counter;
}

.first-call-checklist li:before {
    content: counter(checklist-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    background: white;
    color: #667eea;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Timeline Checklist */
.timeline-checklist {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    list-style: none;
    border-left: 4px solid #667eea;
}

.timeline-checklist li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
}

.timeline-checklist li:before {
    content: "📅";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ETA Chart */
.eta-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.eta-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.eta-item .area {
    min-width: 150px;
    font-weight: 600;
    color: #2c3e50;
}

.eta-item .eta-bar {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.eta-item .bar-fill {
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.eta-item .time {
    min-width: 80px;
    font-weight: 600;
    color: #667eea;
    text-align: right;
}

/* Live Answer Section */
.live-answer-section,
.gps-section {
    padding: 4rem 0;
    background: white;
}

.live-answer-section h2,
.gps-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.live-answer-section p,
.gps-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.live-answer-section h3,
.gps-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

/* Local Coverage Section */
.local-coverage-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.local-coverage-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.local-coverage-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Aftercare Section */
.aftercare-section {
    padding: 4rem 0;
    background: white;
}

.aftercare-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.aftercare-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.aftercare-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

/* What To Do First Page Specific Styles */
.confirm-help-section,
.safety-first-section,
.stop-source-section,
.documentation-section,
.protect-people-section,
.quick-wins-section,
.moisture-control-section,
.sewage-section,
.save-first-section,
.insurance-prep-section,
.apartments-section,
.commercial-section,
.final-prep-section,
.what-happens-next-section {
    padding: 4rem 0;
    background: white;
}

.confirm-help-section:nth-child(even),
.safety-first-section:nth-child(even),
.stop-source-section:nth-child(even),
.documentation-section:nth-child(even),
.protect-people-section:nth-child(even),
.quick-wins-section:nth-child(even),
.moisture-control-section:nth-child(even),
.sewage-section:nth-child(even),
.save-first-section:nth-child(even),
.insurance-prep-section:nth-child(even),
.apartments-section:nth-child(even),
.commercial-section:nth-child(even),
.final-prep-section:nth-child(even),
.what-happens-next-section:nth-child(even) {
    background: #f8f9fa;
}

.confirm-help-section h2,
.safety-first-section h2,
.stop-source-section h2,
.documentation-section h2,
.protect-people-section h2,
.quick-wins-section h2,
.moisture-control-section h2,
.sewage-section h2,
.save-first-section h2,
.insurance-prep-section h2,
.apartments-section h2,
.commercial-section h2,
.final-prep-section h2,
.what-happens-next-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.confirm-help-section p,
.safety-first-section p,
.stop-source-section p,
.documentation-section p,
.protect-people-section p,
.quick-wins-section p,
.moisture-control-section p,
.sewage-section p,
.save-first-section p,
.insurance-prep-section p,
.apartments-section p,
.commercial-section p,
.final-prep-section p,
.what-happens-next-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Documentation Table */
.documentation-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.documentation-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.documentation-table th {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.documentation-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.documentation-table tr:hover {
    background: #f8f9fa;
}

/* Humidity Chart */
.humidity-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.humidity-chart h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.chart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.chart-item .humidity {
    min-width: 150px;
    font-weight: 600;
    color: #2c3e50;
}

.chart-item .chart-bar {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.chart-item .bar-fill {
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.chart-item .time {
    min-width: 80px;
    font-weight: 600;
    color: #667eea;
    text-align: right;
}

.chart-source {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Save First Checklist */
.save-first-checklist {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    list-style: none;
}

.save-first-checklist li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
}

.save-first-checklist li:before {
    content: "💾";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Final Prep Checklist */
.final-prep-checklist {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    list-style: none;
    border-left: 4px solid #667eea;
}

.final-prep-checklist li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
}

.final-prep-checklist li:before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Claims Chart */
.claims-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.claims-chart h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.chart-item .claim-type {
    min-width: 150px;
    font-weight: 600;
    color: #2c3e50;
}

.chart-item .percentage {
    min-width: 80px;
    font-weight: 600;
    color: #667eea;
    text-align: right;
}

/* Key Insight and Pro Tip Styles */
.key-insight {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #c44569;
}

.pro-tip {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #5f3dc4;
}

.faq-highlight {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
}

.faq-highlight h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.final-cta-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.final-cta-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.final-cta-section p {
    color: white;
    margin-bottom: 1.5rem;
}

.final-cta-section .inline-phone {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.final-cta-section .inline-phone:hover {
    text-decoration: underline;
}

/* Burst Pipe Emergency Page Specific Styles */
.key-insight-section {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.key-insight-section .key-insight {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 0;
}

.first-10-minutes-section,
.shut-off-water-section,
.power-safety-section,
.contain-water-section,
.call-emergency-section,
.document-everything-section,
.beat-mold-section,
.professional-help-section,
.crew-arrives-section,
.aftercare-section,
.loganville-specific-section {
    padding: 4rem 0;
    background: white;
}

.first-10-minutes-section:nth-child(even),
.shut-off-water-section:nth-child(even),
.power-safety-section:nth-child(even),
.contain-water-section:nth-child(even),
.call-emergency-section:nth-child(even),
.document-everything-section:nth-child(even),
.beat-mold-section:nth-child(even),
.professional-help-section:nth-child(even),
.crew-arrives-section:nth-child(even),
.aftercare-section:nth-child(even),
.loganville-specific-section:nth-child(even) {
    background: #f8f9fa;
}

.first-10-minutes-section h2,
.shut-off-water-section h2,
.power-safety-section h2,
.contain-water-section h2,
.call-emergency-section h2,
.document-everything-section h2,
.beat-mold-section h2,
.professional-help-section h2,
.crew-arrives-section h2,
.aftercare-section h2,
.loganville-specific-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.first-10-minutes-section h3,
.shut-off-water-section h3,
.power-safety-section h3,
.contain-water-section h3,
.call-emergency-section h3,
.document-everything-section h3,
.beat-mold-section h3,
.professional-help-section h3,
.crew-arrives-section h3,
.aftercare-section h3,
.loganville-specific-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #667eea;
}

.first-10-minutes-section p,
.shut-off-water-section p,
.power-safety-section p,
.contain-water-section p,
.call-emergency-section p,
.document-everything-section p,
.beat-mold-section p,
.professional-help-section p,
.crew-arrives-section p,
.aftercare-section p,
.loganville-specific-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Emergency Checklist */
.emergency-checklist {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    list-style: none;
}

.emergency-checklist li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
}

.emergency-checklist li:before {
    content: "🚨";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Crew Checklist */
.crew-checklist {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    list-style: none;
    border-left: 4px solid #667eea;
}

.crew-checklist li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
}

.crew-checklist li:before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Mold Risk Chart */
.mold-risk-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mold-risk-chart h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.chart-item .time-period {
    min-width: 150px;
    font-weight: 600;
    color: #2c3e50;
}

.chart-item .risk-level {
    min-width: 80px;
    font-weight: 600;
    color: #667eea;
    text-align: right;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature,
.step,
.faq-item,
.call-now-section,
.arrival-section,
.first-hour-section,
.equipment-section,
.timeline-section,
.pricing-section,
.insurance-section,
.safety-section,
.local-advantage-section,
.business-section,
.trust-signals-section,
.ready-section,
.final-cta-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover,
.feature:hover,
.step:hover {
    transform: translateY(-5px);
}

/* Focus States for Accessibility */
.cta-button:focus,
.emergency-button:focus,
.phone-number:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Loading States */
.service-img,
.hero-img,
.contact-img {
    transition: opacity 0.3s ease;
}

.service-img:hover,
.hero-img:hover,
.contact-img:hover {
    opacity: 0.9;
}

/* HTML Sitemap Page Styles */
.sitemap-section {
    padding: 3rem 0;
}

.sitemap-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.sitemap-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sitemap-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.sitemap-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.sitemap-item h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sitemap-item h3 a:hover {
    color: #3498db;
}

.sitemap-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sitemap-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-features li {
    padding: 0.25rem 0;
    color: #555;
    position: relative;
    padding-left: 1.2rem;
}

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

.main-page {
    border-left: 4px solid #3498db;
}

.emergency-page {
    border-left: 4px solid #e74c3c;
}

.guide-page {
    border-left: 4px solid #f39c12;
}

.burst-pipe-page {
    border-left: 4px solid #9b59b6;
}

.service-areas-section, .contact-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-areas-section h3, .contact-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.service-areas-list li {
    padding: 0.5rem;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    color: #555;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-details a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    .service-areas-list {
        grid-template-columns: 1fr;
    }
}
