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

:root {
    --primary: #EE5A24;
    --primary-dark: #d94e1c;
    --dark: #1a1a1a;
    --gray: #666;
    --light: #f5f5f5;
    --white: #ffffff;
}

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

/* TOP BAR */
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-info { display: flex; gap: 25px; flex-wrap: wrap; align-items: center; }
.top-info a { color: #fff; }
.top-info i { margin-right: 6px; }
.top-social a {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
    transition: opacity .3s;
}
.top-social a:hover { opacity: .75; }

/* HEADER / NAV */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
.logo img { height: 55px; }
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
    padding: 10px 0;
    transition: color .3s;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); }

.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 11px; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    border-top: 3px solid var(--primary);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    transition: all .2s;
}
.dropdown-menu li a:hover {
    background: var(--primary);
    color: #fff;
}

.btn-call {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 700;
    transition: background .3s;
    white-space: nowrap;
}
.btn-call:hover { background: var(--primary-dark); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--primary);
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.25));
}
.hero-content {
    position: relative;
    max-width: 650px;
    padding: 80px 20px;
}
.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 800;
}
.hero-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffd9c9;
}
.hero-content p { font-size: 16px; margin-bottom: 28px; }

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 34px;
    border-radius: 5px;
    font-weight: 700;
    transition: all .3s;
    border: 2px solid var(--primary);
}
.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 34px;
    border-radius: 5px;
    font-weight: 700;
    transition: all .3s;
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* SECTION */
section { padding: 80px 0; }
.section-title {
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--dark);
}

/* ABOUT SECTION */
.about-section { background: #f7f7f7; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    background: var(--primary);
    padding: 25px;
    border-radius: 4px;
}
.about-img-wrap img {
    width: 100%;
    border-radius: 4px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.stat-item { text-align: center; }
.stat-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--primary);
    font-size: 22px;
}
.stat-num { font-size: 22px; font-weight: 800; color: var(--dark); }
.stat-label { font-size: 13px; color: var(--gray); }

/* SERVICES */
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.service-card {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: transform .4s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.75));
    transition: background .3s;
}
.service-card:hover::before {
    background: linear-gradient(180deg, rgba(238,90,36,.2), rgba(238,90,36,.85));
}
.service-card-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: #fff;
    z-index: 2;
}
.service-card-content h3 { font-size: 22px; margin-bottom: 12px; font-weight: 700; }
.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.95);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s;
}
.btn-learn:hover { background: var(--primary); color: #fff; }

/* WHY CHOOSE US */
.why-section { background: #fff; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.why-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all .3s;
}
.why-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}
.why-icon {
    width: 70px;
    height: 70px;
    background: #fff5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    margin: 0 auto 18px;
}
.why-card h4 { font-size: 18px; margin-bottom: 12px; color: var(--dark); }
.why-card p { font-size: 14px; color: var(--gray); }

/* CTA STRIP */
.cta-strip {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-strip h2 { font-size: 34px; margin-bottom: 14px; }
.cta-strip p { font-size: 17px; margin-bottom: 24px; }
.cta-strip .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.cta-strip .btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.process-step { text-align: center; position: relative; }
.process-num {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 18px;
}
.process-step h4 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--gray); }

/* TESTIMONIALS */
.testimonials { background: #f7f7f7; }
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.test-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}
.test-stars { color: #f5a623; margin-bottom: 12px; }
.test-text { font-style: italic; color: #555; margin-bottom: 18px; }
.test-author { font-weight: 700; color: var(--dark); }
.test-loc { font-size: 13px; color: var(--gray); }

/* PAGE HEADER */
.page-header {
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?w=1600') center/cover;
    color: #fff;
    padding: 100px 0 70px;
    text-align: center;
}
.page-header h1 { font-size: 48px; margin-bottom: 12px; }
.page-header .breadcrumb a { color: #ffd9c9; }
.page-header .breadcrumb span { margin: 0 8px; }

/* SERVICE PAGE LAYOUT */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    margin-top: 0;
}
.service-content h2 { font-size: 30px; color: var(--primary); margin: 30px 0 15px; }
.service-content h3 { font-size: 22px; color: var(--dark); margin: 25px 0 12px; }
.service-content p { margin-bottom: 18px; }
.service-content ul {
    list-style: none;
    margin-bottom: 20px;
}
.service-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
}
.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary);
    font-weight: 800;
    font-size: 18px;
}
.feature-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
}

.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-box {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}
.sidebar-box h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ddd;
}
.sidebar-list { list-style: none; }
.sidebar-list li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #e2e2e2;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
}
.sidebar-list li a:hover,
.sidebar-list li a.active { color: var(--primary); padding-left: 8px; }

.cta-box {
    background: var(--primary);
    color: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
}
.cta-box h3 { color: #fff; border: 0; padding: 0; margin-bottom: 12px; }
.cta-box p { font-size: 14px; margin-bottom: 18px; }
.cta-box .btn-primary { background: #fff; color: var(--primary); border-color: #fff; width: 100%; }

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}
.contact-info-box {
    background: #f7f7f7;
    padding: 35px;
    border-radius: 8px;
}
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.contact-item-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--gray); font-size: 14px; }

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 15px;
    transition: border-color .3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 0;
    border-color: var(--primary);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
    background: var(--primary);
    color: #fff;
    padding: 14px 36px;
    border: 0;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background .3s;
}
.contact-form button:hover { background: var(--primary-dark); }

.map-wrap {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.map-wrap iframe { width: 100%; height: 450px; border: 0; display: block; }

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.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: var(--primary);
}
.footer-col p, .footer-col a, .footer-col li {
    font-size: 14px;
    color: #aaa;
    line-height: 1.9;
}
.footer-col ul { list-style: none; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; transition: all .2s; }
.footer-logo { background: #fff; padding: 12px 16px; border-radius: 5px; display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 45px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: #2a2a2a;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-top: 12px;
    transition: background .3s;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}
.footer-bottom a { color: var(--primary); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 36px; }
    .about-grid, .services-intro, .contact-grid, .service-layout { grid-template-columns: 1fr; gap: 30px; }
    .services-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .sidebar { position: static; }
}
@media (max-width: 768px) {
    .top-bar { font-size: 12px; text-align: center; }
    .top-bar .container { justify-content: center; }
    .top-info { justify-content: center; gap: 12px; }
    .menu-toggle { display: block; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,.1);
        display: none;
    }
    .nav-menu.open { display: flex; }
    .nav-menu > li { width: 100%; border-bottom: 1px solid #eee; }
    .nav-menu > li > a { display: block; padding: 12px 0; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 10px 15px;
        display: none;
    }
    .dropdown.open .dropdown-menu { display: block; }
    .btn-call-nav { display: none; }
    .hero-content h1 { font-size: 30px; }
    .section-title { font-size: 28px; }
    .services-grid, .test-grid, .why-grid, .process-grid, .footer-grid, .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    section { padding: 60px 0; }
    .page-header { padding: 70px 0 50px; }
    .page-header h1 { font-size: 34px; }
}
