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

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

/* Header and Navigation */
.navbar {
    background-color: #fff;
    padding: 0.75rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
}

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

.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

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

.phone-number {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    border: 2px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.phone-number:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.phone-number i {
    margin-right: 0.75rem;
    font-size: 1.1em;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('images/water-damage-restoration-cincinnati-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(3px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    font-weight: 600;
    line-height: 1.6;
    color: #ffffff;
}

.hero strong {
    color: #2196f3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-weight: 800;
}

.hero .cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid #ffffff;
}

.hero .cta-button:hover {
    background-color: #ffffff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    border-color: #007bff;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}

.floating-cta i {
    font-size: 24px;
}

/* Section CTAs */
.section-cta {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    margin: 2rem 0;
    border-radius: 10px;
}

.section-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

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

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

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
}

.service-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-description p {
    margin-bottom: 1.5rem;
}

/* Common Scenarios Section */
.common-scenarios {
    padding: 5rem 5%;
}

.common-scenarios h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

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

.scenario-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.scenario-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.scenario-card h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

.scenario-card p {
    padding: 0 1.5rem 1.5rem;
}

/* Process Section */
.process {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

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

.step {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

/* Detection Methods Section */
.detection-methods {
    padding: 5rem 5%;
}

.detection-methods h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.method-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Extraction Process Section */
.extraction-process {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

.process-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-details {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.process-details h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

/* Prevention Section */
.prevention {
    padding: 5rem 5%;
}

.prevention h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.prevention-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Comprehensive Solutions Section */
.comprehensive-solutions {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.comprehensive-solutions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.solutions-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Insurance Section */
.insurance {
    padding: 5rem 5%;
}

.insurance h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.insurance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.stories-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Expert Tips Section */
.expert-tips {
    padding: 5rem 5%;
}

.expert-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.tips-content {
    max-width: 800px;
    margin: 0 auto;
}

.tips-list {
    list-style: none;
    margin-top: 2rem;
}

.tips-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.tips-list li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

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

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 5% 1rem;
}

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

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info .phone-number {
    color: #fff;
    font-size: 1.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.8;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
        height: auto;
        flex-direction: row;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .phone-number {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    
    .service-grid,
    .scenario-grid,
    .process-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-button,
    .hero {
        display: none;
    }
    
    body {
        color: #000;
    }
    
    a {
        text-decoration: none;
    }
} 