/* ══════════════════════════════════════════════════
   FEMA Pro Services LLC — Homepage Styles (index.html)
   ══════════════════════════════════════════════════ */

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--blue);
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1003;
  flex-wrap: wrap;
  height: 38px;
}
.top-bar a { color: #fff; transition: opacity .2s; }
.top-bar a:hover { opacity: .75; }
.top-bar .sep { opacity: .4; }

/* ─── NAVIGATION ─── */
#navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1001;
  padding: 18px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .35s, padding .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s, background-color 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}
#navbar.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 50px;
  border-color: var(--border-color);
  box-shadow: 0 2px 24px var(--shadow-color);
}
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-center {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-center a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  padding-bottom: 4px;
  transition: color .25s;
}
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue-vivid);
  transition: width .3s;
}
.nav-center a:hover { color: var(--nav-hover); }
.nav-center a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--mob-nav-bg);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 4px;
  color: var(--off-white);
  transition: color .25s;
}
.mobile-nav a:hover { color: var(--blue-vivid); }
.mobile-nav .lang-toggle { margin-top: 10px; }
.mob-logo { height: 64px; margin-bottom: 16px; }
 
/* ─── COOKIE BANNER ─── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--cookie-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .45s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-text { font-size: 12px; color: var(--cement); line-height: 1.7; max-width: 640px; }
.cookie-text a { color: var(--blue-vivid); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept {
  background: var(--blue); color: #fff;
  border: none; border-radius: 4px;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background .25s;
}
.cookie-accept:hover { background: var(--blue-mid); }
.cookie-decline {
  background: transparent; color: var(--cement);
  border: 1px solid var(--border-color); border-radius: 4px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: color .25s, border-color .25s;
}
.cookie-decline:hover { color: var(--white); border-color: var(--white); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  padding: 16px 42px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s;
}
.btn-primary:hover::after { left: 100%; }
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(10,61,143,.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--btn-outline-color);
  padding: 16px 42px;
  border: 1px solid var(--btn-outline-border);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .3s, color .3s, transform .3s;
}
.btn-outline:hover {
  border-color: var(--blue-vivid);
  color: var(--blue-vivid);
  transform: translateY(-3px);
}

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hero-bg-1) 0%, var(--hero-bg-2) 50%, var(--hero-bg-3) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(10,61,143,.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(41,121,255,.12) 0%, transparent 55%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,61,143,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,61,143,.09) 1px, transparent 1px);
  background-size: 65px 65px;
}
.hero-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 170px 60px 80px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,61,143,.18);
  border: 1px solid rgba(41,121,255,.3);
  border-radius: 50px;
  padding: 8px 22px;
  margin-bottom: 32px;
  animation: fadeDown .8s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--blue-vivid);
  border-radius: 50%;
  animation: blink 2s infinite;
}
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-vivid);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8vw, 120px);
  line-height: .88;
  letter-spacing: 6px;
  margin-bottom: 22px;
  animation: fadeUp .8s .15s ease both;
}
.hero-title .accent { color: var(--blue-vivid); }
.hero-sub {
  font-size: clamp(11px, 1.5vw, 14px);
  color: var(--cement);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 46px;
  animation: fadeUp .8s .3s ease both;
}
.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: var(--cement);
  font-size: 18px;
  animation: bounce 2.2s infinite;
  z-index: 2;
}
.hero-right { display: flex; flex-direction: column; gap: 14px; }
.hero-v-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(10,61,143,.45);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(41,121,255,.08);
}
.hero-v-main { aspect-ratio: 16/10; }
.hero-v-sub  { aspect-ratio: 16/7; }
.hero-v-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.hero-v-card:hover img { transform: scale(1.04); }
.hero-v-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-v-overlay i { color: var(--blue-vivid); font-size: 13px; }
.hero-v-ph {
  width: 100%; height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, #131620, #0F1828);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px;
}
.hero-v-ph i { font-size: 36px; color: rgba(10,61,143,.35); }
.hero-v-ph p { font-size: 10px; letter-spacing: 2px; color: #3a3a3a; text-align: center; line-height: 1.7; text-transform: uppercase; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--graphite);
  border-top: 1px solid rgba(10,61,143,.3);
  border-bottom: 1px solid rgba(10,61,143,.3);
  padding: 32px 40px;
}
.stats-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--blue-vivid);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cement);
  margin-top: 6px;
}

/* ─── SHARED SECTION STYLES ─── */
.sec { padding: 110px 40px; }
.inner { max-width: 1180px; margin: 0 auto; }
.sec-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-vivid);
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 78px);
  letter-spacing: 3px;
  line-height: .95;
  margin-bottom: 18px;
}
.bar {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-vivid));
  margin-bottom: 36px;
}
.sec-sub {
  color: var(--cement);
  font-size: 14px;
  line-height: 1.85;
  max-width: 600px;
}

/* ─── SERVICES ─── */
#services { background: var(--graphite); }
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.srv-card {
  background: var(--black);
  padding: 52px 42px;
  position: relative;
  overflow: hidden;
  transition: background .35s, transform .35s;
}
.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-vivid));
  transition: width .4s;
}
.srv-card:hover { background: var(--card-hover-bg); transform: translateY(-6px); }
.srv-card:hover::after { width: 100%; }
.srv-ghost {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(10,61,143,.1);
  position: absolute;
  top: 18px; right: 28px;
  letter-spacing: 2px;
  line-height: 1;
  pointer-events: none;
}
.srv-icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: rgba(10,61,143,.12);
  border: 1px solid rgba(10,61,143,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background .3s, border-color .3s;
}
.srv-card:hover .srv-icon {
  background: rgba(10,61,143,.28);
  border-color: var(--blue-vivid);
}
.srv-icon i { color: var(--blue-vivid); font-size: 22px; }
.srv-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.srv-desc { color: var(--cement); font-size: 13px; line-height: 1.85; }

/* ─── BRAND SHOWCASE ─── */
#brand { background: var(--black); padding: 90px 40px; }
.brand-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: 60px;
}
.brand-cell {
  overflow: hidden;
  position: relative;
  background: var(--graphite);
}
.brand-cell.tall { grid-row: span 2; }
.brand-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.brand-cell:hover img { transform: scale(1.04); }
.brand-placeholder {
  width: 100%; height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
}
.brand-placeholder i { font-size: 44px; color: rgba(10,61,143,.28); }
.brand-placeholder p {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.7;
}

/* ─── GALLERY / BEFORE-AFTER ─── */
#gallery { background: var(--black); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.ba-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--graphite);
}
.ba-inner { width: 100%; height: 100%; display: flex; }
.ba-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ba-before { background: linear-gradient(135deg, #252525, #181818); border-right: 2px solid var(--blue-vivid); }
.ba-after  { background: linear-gradient(135deg, #091628, #0A3D8F); }
.ba-tag {
  position: absolute;
  top: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}
.ba-before .ba-tag { left: 12px; background: rgba(0,0,0,.55); color: var(--cement); }
.ba-after  .ba-tag { right: 12px; background: rgba(10,61,143,.65); color: #fff; }
.ba-icon { font-size: 42px; color: rgba(255,255,255,.08); }
.ba-after .ba-icon { color: rgba(255,255,255,.18); }
.ba-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
}
.gallery-note {
  margin-top: 40px;
  padding: 28px 34px;
  border: 1px dashed rgba(10,61,143,.3);
  border-radius: 4px;
  background: rgba(10,61,143,.03);
  text-align: center;
}
.gallery-note p { color: var(--cement); font-size: 13px; letter-spacing: 1px; line-height: 1.7; }

/* ─── WHY CHOOSE US ─── */
#why { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-top: 64px;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 28px;
  background: var(--graphite);
  border-left: 3px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: border-color .3s, background .3s;
}
.why-item:hover { border-left-color: var(--blue-vivid); background: var(--why-hover-bg); }
.why-ico {
  width: 46px; height: 46px;
  min-width: 46px;
  background: rgba(10,61,143,.18);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-ico i { color: var(--blue-vivid); font-size: 18px; }
.why-txt h4 { font-size: 14px; font-weight: 800; margin-bottom: 7px; letter-spacing: .5px; }
.why-txt p  { color: var(--cement); font-size: 13px; line-height: 1.8; }
.why-visual { position: relative; }
.why-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--graphite);
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--blue);
  padding: 26px 32px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.why-badge .bnum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
}
.why-badge .blbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ─── REVIEWS ─── */
#reviews { background: var(--graphite); }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.rev-card {
  background: var(--black);
  padding: 38px;
  border-radius: 4px;
  border-top: 3px solid transparent;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.rev-card:hover { border-top-color: var(--blue-vivid); transform: translateY(-6px); }
.rev-card::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  color: rgba(10,61,143,.08);
  position: absolute;
  top: -18px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
.rev-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.rev-stars i { color: #FFD700; font-size: 13px; }
.rev-text {
  color: var(--cement);
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 26px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.rev-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}
.rev-name { font-size: 14px; font-weight: 800; }
.rev-service { font-size: 11px; color: var(--cement); letter-spacing: 1px; margin-top: 3px; }

/* ─── ESTIMATE / CONTACT ─── */
#estimate { background: var(--black); }
.est-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.contacts { display: flex; flex-direction: column; gap: 26px; }
.c-card {
  background: var(--graphite);
  padding: 30px 32px;
  border-radius: 4px;
  border-left: 3px solid var(--blue);
  transition: border-color .3s, background .3s;
}
.c-card:hover { border-left-color: var(--blue-vivid); background: var(--why-hover-bg); }
.c-role {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-vivid);
  margin-bottom: 8px;
}
.c-name { font-size: 17px; font-weight: 800; margin-bottom: 16px; }
.c-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cement);
  font-size: 13px;
  margin-bottom: 9px;
  transition: color .25s;
}
.c-link:hover { color: #fff; }
.c-link i { color: var(--blue-vivid); width: 18px; flex-shrink: 0; }
.c-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  background: rgba(10,61,143,.14);
  border: 1px solid rgba(10,61,143,.3);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue-vivid);
}
.hours-text {
  color: var(--cement);
  font-size: 13px;
  line-height: 2;
}

/* ─── FORM ─── */
.form-wrap {
  background: var(--graphite);
  padding: 52px;
  border-radius: 4px;
}
.form-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.f-group { margin-bottom: 20px; }
.f-group label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cement);
  margin-bottom: 9px;
}
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color .25s, background-color 0.3s ease, color 0.3s ease;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-color: var(--blue-vivid); }
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--muted); }
.f-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath fill='%238B8F94' d='M5.5 7L0 0h11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.f-group select option { background: var(--input-bg); }
.f-group textarea { min-height: 115px; resize: vertical; }
.file-drop {
  border: 2px dashed var(--border-color);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  background: var(--input-bg);
  position: relative;
  transition: border-color .3s, background .3s;
}
.file-drop:hover { border-color: var(--blue-vivid); background: rgba(10,61,143,.04); }
.file-drop input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
}
.file-drop i { font-size: 32px; color: var(--blue-vivid); display: block; margin-bottom: 10px; }
.file-drop p { color: var(--cement); font-size: 12px; letter-spacing: 1px; line-height: 1.6; }
.file-drop span { color: var(--blue-vivid); font-weight: 700; }
.btn-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  transition: background .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transition: left .5s;
}
.btn-submit:hover::after { left: 100%; }
.btn-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10,61,143,.45);
}
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.success-box {
  display: none;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--blue-vivid);
  border-radius: 4px;
  background: rgba(10,61,143,.08);
  text-align: center;
  color: var(--blue-vivid);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.7;
}
.success-box i { font-size: 28px; display: block; margin-bottom: 10px; }

/* ─── FOOTER ─── */
footer {
  background: var(--footer-bg);
  padding: 70px 40px 30px;
  border-top: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.footer-in { max-width: 1180px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 70px;
  margin-bottom: 55px;
}
.footer-logo img { height: 62px; margin-bottom: 20px; }
.footer-desc { color: var(--cement); font-size: 13px; line-height: 1.85; max-width: 320px; }
.footer-col h5 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-vivid);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: var(--cement); font-size: 13px; letter-spacing: .5px; transition: color .25s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { color: var(--muted); font-size: 11px; letter-spacing: 1px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cement);
  font-size: 15px;
  transition: border-color .25s, color .25s, transform .25s, background-color 0.3s ease;
}
.socials a:hover { border-color: var(--blue-vivid); color: var(--blue-vivid); transform: translateY(-3px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-wrap { grid-template-columns: 1fr; padding: 150px 40px 70px; text-align: center; }
  .hero-right { display: none; }
  .hero-badge { justify-content: center; }
  .hero-cta { justify-content: center; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .est-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 50px; }
  .brand-mosaic { grid-template-columns: 1fr 1fr; }
  .brand-cell.tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .top-bar { height: 32px; padding: 0 16px; font-size: 10px; gap: 4px; }
  #navbar { top: 32px; padding: 12px 20px; }
  #navbar.scrolled { padding: 10px 20px; }
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .hero-wrap { padding: 126px 20px 60px; }
  .sec { padding: 80px 20px; }
  .srv-grid { grid-template-columns: 1fr; gap: 2px; }
  .ba-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 30px 20px; }
  .f-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { gap: 32px; }
  .brand-mosaic { grid-template-columns: 1fr; }
  .cookie-bar { padding: 18px 20px; }
}
