/* ============ ProServ Restoration - Global Stylesheet ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #2b2b2b;
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ea5524; text-decoration: none; transition: color .25s; }
a:hover { color: #c1431a; }

/* ===== Top Info Bar ===== */
.top-bar {
  background: #ea5524;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.top-bar-info { display: flex; gap: 25px; flex-wrap: wrap; align-items: center; }
.top-bar-info span,
.top-bar-info a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.top-bar-info a:hover { color: #fde0d4; }
.top-bar-social { display: flex; gap: 12px; }
.top-bar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.top-bar-social a:hover { background: #fff; color: #ea5524; }

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

/* ===== Navbar ===== */
.navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  position: sticky; top: 0; z-index: 999;
}
.navbar .container {
  display: flex; justify-content: space-between; align-items: center;
}
.logo img { max-height: 55px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links > li > a {
  color: #2b2b2b;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 0;
  position: relative;
}
.nav-links > li > a:hover { color: #ea5524; }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
  border-top: 3px solid #ea5524;
  display: none;
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
}
.dropdown-menu li a:hover { background: #fff5f0; color: #ea5524; }

.cta-btn {
  background: #ea5524;
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { background: #c1431a; color: #fff; transform: translateY(-2px); }
.cta-btn-outline {
  background: transparent;
  color: #ea5524;
  border: 2px solid #ea5524;
}
.cta-btn-outline:hover { background: #ea5524; color: #fff; }

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

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 580px;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url('https://images.unsplash.com/photo-1583273803692-3f8f0d2c2eda?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  color: #fff;
}
.hero-inner { max-width: 700px; }
.hero h1 {
  font-size: 48px; font-weight: 700;
  line-height: 1.2; margin-bottom: 18px;
}
.hero h2 {
  font-size: 26px; font-weight: 600; margin-bottom: 18px;
  color: #fff;
}
.hero p { font-size: 16px; margin-bottom: 28px; max-width: 600px; }

/* ===== Section Base ===== */
section { padding: 80px 0; }
.section-title {
  font-size: 36px; font-weight: 700; color: #ea5524;
  line-height: 1.25; margin-bottom: 25px;
}
.section-subtitle {
  font-size: 20px; font-weight: 600; color: #222;
  margin-bottom: 18px;
}

/* ===== About Section ===== */
.about-section { background: #f7f7f7; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px; align-items: center;
}
.about-image-wrap {
  position: relative;
  background: #ea5524;
  padding: 30px 0 30px 30px;
  border-radius: 4px;
}
.about-image-wrap img {
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.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 #ea5524;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  color: #ea5524; font-size: 22px;
}
.stat-num { font-size: 20px; font-weight: 700; color: #222; }
.stat-label { font-size: 13px; color: #666; }

/* ===== Services Grid ===== */
.services-section { background: #fff; }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 50px; align-items: start;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.service-card {
  position: relative;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  padding: 25px;
  color: #fff;
  transition: transform .3s;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.2));
}
.service-card:hover { transform: translateY(-5px); }
.service-card-content { position: relative; z-index: 2; width: 100%; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; color: #fff; font-weight: 700; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.95);
  color: #2b2b2b;
  padding: 8px 14px; border-radius: 3px;
  font-size: 13px; font-weight: 600;
}
.service-card .learn-more:hover { background: #ea5524; color: #fff; }

/* ===== Why Choose Us ===== */
.why-section {
  background: #f7f7f7;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; margin-top: 40px;
}
.why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 4px;
  text-align: center;
  border-top: 3px solid #ea5524;
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,.08); }
.why-icon {
  width: 65px; height: 65px;
  background: #fff5f0; color: #ea5524;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}
.why-card h4 { font-size: 18px; margin-bottom: 10px; color: #222; }
.why-card p { font-size: 14px; color: #666; }

/* ===== CTA Strip ===== */
.cta-strip {
  background: linear-gradient(rgba(234,85,36,.92), rgba(234,85,36,.92)),
              url('https://images.unsplash.com/photo-1574610683010-50e2c8b67c0c?auto=format&fit=crop&w=1920&q=80') center/cover;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.cta-strip h2 { font-size: 34px; margin-bottom: 15px; color: #fff; }
.cta-strip p { font-size: 17px; margin-bottom: 25px; opacity: .95; }
.cta-strip .cta-btn {
  background: #fff; color: #ea5524;
}
.cta-strip .cta-btn:hover { background: #222; color: #fff; }

/* ===== FAQ ===== */
.faq-section { background: #fff; }
.faq-item {
  background: #f9f9f9;
  border-left: 3px solid #ea5524;
  padding: 18px 22px;
  margin-bottom: 12px;
  border-radius: 4px;
}
.faq-item h4 { font-size: 16px; color: #222; margin-bottom: 6px; }
.faq-item p { color: #555; font-size: 15px; }

/* ===== Page Banner ===== */
.page-banner {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url('https://images.unsplash.com/photo-1581094271901-8022df4466f9?auto=format&fit=crop&w=1920&q=80') center/cover;
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
}
.page-banner h1 { font-size: 44px; margin-bottom: 12px; }
.breadcrumbs { font-size: 14px; opacity: .9; }
.breadcrumbs a { color: #ffd2c1; }

/* ===== Service Page Layout ===== */
.service-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
}
.service-content h2 { color: #ea5524; font-size: 30px; margin: 30px 0 15px; }
.service-content h3 { font-size: 22px; margin: 25px 0 12px; color: #222; }
.service-content p { margin-bottom: 16px; color: #444; font-size: 16px; }
.service-content ul { margin: 15px 0 20px 22px; }
.service-content ul li { margin-bottom: 10px; color: #444; }
.service-content img.feature-img {
  border-radius: 6px;
  margin: 20px 0;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.sidebar {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 4px;
  position: sticky; top: 100px;
  height: fit-content;
}
.sidebar h4 {
  color: #ea5524; font-size: 18px;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid #ea5524;
}
.sidebar ul { list-style: none; margin: 0; }
.sidebar ul li {
  margin: 0 0 8px;
}
.sidebar ul li a {
  display: block;
  padding: 11px 14px;
  background: #fff;
  color: #444;
  border-left: 3px solid transparent;
  font-size: 14px;
  font-weight: 500;
}
.sidebar ul li a:hover,
.sidebar ul li a.active {
  background: #ea5524;
  color: #fff;
  border-left-color: #c1431a;
}
.sidebar-cta {
  background: #ea5524;
  color: #fff;
  padding: 25px;
  border-radius: 4px;
  margin-top: 25px;
  text-align: center;
}
.sidebar-cta h4 { color: #fff; font-size: 18px; margin-bottom: 10px; border: 0; }
.sidebar-cta p { font-size: 14px; margin-bottom: 14px; }
.sidebar-cta .cta-btn { background: #fff; color: #ea5524; }

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info-card {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.contact-info-card h4 {
  color: #ea5524; font-size: 18px; margin-bottom: 15px;
}
.contact-info-card p { margin-bottom: 8px; color: #444; }
.contact-form {
  background: #fff;
  padding: 35px;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.contact-form h3 { color: #ea5524; margin-bottom: 20px; font-size: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-weight: 600;
  margin-bottom: 6px; color: #333; font-size: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ea5524;
}
.map-wrap {
  margin-top: 50px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.map-wrap iframe { width: 100%; display: block; }

/* ===== Footer ===== */
footer {
  background: #1a1a1a;
  color: #cfcfcf;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 35px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: #ea5524;
}
.footer-col p, .footer-col li {
  font-size: 14px;
  color: #b3b3b3;
  margin-bottom: 10px;
}
.footer-col ul { list-style: none; }
.footer-col ul li a { color: #b3b3b3; transition: color .3s, padding-left .3s; }
.footer-col ul li a:hover { color: #ea5524; padding-left: 5px; }
.footer-col img { max-height: 55px; margin-bottom: 18px; filter: brightness(1.2); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item i {
  color: #ea5524;
  margin-top: 4px;
}
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: #cfcfcf;
}
.footer-social a:hover { background: #ea5524; color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #888;
}
.footer-bottom a { color: #ea5524; }

/* ===== Floating Call Button ===== */
.float-call {
  position: fixed;
  bottom: 25px; right: 25px;
  background: #ea5524;
  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(234,85,36,.5);
  z-index: 998;
  animation: pulse 2s infinite;
}
.float-call:hover { color: #fff; background: #c1431a; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,85,36,.5); }
  50% { box-shadow: 0 0 0 12px rgba(234,85,36,0); }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero h1 { font-size: 36px; }
  .about-grid, .services-intro, .contact-grid, .service-layout { grid-template-columns: 1fr; }
  .services-grid, .why-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: 720px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 18px 20px; gap: 14px;
    box-shadow: 0 6px 12px rgba(0,0,0,.06);
    display: none;
  }
  .nav-links.active { display: flex; }
  .nav-links .dropdown-menu { position: static; box-shadow: none; min-width: 100%; }
  .nav-links .cta-btn { width: 100%; justify-content: center; }
  .hero { min-height: 480px; }
  .hero h1 { font-size: 28px; }
  .hero h2 { font-size: 18px; }
  .section-title { font-size: 26px; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar .container { justify-content: center; text-align: center; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 30px; }
}
