/* =========================================================
   Luck's Cleaning Services — Stylesheet
   ========================================================= */

:root {
  --navy: #0a2540;
  --navy-light: #123a63;
  --navy-lighter: #1a4d80;
  /* "blue" vars now carry the brand's dusty-rose pink accent (from the logo) */
  --blue: #b8757b;
  --blue-dark: #96565c;
  --pink-soft: #d9a3a7;
  --sky: #f8ecec;
  --white: #ffffff;
  --offwhite: #f6f8fa;
  --ink: #16232f;
  --gray: #5b6b7a;
  --gray-light: #8fa0af;
  --border: #e3e9ee;
  --gold: #e8b94a;
  --success: #1e9b6e;
  --error: #d64545;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--gray); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--sky);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow svg { width: 14px; height: 14px; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 155, 215, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(30,155,215,.42); }
.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(10,37,64,.07);
  transition: padding .3s ease, box-shadow .3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-solid {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(10,37,64,.14);
}

.logo { display: inline-flex; align-items: center; }
.logo img { height: 52px; width: auto; display: block; }

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: var(--gray);
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--navy); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.header-right { display: flex; align-items: center; gap: 22px; }
.header-tel { color: var(--navy); font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 8px; }
.header-tel svg { width: 16px; height: 16px; color: var(--blue); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--offwhite);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--navy); }

@media (max-width: 920px) {
  .header-tel span.tel-text { display: none; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.3);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 26px; }
  .main-nav a { font-size: 18px; }
  .nav-toggle { display: inline-flex; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(6,17,29,.55);
    opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 900;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero video, .hero .hero-fallback-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,24,41,.55) 0%, rgba(8,24,41,.35) 30%, rgba(8,24,41,.55) 65%, rgba(6,18,32,.92) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 200px 0 64px;
  color: #fff;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  max-width: 820px;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-content .lead {
  color: rgba(255,255,255,.88);
  font-size: 19px;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.trust-bar {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.trust-bar svg { width: 26px; height: 26px; color: var(--blue); flex-shrink: 0; }
@media (max-width: 860px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .hero-content { padding-top: 150px; }
}

/* ---------- Inner page hero (small) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 170px 0 90px;
  overflow: hidden;
  color: #fff;
}
.page-hero::after {
  content: '';
  position: absolute; right: -10%; top: -30%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(30,155,215,.25) 0%, rgba(30,155,215,0) 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .crumb {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero .crumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 50px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 17px; max-width: 620px; margin-bottom: 0; }

/* ---------- Intro / About strip ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; }
.stat-card {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
}
.stat-card .num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--blue); }
.stat-card .lab { font-size: 12.5px; color: rgba(255,255,255,.75); font-weight: 600; }
@media (max-width: 560px) {
  .stat-card { left: 12px; bottom: -20px; padding: 14px 18px; }
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
}
.check-list svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

/* ---------- Services cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; z-index: -2; }
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0) 30%, rgba(6,18,32,.92) 100%);
  z-index: -1;
}
.service-card:hover img { transform: scale(1.06); }
.service-card .sc-body { padding: 34px; color: #fff; }
.service-card .sc-num {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.service-card h3 { color: #fff; font-size: 26px; margin-bottom: 10px; }
.service-card p { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.service-card .sc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--white); font-size: 14.5px; }
.service-card .sc-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card:hover .sc-link svg { transform: translateX(4px); }

/* simple service icon cards (used on services.html feature list) */
.mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mini-grid { grid-template-columns: 1fr; } }
.mini-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mini-card .ic {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.mini-card .ic svg { width: 26px; height: 26px; color: var(--blue); }
.mini-card h4 { font-size: 17px; margin-bottom: 8px; }
.mini-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-grid a { position: relative; overflow: hidden; border-radius: var(--radius-sm); display: block; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0) 55%, rgba(6,18,32,.55) 100%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid .zoom-ic {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.7); transition: all .25s ease;
}
.gallery-grid a:hover .zoom-ic { opacity: 1; transform: scale(1); }
.gallery-grid .zoom-ic svg { width: 16px; height: 16px; color: var(--navy); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-grid .wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .wide, .gallery-grid .tall { grid-column: span 1; grid-row: span 1; }
}

/* Uniform square tiles, no tall/wide spans — every cell the same size */
.gallery-grid-square { grid-auto-rows: unset; }
.gallery-grid-square a { aspect-ratio: 1 / 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,14,24,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
  padding: 40px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(900px, 90vw); max-height: 85vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .lb-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox .lb-close svg { width: 20px; height: 20px; color: #fff; }
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox .lb-nav svg { width: 20px; height: 20px; color: #fff; }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }

/* ---------- Why choose us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  text-align: left;
}
.feature .ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature .ic svg { width: 28px; height: 28px; color: var(--blue-dark); }
.feature h3 { font-size: 18.5px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; margin-bottom: 0; }

.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy p { color: rgba(255,255,255,.75); }
.section-navy .feature .ic { background: rgba(255,255,255,.08); }

.section-offwhite { background: var(--offwhite); }

/* ---------- Before & After grid ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ba-card .ba-photo { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--sky); }
.ba-card .ba-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-card .ba-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,37,64,.85); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
}
.ba-card.ba-placeholder .ba-photo { display: flex; align-items: center; justify-content: center; }
.ba-card.ba-placeholder .ba-photo svg { width: 40px; height: 40px; color: var(--blue); }
.ba-card .ba-body { padding: 20px 22px 24px; }
.ba-card h4 { font-size: 17px; margin-bottom: 8px; }
.ba-card p { font-size: 14px; margin-bottom: 12px; }
.ba-card .ba-link { display: inline-flex; gap: 6px; align-items: center; font-weight: 700; font-size: 13.5px; color: var(--navy); }
.ba-card .ba-link svg { width: 15px; height: 15px; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card .photo { aspect-ratio: 4/5; overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card .info { padding: 24px 26px 28px; }
.team-card .role {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-dark); background: var(--sky);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 10px;
}
.team-card h3 { margin-bottom: 8px; font-size: 22px; }

/* ---------- Testimonial / value banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; left: -8%; bottom: -40%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(30,155,215,.3) 0%, rgba(30,155,215,0) 70%);
}
.cta-banner .container-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.82); margin-bottom: 30px; }
.cta-banner .hero-cta { justify-content: center; margin-bottom: 0; }
@media (max-width: 700px) { .cta-banner { padding: 44px 26px; } }

/* ---------- Footer ---------- */
.site-footer { background: #071a2c; color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .footer-logo {
  display: inline-flex;
  background: var(--offwhite);
  padding: 12px 20px;
  border-radius: 12px;
}
.site-footer .footer-logo img { height: 42px; }
.site-footer p { color: rgba(255,255,255,.6); font-size: 14.5px; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: 14.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--blue); }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14.5px; color: rgba(255,255,255,.75); }
.footer-col .contact-line svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0 30px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
@media (max-width: 560px) { .form-card { padding: 28px 22px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 13.5px; color: var(--navy); margin-bottom: 8px; }
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fcfdfe;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30,155,215,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .err-msg { color: var(--error); font-size: 12.5px; margin-top: 6px; display: none; font-weight: 600; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.field.has-error .err-msg { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.form-status {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 22px;
}
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.form-status.status-success { display: flex; background: #e9f9f2; color: #147a51; }
.form-status.status-error { display: flex; background: #fdeceb; color: #b23a2f; }

.contact-info-list { margin-top: 28px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.contact-info-item:first-child { border-top: none; padding-top: 0; }
.contact-info-item .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sky); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .ic svg { width: 21px; height: 21px; color: var(--blue-dark); }
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14.5px; margin-bottom: 0; }
.contact-info-item a:hover { color: var(--blue-dark); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.faq-q svg { width: 20px; height: 20px; color: var(--blue); transition: transform .25s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: 20px; margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .08s; }
.reveal-2 { transition-delay: .16s; }
.reveal-3 { transition-delay: .24s; }
.reveal-4 { transition-delay: .32s; }

/* ---------- Misc ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.badge-row span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--offwhite); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 700; color: var(--navy);
}
.badge-row svg { width: 15px; height: 15px; color: var(--blue); }

/* ---------- Social row ---------- */
.social-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px; margin-top: 28px;
}
.social-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  min-width: 200px;
}
.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-card .social-ic {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-card .social-ic svg { width: 24px; height: 24px; }
.social-card .social-label { display: flex; flex-direction: column; }
.social-card .social-platform { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); font-size: 15px; }
.social-card .social-sub { font-size: 12.5px; color: var(--gray); }

.video-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-panel video { width: 100%; display: block; }

.back-to-top {
  position: fixed; right: 26px; bottom: 26px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .25s ease;
  z-index: 500;
  cursor: pointer;
  border: none;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
