/* =============================================
   ATLAS DOOR COMPANY — v9 CLEAN HERO
   ============================================= */
:root {
  --navy:   #041327;
  --navy2:  #071a2f;
  --orange: #ff6a00;
  --border: #1e3a58;
  --max:    1280px;
  --pad:    40px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Inter, sans-serif; background: #fff; color: #111; overflow-x: hidden; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 999;
  border-bottom: 2px solid rgba(255,106,0,.22);
}
.nav-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad); height: 167px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.logo { height: 155px !important; width: auto !important; max-width: none !important; flex-shrink: 0; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.82); font-weight: 600; font-size: .85rem; letter-spacing: .03em; transition: color .2s; }
.nav-links a:hover { color: var(--orange); }
.header-phone {
  border: 1.5px solid var(--orange); color: #fff; font-weight: 800;
  padding: 9px 18px; border-radius: 6px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; flex-shrink: 0; transition: background .2s;
}
.header-phone:hover { background: rgba(255,106,0,.1); }
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.3; }
.header-phone-num { font-size: .98rem; font-weight: 800; color: #fff; }
.header-phone-sub { font-size: .58rem; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.5); }

/* ── SERVICES NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.82); font-weight: 600; font-size: .85rem;
  letter-spacing: .03em; font-family: Inter, sans-serif;
  transition: color .2s;
}
.nav-dropdown-btn:hover { color: var(--orange); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: #0d2240; border: 1px solid rgba(255,106,0,.18);
  border-radius: 8px; padding: 8px; min-width: 160px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  flex-direction: column; gap: 2px;
}
.nav-dropdown-menu.open { display: flex; }
.nav-dropdown-menu a {
  color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600;
  padding: 9px 12px; border-radius: 5px; transition: background .2s, color .2s;
}
.nav-dropdown-menu a:hover { background: rgba(255,106,0,.1); color: var(--orange); }

/* ── HAMBURGER ── */
.mobile-header-controls { display: none; align-items: center; gap: 12px; }
.mobile-fb-icon {
  display: flex; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,106,0,.08); border: 1.5px solid rgba(255,106,0,.3);
  align-items: center; justify-content: center; color: var(--orange);
  flex-shrink: 0; transition: background .2s, border-color .2s;
}
.mobile-fb-icon:hover { background: rgba(255,106,0,.18); border-color: var(--orange); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; z-index: 1001; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: absolute; top: 167px; left: 0; right: 0; background: #041327; border-bottom: 2px solid rgba(255,106,0,.2); z-index: 998; flex-direction: column; box-shadow: 0 12px 40px rgba(0,0,0,.6); max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .3s ease; }
.mobile-nav.open { display: flex; max-height: 500px; opacity: 1; }
.mobile-nav a { color: #fff; font-size: 1rem; font-weight: 600; padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; transition: color .2s, background .2s; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); background: rgba(255,106,0,.05); }
.mobile-nav .mobile-cta { background: var(--orange); color: #fff !important; justify-content: center; font-weight: 800; gap: 8px; margin: 10px 16px 14px; border-radius: 4px; border-bottom: none !important; }

/* ══════════════════════════════════════════
   HERO — full bleed, image top-aligned
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 640px;
  display: flex; align-items: stretch;
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(4,19,39,.88)  0%,
    rgba(4,19,39,.78)  30%,
    rgba(4,19,39,.48)  55%,
    rgba(4,19,39,.18)  80%,
    rgba(4,19,39,.05) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1600px; margin: 0 auto; width: 100%;
  padding: 64px var(--pad) 56px;
  display: flex; align-items: center;
}

.hero-content {
  display: flex; flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.hero-eyebrow {
  color: var(--orange); font-weight: 800;
  font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
.hero-h1 {
  font-family: Oswald, sans-serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 700; line-height: .88;
  color: #fff; text-transform: uppercase;
  text-shadow: 0 4px 8px rgba(0,0,0,.85), 0 8px 40px rgba(0,0,0,.7);
}
.hero-h1 span { color: var(--orange); text-shadow: 0 4px 8px rgba(0,0,0,.85), 0 0 50px rgba(255,106,0,.45), 0 8px 40px rgba(0,0,0,.7); }
.hero-sub {
  color: rgba(255,255,255,.85); font-size: 1rem;
  line-height: 1.65; margin: 22px 0 30px; max-width: 440px;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 9px;
  flex-wrap: wrap; margin-top: 26px;
  color: rgba(255,255,255,.65);
  font-weight: 700; font-size: .72rem; letter-spacing: .06em;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}
.hero-trust svg { color: var(--orange); flex-shrink: 0; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-weight: 800; border-radius: 4px;
  font-size: .92rem; transition: filter .2s, transform .15s;
  cursor: pointer; font-family: Inter, sans-serif; border: none;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-ghost  { border: 2px solid rgba(255,255,255,.35) !important; color: #fff; background: transparent; }
.btn-ghost:hover { border-color: #fff !important; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════ */
.trust-bar { background: var(--navy); border-top: 1px solid rgba(255,106,0,.15); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding-top: 40px; padding-bottom: 40px; }
.trust-item { text-align: center; }
.trust-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 50%; background: rgba(255,106,0,.08);
  border: 1.5px solid rgba(255,106,0,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.trust-item h3 { font-family: Oswald, sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: #fff; margin-bottom: 8px; text-transform: uppercase; }
.trust-item p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ══════════════════════════════════════════
   SHARED SECTION
   ══════════════════════════════════════════ */
.sec { max-width: var(--max); margin: 0 auto; padding: 64px var(--pad); }
.section-eyebrow { color: var(--orange); font-weight: 800; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 6px; }
.section-title { font-family: Oswald, sans-serif; font-size: clamp(1.5rem, 2.2vw, 2rem); color: #fff; text-transform: uppercase; margin-bottom: 28px; }

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services { background: var(--navy); }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.service-card { position: relative; overflow: hidden; background: linear-gradient(155deg,#0f2847 0%,#071529 100%); border: 1px solid rgba(255,106,0,.16); border-radius: 10px; padding: 0 0 20px; display: flex; flex-direction: column; transition: border-color .3s, box-shadow .3s, transform .25s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--orange),rgba(255,106,0,.1)); opacity: .45; transition: opacity .3s; z-index: 2; }
.service-card:hover { border-color: rgba(255,106,0,.45); box-shadow: 0 6px 28px rgba(255,106,0,.13); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.card-photo { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #071423; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.service-card:hover .card-photo img { transform: scale(1.04); }
.service-card h3 { font-family: Oswald, sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .04em; margin: 16px 18px 8px; text-align: center; }
.service-card p { color: rgba(255,255,255,.52); font-size: .81rem; line-height: 1.62; flex: 1; margin: 0 18px 10px; text-align: center; }
.learn-more { color: var(--orange); font-weight: 800; font-size: .72rem; letter-spacing: .08em; display: flex; align-items: center; justify-content: center; gap: 5px; margin: 4px 18px 0; transition: gap .2s; text-transform: uppercase; }
.service-card:hover .learn-more { gap: 9px; }

/* ══════════════════════════════════════════
   CITY / SERVICE AREA PAGES
   ══════════════════════════════════════════ */
.city-hero { position: relative; overflow: hidden; background: var(--navy); padding: 72px 0 60px; }
.city-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 20%, rgba(255,106,0,.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 85% 80%, rgba(255,106,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.city-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.city-hero-inner h1 {
  font-family: Oswald, sans-serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700;
  color: #fff; text-transform: uppercase; line-height: 1.1; margin: 10px 0 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.city-hero-inner h1 span { color: var(--orange); text-shadow: 0 0 40px rgba(255,106,0,.4); }
.city-hero-inner p { color: rgba(255,255,255,.68); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; max-width: 620px; }

.city-services { background: #071423; }
.city-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.city-service-card {
  display: block; background: linear-gradient(155deg,#0f2847 0%,#071529 100%);
  border: 1px solid rgba(255,106,0,.16); border-radius: 10px; padding: 24px 20px;
  text-decoration: none; transition: border-color .3s, transform .25s;
}
.city-service-card:hover { border-color: rgba(255,106,0,.45); transform: translateY(-3px); }
.city-service-card h3 { font-family: Oswald, sans-serif; font-size: 1rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.city-service-card p { color: rgba(255,255,255,.5); font-size: .8rem; line-height: 1.6; }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-hero { position: relative; overflow: hidden; background: var(--navy); padding: 72px 0 60px; }
.about-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 20%, rgba(255,106,0,.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 85% 80%, rgba(255,106,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.about-hero-inner h1 {
  font-family: Oswald, sans-serif; font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700;
  color: #fff; text-transform: uppercase; line-height: 1.05; margin: 10px 0 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.about-hero-inner h1 span { color: var(--orange); text-shadow: 0 0 40px rgba(255,106,0,.4); }
.about-hero-inner p { color: rgba(255,255,255,.68); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; max-width: 620px; }

.about-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.about-badge {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,106,0,.06); border: 1.5px solid rgba(255,106,0,.3);
  border-radius: 10px; padding: 16px 22px;
}
.about-badge svg { color: var(--orange); flex-shrink: 0; }
.about-badge div { display: flex; flex-direction: column; line-height: 1.3; }
.about-badge-num { font-family: Oswald, sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: .02em; }
.about-badge-label { font-size: .74rem; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: .03em; margin-top: 2px; }

.about-values { background: #071423; }
.about-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.about-value-card { background: linear-gradient(155deg,#0f2847 0%,#071529 100%); border: 1px solid rgba(255,106,0,.16); border-radius: 10px; padding: 26px 20px; text-align: center; transition: border-color .3s, transform .25s; }
.about-value-card:hover { border-color: rgba(255,106,0,.45); transform: translateY(-3px); }
.about-value-icon { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 50%; background: rgba(255,106,0,.08); border: 1.5px solid rgba(255,106,0,.25); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.about-value-card h3 { font-family: Oswald, sans-serif; font-size: 1rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 10px; }
.about-value-card p { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.6; }

.about-areas { background: var(--navy); border-top: 1px solid rgba(255,106,0,.12); text-align: center; }
.about-areas-inner { max-width: 680px; margin: 0 auto; }
.about-areas-inner h2 { font-family: Oswald, sans-serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; color: #fff; text-transform: uppercase; margin-bottom: 14px; }
.about-areas-inner p { color: rgba(255,255,255,.6); font-size: .94rem; line-height: 1.75; }

/* ══════════════════════════════════════════
   LEGAL PAGES (Privacy Policy / Terms)
   ══════════════════════════════════════════ */
.legal-page { background: #071423; padding: 60px 0 80px; }
.legal-content { max-width: 760px; }
.legal-content h1 {
  font-family: Oswald, sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 20px;
}
.legal-content h2 {
  font-family: Oswald, sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: .04em;
  margin: 30px 0 10px;
}
.legal-content p { color: rgba(255,255,255,.62); font-size: .92rem; line-height: 1.7; margin-bottom: 12px; }
.legal-content .legal-intro { font-size: .98rem; color: rgba(255,255,255,.75); }
.legal-content ul { margin: 4px 0 12px 20px; }
.legal-content li { color: rgba(255,255,255,.62); font-size: .92rem; line-height: 1.75; }
.legal-content a { color: var(--orange); }
.legal-content a:hover { text-decoration: underline; }
.legal-contact { line-height: 1.9; }
.legal-back {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 26px;
  color: var(--orange); font-weight: 700; font-size: .88rem; text-decoration: none;
  transition: gap .2s;
}
.legal-back:hover { gap: 10px; }

/* ══════════════════════════════════════════
   SERVICE DETAIL PAGES
   ══════════════════════════════════════════ */
.svc-hero { background: var(--navy); padding-top: 20px; }
.svc-hero-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.svc-hero-photo { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,106,0,.18); aspect-ratio: 4/3; }
.svc-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero-copy h1 { font-family: Oswald, sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .02em; margin: 8px 0 16px; line-height: 1.05; }
.svc-hero-copy p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin-bottom: 26px; max-width: 480px; }

.svc-detail { background: #071423; }
.svc-detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.svc-detail-col h2 { font-family: Oswald, sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 20px; }
.svc-detail-list { list-style: none; }
.svc-detail-list li {
  position: relative; padding-left: 24px; margin-bottom: 14px;
  font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.62);
}
.svc-detail-list li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--orange);
}

.svc-cta { background: var(--navy); border-top: 1px solid rgba(255,106,0,.15); text-align: center; }
.svc-cta-inner { max-width: 600px; margin: 0 auto; }
.svc-cta-inner h2 { font-family: Oswald, sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: #fff; text-transform: uppercase; margin-bottom: 10px; }
.svc-cta-inner p { color: rgba(255,255,255,.6); font-size: .92rem; margin-bottom: 26px; }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-section { background: #071423; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-desc { color: rgba(255,255,255,.58); font-size: .93rem; line-height: 1.7; margin: 14px 0 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.4rem; transition: color .2s; }
.contact-phone:hover { color: var(--orange); }
.contact-phone svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.contact-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.45); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.contact-badge svg { width: 13px; height: 13px; color: var(--orange); flex-shrink: 0; }
.contact-form { background: linear-gradient(155deg,#0d2240 0%,#081628 100%); border: 1px solid rgba(255,106,0,.16); border-radius: 12px; padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; color: #fff; font-family: Inter, sans-serif; font-size: .9rem; padding: 11px 13px; transition: border-color .2s, background .2s; width: 100%; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,106,0,.05); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 15px; padding-right: 34px; background-color: rgba(255,255,255,.06); }
.form-group select option { background: #0d2240; color: #fff; }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: .92rem; margin-top: 4px; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer { background: #03101e; padding: 48px 0 22px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.footer-grid { display: grid; grid-template-columns: auto repeat(3,1fr) auto; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid #152840; }
.footer-logo { height: 78px; margin-bottom: 10px; }
.footer-tagline { color: rgba(255,255,255,.28); font-size: .72rem; letter-spacing: .08em; }
.footer-col h4, .footer-social h4 { color: #fff; font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a { color: rgba(255,255,255,.38); font-size: .76rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.social-icons { display: flex; gap: 8px; }
.social-icon { width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: border-color .2s, color .2s; }
.social-icon:hover { border-color: var(--orange); color: var(--orange); }
.social-icon svg { width: 15px; height: 15px; }
.footer-bottom {
  padding-top: 18px; color: rgba(255,255,255,.35); font-size: .7rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-right { display: flex; align-items: center; gap: 16px; }
.footer-bottom-right a { color: rgba(255,255,255,.5); font-weight: 700; transition: color .2s; }
.footer-bottom-right a:hover { color: var(--orange); }
.footer-bottom-right span { color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-h1      { font-size: clamp(3.4rem, 6vw, 5.5rem); }
  .trust-bar-inner { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .about-values-grid { grid-template-columns: repeat(2,1fr); }
  .city-services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --pad: 20px; }
  .nav-links    { display: none; }
  .header-phone { display: none; }
  .hamburger    { display: flex; }
  .mobile-header-controls { display: flex; }
  .footer-social { display: none; }
  .hero-inner   { text-align: center; padding: 48px var(--pad) 44px; }
  .hero-content { align-items: center; max-width: 100%; margin: 0 auto; }
  .hero-sub     { max-width: 100%; }
  .hero-btns    { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-h1      { font-size: clamp(3.2rem, 12vw, 4.8rem); }
  .service-grid { grid-template-columns: 1fr; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .svc-detail-cols { grid-template-columns: 1fr; gap: 30px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .logo { height: 115px !important; }
  .nav-wrap { height: 132px; }
  .mobile-nav { top: 132px; }
  .hero-h1 { font-size: clamp(2.8rem, 13vw, 3.8rem); }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .city-services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* SMS CONSENT */
.sms-consent {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer;
}
.sms-consent input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--orange);
  cursor: pointer;
}
.sms-consent span {
  color: rgba(255,255,255,.42); font-size: .72rem;
  line-height: 1.6;
}
