/* ProServ Restoration - Main Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #0a2540;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar a { color: #fff; transition: color 0.3s; }
.top-bar a:hover { color: #ffb400; }
.top-bar-info { display: flex; gap: 25px; flex-wrap: wrap; }
.top-bar-info span i { margin-right: 6px; color: #ffb400; }
.top-bar-social a { margin-left: 12px; }

/* ===== HEADER ===== */
.header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo img { max-height: 65px; }
.nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav ul li { position: relative; }
.nav ul li a {
    font-weight: 600;
    color: #0a2540;
    padding: 8px 0;
    transition: color 0.3s;
    font-size: 15px;
}
.nav ul li a:hover { color: #d62828; }
.nav ul li.has-dropdown > a::after {
    content: ' ▾';
    font-size: 12px;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 280px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid #d62828;
}
.nav ul li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #f8f9fa; color: #d62828; padding-left: 25px; }

.btn-call {
    background: #d62828;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: all 0.3s;
}
.btn-call:hover {
    background: #b51e1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(214,40,40,0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #0a2540;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, rgba(10,37,64,0.85), rgba(214,40,40,0.75)),
        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 110px 20px;
    text-align: center;
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}
.hero p {
    font-size: 20px;
    max-width: 850px;
    margin: 0 auto 35px;
    opacity: 0.95;
}
.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary { background: #d62828; color: #fff; }
.btn-primary:hover { background: #b51e1e; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(214,40,40,0.5); }
.btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.btn-secondary:hover { background: #fff; color: #0a2540; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-size: 40px;
    color: #0a2540;
    font-weight: 800;
    margin-bottom: 15px;
}
.section-title p {
    font-size: 17px;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d62828;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: #f8f9fa; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content h2 {
    font-size: 36px;
    color: #0a2540;
    margin-bottom: 20px;
    font-weight: 800;
}
.about-content h2 span { color: #d62828; }
.about-content p { margin-bottom: 18px; color: #555; font-size: 16px; }
.about-features {
    list-style: none;
    margin-top: 25px;
}
.about-features li {
    padding: 10px 0;
    color: #444;
    font-weight: 500;
}
.about-features li::before {
    content: '✓';
    color: #d62828;
    font-weight: 900;
    margin-right: 12px;
    font-size: 18px;
}
.about-image img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    border-bottom-color: #d62828;
}
.service-icon {
    background: linear-gradient(135deg, #0a2540, #d62828);
    color: #fff;
    padding: 30px;
    text-align: center;
    font-size: 50px;
}
.service-card-content { padding: 25px; }
.service-card-content h3 {
    font-size: 21px;
    color: #0a2540;
    margin-bottom: 12px;
    font-weight: 700;
}
.service-card-content p {
    color: #666;
    margin-bottom: 18px;
    font-size: 15px;
}
.service-card-content a {
    color: #d62828;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card-content a:hover { color: #0a2540; }

/* ===== WHY CHOOSE ===== */
.why-choose { background: #0a2540; color: #fff; }
.why-choose .section-title h2 { color: #fff; }
.why-choose .section-title p { color: #b8c5d6; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.why-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s;
}
.why-item:hover { background: rgba(214,40,40,0.15); transform: translateY(-5px); }
.why-icon {
    font-size: 48px;
    color: #ffb400;
    margin-bottom: 18px;
}
.why-item h3 { font-size: 19px; margin-bottom: 12px; color: #fff; }
.why-item p { color: #b8c5d6; font-size: 14px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #d62828, #8b0000);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}
.cta-banner h2 { font-size: 36px; margin-bottom: 15px; font-weight: 800; }
.cta-banner p { font-size: 18px; margin-bottom: 25px; }
.cta-banner .btn-secondary { border-color: #fff; }
.cta-banner .btn-secondary:hover { background: #fff; color: #d62828; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #f8f9fa; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    position: relative;
}
.testi-card::before {
    content: '"';
    font-size: 80px;
    color: #d62828;
    position: absolute;
    top: 0; right: 20px;
    line-height: 1;
    opacity: 0.2;
}
.testi-stars { color: #ffb400; margin-bottom: 12px; font-size: 18px; }
.testi-card p { color: #555; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #0a2540, #d62828);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}
.testi-author h4 { font-size: 16px; color: #0a2540; }
.testi-author span { font-size: 13px; color: #888; }

/* ===== FAQ ===== */
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    color: #0a2540;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-question:hover { background: #f8f9fa; }
.faq-question::after { content: '+'; font-size: 24px; color: #d62828; transition: transform 0.3s; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 25px;
    color: #555;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 25px 20px; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info-block {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}
.contact-info-block h3 { color: #0a2540; margin-bottom: 25px; font-size: 24px; }
.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.contact-info-item .icon {
    background: #d62828;
    color: #fff;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
.contact-info-item h4 { color: #0a2540; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: #555; font-size: 15px; }
.contact-info-item a:hover { color: #d62828; }

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-form h3 { color: #0a2540; margin-bottom: 25px; font-size: 24px; }
.form-group { margin-bottom: 18px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #d62828;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.map-block { margin-top: 50px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-block iframe { width: 100%; height: 450px; border: 0; display: block; }

/* ===== INNER PAGE HEADER ===== */
.page-banner {
    background: linear-gradient(135deg, rgba(10,37,64,0.9), rgba(214,40,40,0.85)),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}
.page-banner h1 { font-size: 46px; font-weight: 800; margin-bottom: 12px; }
.breadcrumb { font-size: 14px; opacity: 0.9; }
.breadcrumb a { color: #ffb400; }

/* ===== SERVICE PAGE ===== */
.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.service-main h2 { color: #0a2540; font-size: 32px; margin: 30px 0 18px; font-weight: 800; }
.service-main h3 { color: #0a2540; font-size: 24px; margin: 25px 0 15px; }
.service-main p { color: #555; margin-bottom: 18px; font-size: 16px; }
.service-main ul { margin: 15px 0 25px 25px; color: #555; }
.service-main ul li { padding: 6px 0; }
.service-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.sidebar-widget {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 25px;
}
.sidebar-widget h3 {
    color: #0a2540;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d62828;
    font-size: 20px;
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
    color: #444;
    font-weight: 500;
    transition: all 0.3s;
    display: block;
    font-size: 15px;
}
.sidebar-widget ul li a:hover { color: #d62828; padding-left: 8px; }
.sidebar-cta {
    background: linear-gradient(135deg, #d62828, #8b0000);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}
.sidebar-cta h3 { color: #fff; margin-bottom: 12px; font-size: 22px; }
.sidebar-cta p { margin-bottom: 18px; font-size: 14px; }
.sidebar-cta .phone { font-size: 26px; font-weight: 800; margin: 12px 0; display: block; color: #fff; }

/* ===== FOOTER ===== */
.footer {
    background: #0a2540;
    color: #b8c5d6;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: #d62828;
}
.footer-logo { max-height: 60px; margin-bottom: 18px; background: #fff; padding: 8px 12px; border-radius: 6px; }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 7px 0; font-size: 14px; }
.footer-col ul li a { color: #b8c5d6; transition: all 0.3s; }
.footer-col ul li a:hover { color: #ffb400; padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: #ffb400; margin-top: 4px; }
.footer-social a {
    display: inline-flex;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s;
}
.footer-social a:hover { background: #d62828; transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    text-align: center;
    font-size: 14px;
}
.footer-bottom a { color: #ffb400; }

/* ===== FLOATING CALL ===== */
.floating-call {
    position: fixed;
    bottom: 25px; right: 25px;
    background: #d62828;
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 18px rgba(214,40,40,0.5);
    z-index: 999;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(214,40,40,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(214,40,40,0); }
    100% { box-shadow: 0 0 0 0 rgba(214,40,40,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .service-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 38px; }
    .section-title h2 { font-size: 32px; }
}
@media (max-width: 768px) {
    .top-bar .container { flex-direction: column; gap: 6px; font-size: 12px; }
    .top-bar-info { gap: 12px; justify-content: center; }
    .menu-toggle { display: block; }
    .nav {
        display: none;
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .nav.active { display: block; }
    .nav ul { flex-direction: column; padding: 18px 0; gap: 0; }
    .nav ul li { width: 100%; }
    .nav ul li a { display: block; padding: 12px 25px; border-bottom: 1px solid #f0f0f0; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        padding-left: 18px;
    }
    .hero { padding: 70px 20px; }
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 55px 0; }
}
