/* ============================================================
   OMAR'S TOWINGS — Shared Stylesheet
   Colors: Red #D32F2F | Charcoal #1A1A1A | White #FFFFFF
   Fonts: Oswald (headlines) + Barlow (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2A2A2A;
  --gray-light: #F5F5F5;
  --gray-mid: #E0E0E0;
  --white: #FFFFFF;
  --text-body: #333333;
  --max-w: 1200px;
}

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

/* ─── TOP BAR ─── */
.topbar {
  background: var(--red);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.topbar-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.topbar-actions { display: flex; gap: 10px; align-items: center; }
.btn-topbar {
  padding: 7px 18px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-call { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-call:hover { background: transparent; color: var(--white); }
.btn-text { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-text:hover { border-color: var(--white); }

/* ─── MAIN NAV ─── */
.nav {
  background: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-mid);
  position: sticky;
  top: 46px;
  z-index: 999;
}
.nav-logo { display: flex; align-items: center; padding: 6px 0; }
.nav-logo img { height: 80px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

/* ─── DROPDOWNS ─── */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown:hover > a { color: var(--red); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-light);
  white-space: nowrap;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
  background: var(--gray-light);
  color: var(--red);
  padding-left: 26px;
}

/* Cities dropdown — 2 columns */
.dropdown-menu.dropdown-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 360px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
}
.nav-dropdown:hover .dropdown-menu.dropdown-cities {
  transform: translateX(-50%) translateY(0);
}
.btn-estimate {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-estimate:hover { background: var(--red-dark); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 40px;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile a {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
}
.nav-mobile.open { display: flex; }

/* ─── SECTION UTILITIES ─── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 50px;
  line-height: 1.0;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--charcoal);
  padding: 80px 80px 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--red); }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--red);
  padding: 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-strip-text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cta-strip-text span { font-weight: 400; font-size: 15px; display: block; font-family: 'Barlow', sans-serif; color: rgba(255,255,255,0.75); text-transform: none; letter-spacing: 0; margin-top: 2px; }
.btn-white {
  background: var(--white);
  color: var(--red);
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.btn-white:hover { background: var(--charcoal); color: var(--white); }

/* ─── FLOATING CTA BOX (service pages) ─── */
.cta-box {
  background: var(--charcoal);
  padding: 36px 32px;
  position: sticky;
  top: 120px;
}
.cta-box-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-box-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}
.cta-box-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.cta-box-btn-primary { background: var(--red); color: var(--white); }
.cta-box-btn-primary:hover { background: var(--red-dark); }
.cta-box-btn-outline { border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.cta-box-btn-outline:hover { border-color: var(--white); color: var(--white); }
.cta-box-note { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 14px; line-height: 1.5; }

/* ─── SERVICE LAYOUT ─── */
.service-layout {
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.service-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 36px;
}
.service-body h2:first-child { margin-top: 0; }
.service-body p { font-size: 16px; line-height: 1.7; color: #444; margin-bottom: 18px; }
.service-body ul { padding-left: 20px; margin-bottom: 18px; }
.service-body ul li { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 6px; }

/* ─── STEPS ─── */
.steps {
  background: var(--gray-light);
  padding: 70px 80px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.step {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--red);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.step-body { font-size: 14px; color: #666; line-height: 1.6; }

/* ─── RELATED CITIES (on service pages) ─── */
.related-cities {
  padding: 70px 80px;
  background: var(--white);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 36px;
}
.city-pill {
  background: var(--gray-light);
  padding: 14px 16px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
}
.city-pill:hover { background: var(--red); color: var(--white); border-bottom-color: var(--red-dark); }

/* ─── CITY PAGE SPECIFIC ─── */
.city-services {
  background: var(--gray-light);
  padding: 70px 80px;
}
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.city-service-tile {
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}
.city-service-tile:hover { border-top-color: var(--red); }
.city-service-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.city-service-desc { font-size: 14px; color: #666; line-height: 1.55; }

/* ─── ABOUT PAGE ─── */
.about-story {
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text p { font-size: 16px; line-height: 1.75; color: #444; margin-bottom: 20px; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.about-photos img { width: 100%; height: 220px; object-fit: cover; }
.about-photos img:first-child { grid-column: span 2; height: 260px; }
.stats-bar {
  background: var(--red);
  padding: 50px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item { text-align: center; padding: 0 20px; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ─── CONTACT PAGE ─── */
.contact-layout {
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: start;
}
.contact-form label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--red-dark); }
.contact-info-box {
  background: var(--charcoal);
  padding: 44px 40px;
}
.contact-info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
  width: 38px;
  height: 38px;
  background: rgba(211,47,47,0.15);
  border: 1px solid rgba(211,47,47,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}
.contact-info-value a { color: var(--red); }

/* ─── HOMEPAGE HERO ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,10,10,0.82) 0%, rgba(20,10,10,0.55) 55%, rgba(20,10,10,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 720px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--red); color: var(--white);
  padding: 16px 34px;
  font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 3px;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-hero-outline {
  background: transparent; color: var(--white);
  padding: 16px 34px;
  font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.55); border-radius: 3px;
  transition: border-color 0.2s, transform 0.15s; display: inline-block;
}
.btn-hero-outline:hover { border-color: var(--white); transform: translateY(-1px); }
.hero-trust {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,5,5,0.75); backdrop-filter: blur(8px);
  padding: 18px 80px; display: flex; gap: 50px; align-items: center;
  z-index: 2; border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 36px; height: 36px; border: 1.5px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 15px; flex-shrink: 0;
}
.trust-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; }
.trust-text span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ─── HOMEPAGE SECTIONS ─── */
.services-section { padding: 90px 80px; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-tile {
  background: var(--gray-light); padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s; cursor: pointer;
}
.service-tile:hover { border-top-color: var(--red); background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.service-number { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; color: var(--red); margin-bottom: 14px; opacity: 0.7; }
.service-name { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; line-height: 1.1; }
.service-desc { font-size: 14px; color: #666; line-height: 1.55; margin-bottom: 18px; }
.service-link { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-tile:hover .service-link { gap: 10px; }

.why { background: var(--charcoal); padding: 90px 80px; }
.why .section-label { color: rgba(211,47,47,0.9); }
.why .section-label::before { background: var(--red); }
.why .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
.why-item { background: var(--charcoal-mid); padding: 44px 36px; transition: background 0.2s; }
.why-item:hover { background: #2f2f2f; }
.why-num { font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 14px; opacity: 0.2; }
.why-heading { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; line-height: 1.15; }
.why-body { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); height: 320px; overflow: hidden; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.85); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 24px 16px 14px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.area { padding: 90px 80px; background: var(--white); }
.area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.area-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.city-link {
  padding: 13px 0; font-size: 14px; font-weight: 500; color: var(--charcoal);
  border-bottom: 1px solid var(--gray-mid); display: flex; align-items: center;
  gap: 8px; transition: color 0.2s, padding-left 0.2s;
}
.city-link::before { content: '→'; color: var(--red); font-size: 11px; opacity: 0; transition: opacity 0.2s; }
.city-link:hover { color: var(--red); padding-left: 4px; }
.city-link:hover::before { opacity: 1; }
.area-cta-box { background: var(--charcoal); padding: 50px 44px; }
.area-cta-box .section-label { color: rgba(211,47,47,0.9); }
.area-cta-box .section-label::before { background: var(--red); }
.area-cta-title { font-family: 'Oswald', sans-serif; font-size: 34px; font-weight: 700; color: var(--white); text-transform: uppercase; line-height: 1.05; margin-bottom: 18px; }
.area-cta-body { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 30px; }

.reviews-section { background: var(--gray-light); padding: 90px 80px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.review-card { background: var(--white); padding: 36px 32px; border-top: 3px solid var(--red); }
.review-stars { color: var(--red); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: #444; line-height: 1.65; margin-bottom: 22px; font-style: italic; }
.review-author { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); }
.review-source { font-size: 11px; color: #999; margin-top: 2px; }

.final-cta {
  background: var(--red); padding: 90px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.final-cta h2 { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--white); text-transform: uppercase; line-height: 1.0; letter-spacing: -0.01em; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.75); margin-top: 10px; }

/* ─── FOOTER ─── */
footer { background: var(--charcoal); padding: 70px 80px 36px; border-top: 3px solid var(--red); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 22px; }
.footer-phone { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; color: var(--red); letter-spacing: 0.02em; }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-certs { display: flex; gap: 16px; }
.cert-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 2px; }

/* ============================================================
   RESPONSIVE — Mobile & Tablet
   ============================================================ */

/* ─── TABLET (≤1024px) ─── */
@media (max-width: 1024px) {
  .topbar { padding: 10px 24px; }
  .nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .hero-content { padding: 0 40px; }
  .hero-trust { padding: 16px 24px; gap: 28px; }
  .services-section, .why, .area, .reviews-section, .final-cta,
  .steps, .related-cities, .city-services, .about-story, .stats-bar,
  .contact-layout, .service-layout { padding-left: 40px; padding-right: 40px; }
  .page-hero { padding: 60px 40px 50px; }
  .cta-strip { padding: 20px 40px; }
  footer { padding: 50px 40px 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { height: 240px; }
}

/* ─── MOBILE (≤768px) ─── */
@media (max-width: 768px) {

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 20px; }
  .nav-logo img { height: 60px; }
  .topbar { padding: 10px 20px; }
  .topbar-phone { font-size: 16px; }

  /* Hero */
  .hero { min-height: 100svh; align-items: flex-end; padding-bottom: 120px; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero h1 { font-size: 48px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { text-align: center; padding: 14px 24px; font-size: 15px; }
  .hero-trust {
    position: relative;
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 16px;
    bottom: auto;
  }
  .trust-item { width: calc(50% - 8px); }

  /* Page hero */
  .page-hero { padding: 50px 20px 40px; }
  .page-hero h1 { font-size: 36px; }

  /* CTA strip */
  .cta-strip { flex-direction: column; text-align: center; padding: 24px 20px; gap: 16px; }

  /* Sections padding */
  .services-section, .why, .reviews-section, .final-cta,
  .steps, .related-cities, .city-services, .about-story,
  .contact-layout, .service-layout, .area { padding: 56px 20px; }
  .section-title { font-size: 30px; margin-bottom: 32px; }

  /* Services grid → 1 col */
  .services-grid { grid-template-columns: 1fr; }

  /* Why grid → 1 col */
  .why-grid { grid-template-columns: 1fr; }

  /* Gallery → 2 col, shorter */
  .gallery { grid-template-columns: repeat(2, 1fr); height: 280px; }

  /* Service area */
  .area-inner { grid-template-columns: 1fr; gap: 40px; }
  .area-cities { grid-template-columns: repeat(2, 1fr); }

  /* Reviews → 1 col */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Final CTA */
  .final-cta { flex-direction: column; text-align: center; padding: 56px 20px; }
  .final-cta h2 { font-size: 36px; }

  /* Footer */
  footer { padding: 44px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  /* Service layout → stack */
  .service-layout { grid-template-columns: 1fr; }
  .service-layout aside { order: -1; }
  .cta-box { position: static; }

  /* Steps → 1 col */
  .steps-grid { grid-template-columns: 1fr; }

  /* Cities grid → 3 col */
  .cities-grid { grid-template-columns: repeat(3, 1fr); }

  /* City services → 2 col */
  .city-services-grid { grid-template-columns: repeat(2, 1fr); }

  /* About story → stack */
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { display: none; } /* hide on mobile, story is enough */

  /* Stats bar → 2 col */
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; gap: 0; }
  .stat-item { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-num { font-size: 36px; }

  /* Contact → stack */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-row { grid-template-columns: 1fr; }

  /* Dropdown — disable on mobile (use mobile nav instead) */
  .dropdown-menu { display: none !important; }
}

/* ─── SMALL MOBILE (≤400px) ─── */
@media (max-width: 400px) {
  .hero h1 { font-size: 38px; }
  .trust-item { width: 100%; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-services-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; height: auto; }
  .gallery-item { height: 200px; }
}

/* ─── FOOTER LOGO TEXT ─── */
.footer-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-logo-text span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-top: 3px;
}
