/* ── ELITE EXTERIOR SOLUTIONS – Shared Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #0d2e6e;
  --blue-lt: #1a4db8;
  --black:   #0a0a0f;
  --dark:    #111827;
  --mid:     #1e2a3a;
  --white:   #ffffff;
  --gray:    #f4f6fb;
  --text:    #e2e8f0;
  --accent:  #2563eb;
  --gold:    #facc15;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TOPBAR ── */
.topbar {
  background: var(--black);
  color: var(--text);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: .5px;
}
.topbar a { color: var(--gold); font-weight: 600; }

/* ── HEADER / NAV ── */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 72px; width: auto; }
.logo-text { color: var(--white); }
.logo-text strong { display: block; font-size: 17px; font-weight: 800; line-height: 1.1; }
.logo-text span { font-size: 11px; letter-spacing: 1.5px; opacity: .75; text-transform: uppercase; }

/* Dropdown nav */
nav { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-item > a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-item > a:hover { color: var(--gold); background: rgba(255,255,255,.06); }
.nav-item > a .caret { font-size: 10px; opacity: .6; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
  border: 1px solid #e2e8f0;
}
.dropdown.open { display: block; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--dark);
  font-size: 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--gray); color: var(--accent); }
.dropdown a .d-icon { font-size: 18px; width: 24px; text-align: center; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  transition: background .2s, transform .15s !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #e6b800 !important; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 8px;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: #e6b800; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color .2s, transform .15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 8px;
  display: inline-block;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-dark:hover { background: var(--blue); transform: translateY(-2px); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-block;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-blue:hover { background: var(--blue-lt); transform: translateY(-2px); }

/* ── SECTION HELPERS ── */
section { padding: 80px 24px; }
.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
h2.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ── HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--blue) 60%, #0a1a40 100%);
  color: var(--white);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.page-hero .hero-badge {
  display: inline-block;
  background: rgba(250,204,21,.15);
  border: 1px solid rgba(250,204,21,.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--dark); padding: 20px 24px; }
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 14px; font-weight: 600; }
.trust-icon { font-size: 20px; }

/* ── SERVICES GRID ── */
.services-bg { background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid #e2e8f0;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(13,46,110,.12); }
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #64748b; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.service-features { list-style: none; margin-bottom: 20px; }
.service-features li {
  font-size: 13px;
  color: #475569;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.service-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
  margin-top: auto;
}
.service-link:hover { gap: 10px; }

/* ── PROCESS ── */
.process-bg { background: linear-gradient(135deg, var(--black) 0%, var(--blue) 100%); }
.process-bg .section-label { color: var(--gold); }
.process-bg h2.section-title { color: var(--white); }
.process-bg .section-sub { color: rgba(255,255,255,.65); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.step {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { color: var(--white); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.65; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%);
  border-radius: 20px;
  padding: 56px 36px;
  color: var(--white);
  text-align: center;
}
.why-visual-icon { font-size: 64px; margin-bottom: 18px; }
.why-visual h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.why-visual p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; }
.big-rating { font-size: 64px; font-weight: 900; color: var(--gold); margin: 18px 0 0; }
.rating-label { font-size: 13px; color: rgba(255,255,255,.5); }
.why-points { list-style: none; }
.why-point {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}
.why-point:last-child { border-bottom: none; }
.why-point-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--gray);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-point-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.why-point-text p { font-size: 14px; color: #64748b; line-height: 1.5; }

/* ── BENEFITS GRID (service pages) ── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.benefit-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(13,46,110,.1); }
.benefit-icon { font-size: 40px; margin-bottom: 14px; }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: #64748b; line-height: 1.55; }

/* ── REVIEWS ── */
.reviews-bg { background: var(--gray); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.review-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid #e2e8f0;
}
.stars { color: #f59e0b; font-size: 17px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #475569; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px;
}
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.reviewer-location { font-size: 12px; color: #94a3b8; }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 60px 24px; text-align: center; }
.cta-band h2 { font-size: clamp(22px, 4vw, 36px); font-weight: 900; color: var(--black); margin-bottom: 10px; }
.cta-band p { font-size: 15px; color: rgba(0,0,0,.65); margin-bottom: 28px; }

/* ── CONTACT / QUOTE FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.contact-info p { color: #64748b; font-size: 15px; line-height: 1.65; margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.contact-item-text span { font-size: 13px; color: #64748b; }
.quote-form {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.quote-form h3 { font-size: 19px; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.quote-form .form-sub { font-size: 13px; color: #64748b; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid #cbd5e1; border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--dark);
  outline: none; transition: border-color .2s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 85px; }
.form-submit {
  width: 100%; background: var(--blue); color: var(--white);
  font-size: 15px; font-weight: 800; padding: 15px;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background .2s, transform .15s; margin-top: 4px;
}
.form-submit:hover { background: var(--blue-lt); transform: translateY(-1px); }
.form-note { font-size: 11px; color: #94a3b8; text-align: center; margin-top: 8px; }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,.6); padding: 56px 24px 28px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo img { height: 70px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 280px; margin-top: 10px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--gold); }

/* ── FLOATING PHONE ── */
.float-phone {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--gold); color: var(--black);
  font-weight: 800; font-size: 14px;
  padding: 13px 22px; border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  display: flex; align-items: center; gap: 8px;
  z-index: 999; transition: transform .2s, background .2s;
}
.float-phone:hover { transform: scale(1.05); background: #e6b800; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { display: none; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
}
