/* ============================================================
   SKY CLEANING — style.css
   Estende Bootstrap 5. Palette navy / azzurro metallizzato.
   ============================================================ */

/* ---- Font locali (nessuna richiesta esterna) ---- */
@font-face { font-family: 'Barlow'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/barlow-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 500; font-style: normal; font-display: swap; src: url('../fonts/barlow-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/barlow-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/barlow-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 800; font-style: normal; font-display: swap; src: url('../fonts/barlow-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/barlow-condensed-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/barlow-condensed-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 800; font-style: normal; font-display: swap; src: url('../fonts/barlow-condensed-latin-800-normal.woff2') format('woff2'); }

:root {
  --sc-navy:  #0A1628;
  --sc-navy2: #06101F;
  --sc-navy3: #1a2942;
  --sc-blue:  #5AB8E8;
  --sc-blue-d:#3da0d4;
  --sc-gray:  #F4F6FA;
  --sc-text:  #4A5568;

  /* override variabili Bootstrap */
  --bs-body-font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  --bs-body-color: #0A1628;
  --bs-primary: #5AB8E8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--bs-body-font-family);
  color: var(--sc-navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.font-condensed { font-family: 'Barlow Condensed', sans-serif; }
.font-poppins { font-family: 'Poppins', sans-serif; }

/* ---- utility colori ---- */
.bg-navy   { background: var(--sc-navy)  !important; }
.bg-navy2  { background: var(--sc-navy2) !important; }
.bg-gray   { background: var(--sc-gray)  !important; }
.text-blue { color: var(--sc-blue) !important; }
.text-soft { color: #B8C5D6 !important; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.navbar.sc-header {
  background: var(--sc-navy);
  border-bottom: 1px solid var(--sc-navy3);
  padding: .9rem 0;
}
.sc-brand { display: flex; align-items: center; gap: 1.1rem; }
.sc-brand-logo {
  width: 84px; height: 84px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--sc-blue);
  box-shadow: 0 0 0 5px rgba(90,184,232,.15);
  transition: transform .3s ease;
}
.sc-brand-logo:hover { transform: scale(1.04); }
.sc-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 800; letter-spacing: 2px;
  color: #fff; line-height: 1;
}
.sc-brand-tag {
  font-family: 'Poppins', sans-serif;
  color: var(--sc-blue); font-size: .8rem;
  letter-spacing: .5px; font-weight: 400; margin-top: 3px;
}
.navbar.sc-header .nav-link {
  color: #fff; font-size: .9rem; font-weight: 500;
  padding: .4rem 0; position: relative;
}
.navbar.sc-header .nav-link::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--sc-blue);
  transition: width .25s ease;
}
.navbar.sc-header .nav-link:hover::after,
.navbar.sc-header .nav-link.active::after { width: 100%; }

.btn-sc {
  background: var(--sc-blue); color: var(--sc-navy);
  font-weight: 700; letter-spacing: .3px;
  border: none; border-radius: 4px; padding: .65rem 1.25rem;
  transition: background .2s ease, transform .2s ease;
}
.btn-sc:hover { background: var(--sc-blue-d); color: var(--sc-navy); transform: translateY(-1px); }

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO / SWIPER
   ============================================================ */
.hero-swiper { width: 100%; height: 640px; position: relative; }
.hero-swiper .swiper-slide {
  position: relative; overflow: hidden;
  background: var(--sc-navy);
}
.hero-slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(6,16,31,.86) 0%,
    rgba(10,22,40,.62) 40%,
    rgba(10,22,40,.55) 60%,
    rgba(6,16,31,.82) 100%);
}
.hero-slide-content {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem 1.5rem;
}
.hero-badge {
  display: inline-block; padding: .4rem 1rem;
  background: rgba(90,184,232,.14);
  border: 1px solid var(--sc-blue); border-radius: 3px;
  color: var(--sc-blue); font-size: .65rem;
  letter-spacing: 2.5px; font-weight: 700;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff; font-weight: 800; line-height: 1.0;
  letter-spacing: 1px; font-size: 3.6rem;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-sub {
  color: #E2EAF5; font-size: 1.1rem;
  margin-bottom: 2rem; max-width: 560px;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* drone fluttuante nello slide hero */
.hero-drone {
  position: absolute; left: 4%; top: 50%;
  transform: translateY(-50%);
  width: 30%; max-width: 420px; z-index: 2;
  filter: drop-shadow(0 12px 40px rgba(90,184,232,.35));
  animation: sc-float 4s ease-in-out infinite;
}
@keyframes sc-float {
  0%,100% { transform: translateY(-50%); }
  50%     { transform: translateY(calc(-50% - 14px)); }
}

/* logo che sbuca dall'angolo in basso a destra */
.hero-corner-logo {
  position: absolute; bottom: -180px; right: -180px;
  width: 420px; height: 420px; border-radius: 50%;
  object-fit: cover; z-index: 2;
  border: 3px solid rgba(90,184,232,.5);
  box-shadow: 0 0 0 8px rgba(90,184,232,.08), 0 0 0 16px rgba(90,184,232,.04);
  animation: sc-glow 3s ease-in-out infinite;
}
@keyframes sc-glow {
  0%,100% { box-shadow: 0 0 0 8px rgba(90,184,232,.08), 0 0 0 16px rgba(90,184,232,.04); }
  50%     { box-shadow: 0 0 0 12px rgba(90,184,232,.15), 0 0 0 24px rgba(90,184,232,.07); }
}

/* etichetta drone */
.hero-drone-label {
  position: absolute; bottom: 52px; left: 70px; z-index: 3;
  color: var(--sc-blue); font-size: .65rem;
  font-family: 'SF Mono', Consolas, monospace;
  letter-spacing: 2px; opacity: .8;
}

/* controlli swiper */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev { color: var(--sc-blue); }
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 1.8rem; }
.hero-swiper .swiper-pagination-bullet {
  background: #fff; opacity: .5; width: 10px; height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--sc-blue); opacity: 1; width: 28px; border-radius: 5px;
}

/* ============================================================
   SEZIONI GENERICHE
   ============================================================ */
.section { padding: 5.5rem 0; overflow: hidden; }
.overline {
  font-size: .7rem; color: var(--sc-blue);
  letter-spacing: 2.5px; font-weight: 700; margin-bottom: .75rem;
}
.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  letter-spacing: .5px; line-height: 1.1; margin-bottom: 1.1rem;
}
.sec-title.on-dark { color: #fff; }
.lead-text { font-size: 1rem; color: var(--sc-text); line-height: 1.65; }
.lead-text.on-dark { color: #B8C5D6; }

/* ============================================================
   CHI SIAMO
   ============================================================ */
.founders-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(10,22,40,.18);
}
.founders-wrap img { width: 100%; display: block; }
.founders-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.6rem 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10,22,40,.96) 100%);
}
.founders-name { color: #fff; font-size: 1.05rem; font-weight: 700; }
.founders-role { color: var(--sc-blue); font-size: .7rem; letter-spacing: 2px; font-weight: 600; margin-top: 5px; }

.cred-item {
  padding: .85rem 1.1rem; background: var(--sc-gray);
  border-left: 4px solid var(--sc-blue); border-radius: 0 6px 6px 0;
  margin-bottom: .75rem;
}
.cred-title { font-size: .82rem; font-weight: 700; color: var(--sc-navy); margin-bottom: 4px; }
.cred-sub   { font-size: .76rem; color: var(--sc-text); line-height: 1.5; margin: 0; }

.badge-enac {
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .85rem 1.25rem; background: var(--sc-navy);
  border-radius: 4px; border-left: 4px solid var(--sc-blue);
}
.badge-enac .ico { font-size: 1.4rem; color: var(--sc-blue); }
.badge-enac-title { color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; }
.badge-enac-sub   { color: var(--sc-blue); font-size: .62rem; letter-spacing: 1.5px; margin-top: 3px; }

/* ============================================================
   PAGE HEADER (sottopagine, es. chi-siamo.html)
   ============================================================ */
.page-header { position: relative; height: 360px; overflow: hidden; background: var(--sc-navy); }
.page-header img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,16,31,.92) 0%, rgba(10,22,40,.78) 50%, rgba(6,16,31,.9) 100%);
}
.page-header-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.breadcrumb-sc { font-size: .75rem; color: #B8C5D6; letter-spacing: .5px; margin-bottom: .9rem; }
.breadcrumb-sc a { color: var(--sc-blue); text-decoration: none; }
.breadcrumb-sc a:hover { text-decoration: underline; }
.page-title {
  font-family: 'Barlow Condensed', sans-serif; color: #fff; font-weight: 800;
  font-size: 3rem; letter-spacing: 1px; line-height: 1.05; margin-bottom: .75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.page-sub { color: #B8C5D6; font-size: 1rem; max-width: 600px; }

/* ============================================================
   CHI SIAMO — sottopagina: numeri, valori, processo
   ============================================================ */
.stat-box { text-align: center; padding: 1.5rem 1rem; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem;
  font-weight: 800; color: var(--sc-blue); line-height: 1;
}
.stat-lbl {
  font-size: .7rem; color: var(--sc-text); letter-spacing: 1.5px;
  font-weight: 600; margin-top: .5rem; text-transform: uppercase;
}
.stat-box.on-dark .stat-lbl { color: #B8C5D6; }

.process-step { text-align: center; padding: 1.25rem 1rem; height: 100%; }
.process-num {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: var(--sc-navy); border: 2px solid var(--sc-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem;
}
.process-title { font-size: .95rem; font-weight: 700; color: var(--sc-navy); margin-bottom: .45rem; }
.process-desc { font-size: .78rem; color: var(--sc-text); line-height: 1.6; margin: 0; }

/* ============================================================
   DOVE OPERIAMO — sottopagina: griglia zone coperte
   ============================================================ */
.zone-card {
  background: #fff; border-radius: 8px; height: 100%;
  padding: 1.25rem 1.4rem; border-left: 4px solid var(--sc-blue);
  box-shadow: 0 4px 14px rgba(10,22,40,.06);
}
.zone-card.is-base {
  border-left-color: var(--sc-blue-d);
  background: linear-gradient(135deg, rgba(90,184,232,.1), #fff);
}
.zone-name { font-size: .95rem; font-weight: 700; color: var(--sc-navy); margin-bottom: .35rem; }
.zone-tag {
  display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: 1.2px;
  color: var(--sc-blue-d); background: rgba(90,184,232,.12);
  padding: .15rem .5rem; border-radius: 3px; margin-bottom: .45rem;
}
.zone-desc { font-size: .78rem; color: var(--sc-text); line-height: 1.55; margin: 0; }

/* ============================================================
   DOVE OPERIAMO
   ============================================================ */
.mappa-img {
  width: 100%; max-width: 460px; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.where-item {
  padding: .85rem 1.1rem; background: #fff;
  border-left: 4px solid var(--sc-blue); border-radius: 0 6px 6px 0;
  margin-bottom: .65rem;
}
.where-name { font-size: .88rem; font-weight: 700; color: var(--sc-navy); }
.where-desc { font-size: .76rem; color: var(--sc-text); margin: 3px 0 0; }

/* ============================================================
   BANNER INTERVENTO
   ============================================================ */
.intervento-banner {
  position: relative; height: 480px; overflow: hidden;
  background: var(--sc-navy2);
}
.intervento-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
}
.intervento-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 2.75rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(6,16,31,.55) 40%, rgba(6,16,31,.92) 100%);
}
.intervento-tag {
  display: inline-block; padding: .3rem .75rem;
  background: var(--sc-blue); color: var(--sc-navy);
  font-size: .65rem; font-weight: 700; letter-spacing: 1.8px;
  border-radius: 3px; margin-bottom: .65rem;
}
.intervento-title {
  color: #fff; font-size: 1.75rem; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: .5px; margin-bottom: .5rem;
}
.intervento-desc { color: #B8C5D6; font-size: .9rem; max-width: 620px; line-height: 1.6; margin: 0; }

/* ============================================================
   COSA FACCIAMO — CARD
   ============================================================ */
.svc-card {
  background: #fff; border-radius: 10px; height: 100%;
  padding: 2.25rem 1.75rem; border: .5px solid #E2E8F0;
  border-top: 4px solid var(--sc-blue); text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(10,22,40,.12); }
.svc-icon {
  width: 68px; height: 68px; margin: 0 auto 1.25rem;
  background: var(--sc-gray); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 36px; height: 36px; stroke: var(--sc-blue); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svc-title { font-size: 1.2rem; font-weight: 700; color: var(--sc-navy); margin-bottom: .6rem; }
.svc-desc  { font-size: .82rem; color: var(--sc-text); line-height: 1.6; margin-bottom: 1rem; }
.svc-list  { list-style: none; text-align: left; padding: 0; margin: 0; }
.svc-list li { font-size: .76rem; color: var(--sc-text); padding: .2rem 0 .2rem 1.1rem; position: relative; }
.svc-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sc-blue); font-weight: 700; }

/* ============================================================
   TECNOLOGIA
   ============================================================ */
.tech-img-wrap {
  position: relative; background: var(--sc-navy2);
  border-radius: 14px; padding: 2.5rem; min-height: 420px;
  border: .5px solid var(--sc-navy3);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.tech-img-wrap::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(90,184,232,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(90,184,232,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.tech-img-wrap img { width: 100%; max-width: 400px; position: relative; z-index: 1; }
.tech-tag-tl {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: .3rem .75rem; background: rgba(90,184,232,.12);
  border: 1px solid var(--sc-blue); border-radius: 3px;
  color: var(--sc-blue); font-size: .6rem; letter-spacing: 2.5px; font-weight: 700;
}
.tech-tag-br {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  padding: .3rem .75rem; background: rgba(255,255,255,.05); border-radius: 3px;
  color: #6A7A92; font-size: .6rem; font-family: 'SF Mono', Consolas, monospace; letter-spacing: 1px;
}
.spec {
  background: rgba(255,255,255,.03); border-left: 3px solid var(--sc-blue);
  padding: .85rem 1rem; border-radius: 0 6px 6px 0; height: 100%;
}
.spec-val { font-size: 1.35rem; color: #fff; font-weight: 700; letter-spacing: -.3px; }
.spec-lbl { font-size: .6rem; color: #8A9AB8; letter-spacing: 1.5px; margin-top: 3px; font-weight: 500; }
.tech-note {
  padding: 1.1rem 1.25rem; background: rgba(90,184,232,.06);
  border: .5px solid rgba(90,184,232,.3); border-radius: 8px;
}
.tech-note-title { color: #fff; font-size: .82rem; font-weight: 700; margin-bottom: 6px; }
.tech-note-desc  { color: #B8C5D6; font-size: .76rem; line-height: 1.65; margin: 0; }

/* ============================================================
   CONTATTI / FORM
   ============================================================ */
.contact-form {
  background: #fff; border-radius: 12px; padding: 2.5rem;
  box-shadow: 0 18px 52px rgba(0,0,0,.22);
}
.contact-form .form-label {
  font-size: .68rem; color: var(--sc-text);
  letter-spacing: 1.5px; font-weight: 700; margin-bottom: .35rem;
}
.contact-form .form-control,
.contact-form .form-select {
  background: var(--sc-gray); border: .5px solid #E2E8F0;
  border-radius: 4px; font-size: .85rem; padding: .6rem .9rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--sc-blue); box-shadow: 0 0 0 .2rem rgba(90,184,232,.18);
}
.btn-submit {
  width: 100%; background: var(--sc-blue); color: var(--sc-navy);
  font-weight: 700; letter-spacing: .8px; border: none;
  border-radius: 4px; padding: .9rem;
  transition: background .2s ease;
}
.btn-submit:hover { background: var(--sc-blue-d); color: var(--sc-navy); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; }
.form-success {
  background: rgba(90,184,232,.15); border: 1px solid var(--sc-blue);
  color: var(--sc-navy); border-radius: 6px; padding: .75rem 1rem;
  font-size: .85rem; font-weight: 600;
}
.form-error {
  background: rgba(220,53,69,.1); border: 1px solid #dc3545;
  color: #dc3545; border-radius: 6px; padding: .75rem 1rem;
  font-size: .85rem;
}
.form-error a { color: inherit; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.sc-footer { background: var(--sc-navy2); border-top: 1px solid var(--sc-navy3); padding: 2rem 0; }
.footer-logo { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 1px solid var(--sc-navy3); }
.footer-name { color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: 1.5px; }
.footer-tagline { font-family: 'Poppins', sans-serif; color: var(--sc-blue); font-size: .72rem; font-weight: 400; margin-top: 2px; }
.footer-info { color: #6A7A92; font-size: .7rem; letter-spacing: .5px; margin-top: 6px; }
.footer-contact { color: #B8C5D6; font-size: .76rem; margin-top: 2px; }
.footer-contact a { color: #B8C5D6; text-decoration: none; }
.footer-contact a:hover { color: var(--sc-blue); }
.footer-links a { color: #B8C5D6; font-size: .72rem; text-decoration: none; margin-left: 1.25rem; }
.footer-links a:hover { color: var(--sc-blue); }
.social-btn {
  width: 32px; height: 32px; border: .5px solid var(--sc-navy3);
  border-radius: 5px; display: inline-flex; align-items: center; justify-content: center;
  color: #B8C5D6; font-size: .72rem; font-weight: 700; margin-left: .5rem; text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.social-btn:hover { border-color: var(--sc-blue); color: var(--sc-blue); }

/* ============================================================
   WHATSAPP FLOATING
   ============================================================ */
.wa-float {
  position: fixed; bottom: 48px; left: 48px; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; box-shadow: 0 6px 22px rgba(37,211,102,.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .sc-brand-logo { width: 64px; height: 64px; }
  .sc-brand-name { font-size: 1.5rem; }
  .sc-brand-tag  { font-size: .68rem; }
  .navbar.sc-header .nav-link { padding: .5rem 0; }
  .hero-drone, .hero-corner-logo, .hero-drone-label { display: none; }
}

@media (max-width: 767.98px) {
  .section { padding: 3.5rem 0; }
  .hero-swiper { height: 520px; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: .95rem; }
  .sec-title { font-size: 1.85rem; }
  .intervento-banner { height: 340px; }
  .intervento-title { font-size: 1.35rem; }
  .tech-img-wrap { min-height: 280px; padding: 1.5rem; }
  .contact-form { padding: 1.5rem; }
  .footer-links { margin-top: 1rem; }
  .footer-links a { margin: 0 .6rem; }
  .page-header { height: 280px; }
  .page-title { font-size: 2.1rem; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.7rem; }
  .hero-badge { font-size: .58rem; letter-spacing: 1.8px; }
  .sec-title { font-size: 1.6rem; }
  .page-title { font-size: 1.8rem; }
}
