/* ===================================================================
   Water Damage Restoration Norcross GA - Shared Stylesheet
   Color Scheme: Primary Blue (#1e3c72, #2a5298), Accent Orange (#ff6b35)
   =================================================================== */

/* === Reset & Base === */
* { 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;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === Header (sticky) === */
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,
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.8rem 0;
}
.logo { display: flex; align-items: center; gap: 15px; }
.logo img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.logo h1 { font-size: 1.8rem; font-weight: 700; }
.logo a { text-decoration: none; color: inherit; display: flex; align-items: center; gap: 15px; }
.phone-cta {
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.phone-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* === Navigation === */
.main-nav {
    background: #163060;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
}
.nav-list li { position: relative; }
.nav-list a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}
.nav-list a:hover,
.nav-list a.active {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}
.nav-list a.active {
    border-bottom: 3px solid #ff6b35;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 10px 15px;
    line-height: 1;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === Breadcrumbs === */
.breadcrumb {
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
}
.breadcrumb-list li { display: flex; align-items: center; }
.breadcrumb-list li + li::before {
    content: ">";
    padding: 0 10px;
    color: #999;
    font-size: 0.85rem;
}
.breadcrumb-list a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-list a:hover { color: #ff6b35; }
.breadcrumb-list .current { color: #666; font-weight: 500; }

/* === Hero Section === */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/water-damage-restoration-norcross-ga-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero h2 { font-size: 3rem; margin-bottom: 20px; font-weight: 700; }
.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-sm { padding: 60px 0; }
.hero-sm h2 { font-size: 2.4rem; }

/* === CTA Buttons === */
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}
.btn-secondary:hover { background: white; color: #333; }
.btn-outline-blue {
    background: transparent;
    color: #1e3c72;
    padding: 12px 24px;
    border: 2px solid #1e3c72;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}
.btn-outline-blue:hover { background: #1e3c72; color: white; }

/* === Main Content & Sections === */
main { padding: 60px 0; }
.section { margin-bottom: 80px; }
.section h2 { font-size: 2.5rem; margin-bottom: 30px; color: #1e3c72; text-align: center; }
.section h3 { font-size: 1.8rem; margin-bottom: 20px; color: #2a5298; }
.section h4 { font-size: 1.2rem; margin-bottom: 12px; color: #1e3c72; margin-top: 15px; }
.section p { font-size: 1.1rem; margin-bottom: 20px; color: #555; }
.section ol, .section ul { margin-left: 30px; margin-bottom: 20px; }
.section li { font-size: 1.1rem; margin-bottom: 10px; color: #555; }

/* === Service Cards === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px 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-content { padding: 25px; }
.service-card h3 { color: #1e3c72; margin-bottom: 15px; }

/* === Process Steps === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}
.step h3 { margin-bottom: 10px; color: #1e3c72; }

/* Step with numbered badge */
.step-numbered { padding-top: 50px; }
.step-number {
    position: absolute;
    top: -18px;
    left: 25px;
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* === FAQ Accordion === */
.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq-question {
    background: #1e3c72;
    color: white;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    position: relative;
    padding-right: 50px;
}
.faq-question:hover { background: #2a5298; }
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.faq-question.open::after {
    content: "-";
}
.faq-answer { padding: 20px; display: none; }
.faq-answer.active { display: block; }

/* === Content Cards (for inner pages) === */
.content-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.content-card h3 { color: #1e3c72; margin-bottom: 15px; font-size: 1.6rem; }
.content-card p { color: #555; font-size: 1.05rem; margin-bottom: 15px; }

/* Info Box (callout / highlight) */
.info-box {
    background: linear-gradient(135deg, #eef2f9 0%, #dce5f4 100%);
    border-left: 4px solid #1e3c72;
    padding: 25px 30px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 30px;
}
.info-box h3 { color: #1e3c72; margin-bottom: 10px; }
.info-box p { color: #444; margin-bottom: 10px; }
.info-box-warning {
    background: linear-gradient(135deg, #fff5ee 0%, #ffe8d6 100%);
    border-left-color: #ff6b35;
}
.info-box-warning h3 { color: #ff6b35; }

/* === Comparison Table === */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
.comparison-table th {
    background: #1e3c72;
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}
.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    color: #555;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #f8f9fa; }

/* === Cost Range Cards === */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.cost-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #1e3c72;
}
.cost-card h3 { color: #1e3c72; margin-bottom: 10px; }
.cost-card .price-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

/* === Stat / Feature Boxes === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.stat-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}
.stat-box .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
    margin-bottom: 8px;
}
.stat-box .stat-label {
    font-size: 0.95rem;
    color: #555;
}

/* === Two-Column Layout === */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* === Footer === */
footer {
    background: #1e3c72;
    color: white;
    padding: 40px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-section h3 { margin-bottom: 15px; color: #ff6b35; }
.footer-section p { line-height: 1.8; }
.footer-section a { color: #ff6b35; text-decoration: none; }
.footer-section a:hover { text-decoration: underline; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 6px; }
.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-nav a:hover { color: #ff6b35; }
.footer-bottom {
    border-top: 1px solid #2a5298;
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p { font-size: 0.9rem; line-height: 1.7; }

/* === Utility Classes === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
strong { color: #1e3c72; font-weight: 700; }
.text-orange { color: #ff6b35; }
.text-blue { color: #1e3c72; }
.text-muted { color: #777; }
.bg-white { background: white; }
.bg-light { background: #f8f9fa; }
.rounded { border-radius: 15px; }
.shadow { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); }
.list-none { list-style: none; padding-left: 0; margin-left: 0; }

/* Inline CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}
.cta-banner h3 { color: white; margin-bottom: 15px; font-size: 1.8rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); margin-bottom: 20px; font-size: 1.1rem; }

/* === Responsive: Tablet === */
@media (max-width: 992px) {
    .two-col { grid-template-columns: 1fr; }
    .nav-list a { padding: 12px 14px; font-size: 0.88rem; }
}

/* === Responsive: Mobile === */
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 15px; }
    .logo h1 { font-size: 1.3rem; }

    /* Hamburger menu */
    .nav-toggle { display: block; }
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-list.open { display: flex; }
    .nav-list a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left;
    }

    /* Hero */
    .hero { padding: 60px 0; }
    .hero h2 { font-size: 2rem; }
    .hero p { font-size: 1.1rem; }
    .hero-sm { padding: 40px 0; }
    .hero-sm h2 { font-size: 1.8rem; }

    /* CTA */
    .cta-buttons { flex-direction: column; align-items: center; }

    /* Sections */
    .section h2 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .cost-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }

    /* Breadcrumb */
    .breadcrumb { font-size: 0.82rem; }

    /* Table scroll */
    .table-responsive { overflow-x: auto; }
    .comparison-table { min-width: 500px; }

    /* CTA Banner */
    .cta-banner { padding: 25px 20px; }
    .cta-banner h3 { font-size: 1.4rem; }

    /* Content card */
    .content-card { padding: 25px 20px; }
}

/* === Responsive: Small phones === */
@media (max-width: 480px) {
    .logo h1 { font-size: 1.1rem; }
    .logo img { width: 45px; height: 45px; }
    .phone-cta { padding: 10px 18px; font-size: 1rem; }
    .hero h2 { font-size: 1.7rem; }
    .section h2 { font-size: 1.6rem; }
    .stats-grid { grid-template-columns: 1fr; }
}
