/* Reset and Base Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

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

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/water-damage-restoration-salt-lake-city-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff5252;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    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: 1rem;
    color: var(--primary-color);
}

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

/* Process Section */
.process {
    padding: 80px 0;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta h2 {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

.footer-info a {
    color: var(--white);
    text-decoration: none;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav ul {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-grid,
    .process-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Phone Link Styles */
.phone-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

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

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.step,
.faq-item {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Professional Process Section */
.professional-process {
    padding: 80px 0;
    background-color: var(--white);
}

.professional-process h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.professional-process h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.professional-process p {
    margin-bottom: 1.5rem;
}

/* Advanced Equipment Section */
.advanced-equipment {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.advanced-equipment h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.advanced-equipment p {
    margin-bottom: 1.5rem;
}

/* Common Causes Section */
.common-causes {
    padding: 80px 0;
    background-color: var(--white);
}

.common-causes h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.common-causes h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.common-causes p {
    margin-bottom: 1.5rem;
}

/* Secondary Damage Section */
.secondary-damage {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.secondary-damage h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.secondary-damage p {
    margin-bottom: 1.5rem;
}

/* Insurance Support Section */
.insurance-support {
    padding: 80px 0;
    background-color: var(--white);
}

.insurance-support h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.insurance-support p {
    margin-bottom: 1.5rem;
}

/* Prevention Tips Section */
.prevention-tips {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.prevention-tips h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.prevention-tips p {
    margin-bottom: 1.5rem;
}

/* Mold Prevention Section */
.mold-prevention {
    padding: 80px 0;
    background-color: var(--white);
}

.mold-prevention h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mold-prevention p {
    margin-bottom: 1.5rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .professional-process,
    .advanced-equipment,
    .common-causes,
    .secondary-damage,
    .insurance-support,
    .prevention-tips,
    .mold-prevention {
        padding: 60px 0;
    }

    .professional-process h2,
    .advanced-equipment h2,
    .common-causes h2,
    .secondary-damage h2,
    .insurance-support h2,
    .prevention-tips h2,
    .mold-prevention h2 {
        font-size: 2rem;
    }

    .professional-process h3,
    .common-causes h3 {
        font-size: 1.3rem;
    }
} 