/* ============================================
   ALPHAZ AGENCY — Your Alpha Move
   Premium dark teal theme · gold accents
   ============================================ */

:root {
  --bg:          #021B2B;   /* deep navy-teal page background */
  --bg-2:        #06263A;   /* raised sections */
  --bg-3:        #082E44;   /* cards */
  --bg-card:     rgba(255, 255, 255, 0.03);
  --teal-deep:   #021B2B;
  --teal:        #0B5B63;

  --gold:        #D8A24C;
  --gold-soft:   #E7C26A;
  --gold-line:   rgba(216, 162, 76, 0.45);

  --cream:       #F5F5F5;
  --cream-soft:  rgba(245, 245, 245, 0.75);
  --cream-mute:  #C8D0D8;
  --cream-faded: rgba(200, 208, 216, 0.55);

  --line:        rgba(216, 162, 76, 0.22);
  --line-soft:   rgba(245, 245, 245, 0.08);
  --shadow:      0 32px 70px -32px rgba(0,0,0,0.8);
  --shadow-sm:   0 16px 40px -20px rgba(0,0,0,0.65);
  --shadow-glow: 0 18px 50px -20px rgba(216, 162, 76, 0.32);
  --maxw:        1240px;
  --r:           18px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse at 75% -10%, rgba(11, 91, 99, 0.45), transparent 55%),
    radial-gradient(ellipse at 5% 110%, rgba(216, 162, 76, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.14; letter-spacing: -0.01em; color: var(--cream); }
p { font-family: 'Outfit', system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:lang(mn) { line-height: 1.65; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }

.eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before, .eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--teal-deep); box-shadow: 0 14px 32px -16px rgba(217,164,65,0.6); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(217,164,65,0.7); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--gold-line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ---------- Header (bright premium · white→silver→navy glassmorphism) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(245,247,251,0.82) 100%);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(11, 29, 51, 0.08);
  box-shadow: 0 4px 24px -12px rgba(11, 29, 51, 0.14);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(245,247,251,0.93) 100%);
  box-shadow: 0 6px 30px -14px rgba(11, 29, 51, 0.2);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 100px; gap: 24px; }
.brand { display: flex; align-items: center; padding: 4px 0; flex-shrink: 0; }
.brand img { height: 70px; width: auto; max-width: none; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Outfit', sans-serif; font-size: 0.93rem; font-weight: 500;
  color: #0b1d33; position: relative; padding: 6px 2px; white-space: nowrap;
  transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: #d4a64f; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #d4a64f, #e7c26a);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  font-family: 'Outfit', sans-serif; font-size: 0.84rem; font-weight: 600;
  display: flex;
  border: 1px solid rgba(11, 29, 51, 0.16);
  border-radius: 100px; overflow: hidden;
  background: rgba(255,255,255,0.7);
}
.lang-switch button {
  background: transparent; border: none; padding: 8px 14px; cursor: pointer;
  font: inherit; color: #102b46; transition: background .25s, color .25s;
}
.lang-switch button.on {
  background: linear-gradient(135deg, #d4a64f, #e7c26a);
  color: #0b1d33;
}
/* Header CTA button uses navy fill for premium contrast against the white header */
.site-header .nav-cta .btn-gold {
  background: linear-gradient(135deg, #0b1d33, #102b46);
  color: #f4efe4;
  box-shadow: 0 10px 28px -12px rgba(11, 29, 51, 0.5);
  border: 1px solid rgba(212, 166, 79, 0.4);
}
.site-header .nav-cta .btn-gold:hover {
  background: linear-gradient(135deg, #d4a64f, #e7c26a);
  color: #0b1d33;
  border-color: transparent;
}
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: #0b1d33; margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ---------- Hero (cinematic full-bleed) ---------- */
.hero {
  position: relative;
  min-height: 560px;
  padding: 60px 0 180px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(2,27,43,0.85) 0%, rgba(2,27,43,0.65) 40%, rgba(2,27,43,0.25) 70%, rgba(2,27,43,0.15) 100%),
    linear-gradient(180deg, rgba(2,27,43,0.25) 0%, transparent 30%, var(--bg) 100%);
}
/* Dotted Australia map + airplane path */
.hero-map {
  position: absolute;
  top: 80px;
  left: 60%;
  width: 280px;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 20px rgba(216,162,76,0.25));
}
.hero-map img { width: 100%; height: auto; display: block; }
/* Curved gold decorative line at bottom */
.hero-curve {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  pointer-events: none;
  z-index: 2;
}
.hero-curve svg { width: 100%; height: 100%; display: block; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 540px;
  padding-top: 50px;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-content h1 .accent { color: var(--gold); }
.hero-content p.lead {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  color: var(--cream-mute);
  margin-bottom: 36px;
  max-width: 470px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-actions .slogan {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-soft);
  letter-spacing: 0.01em;
}

/* ---------- Section ---------- */
.section { padding: 90px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 16px 0 12px; }
.section-head p { font-family: 'Outfit', sans-serif; font-size: 1.02rem; color: var(--cream-soft); }

/* panel wrapper like reference */
.panel {
  background: linear-gradient(180deg, rgba(8, 46, 68, 0.5), rgba(2, 27, 43, 0.6));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 50px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

/* Floating services panel — overlaps hero */
.services-floating {
  position: relative;
  margin-top: -90px;
  z-index: 5;
}

/* ---------- Services row ---------- */
.svc-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.svc-item {
  text-align: center;
  padding: 14px 24px;
  position: relative;
  transition: transform .35s var(--ease);
}
.svc-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%; bottom: 18%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.svc-item:hover { transform: translateY(-4px); }
.svc-item .ic {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  color: var(--gold);
}
.svc-item .ic svg { width: 38px; height: 38px; stroke-width: 1.4; }
.svc-item h3 {
  font-size: 1.02rem;
  margin-bottom: 12px;
  color: var(--cream);
  font-weight: 600;
}
.svc-item p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--cream-faded);
  line-height: 1.55;
}

/* ---------- About split ---------- */
.about-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-photos { position: relative; }
.about-photos .p1 { border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); }
.about-photos .p1 img { width: 100%; height: 100%; object-fit: cover; }
.about-photos .p2 {
  position: absolute; right: -18px; bottom: -28px; width: 56%; aspect-ratio: 4/3;
  border-radius: 18px; overflow: hidden; border: 3px solid var(--bg); box-shadow: var(--shadow);
}
.about-photos .p2 img { width: 100%; height: 100%; object-fit: cover; }
.about-split h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 14px 0 16px; }
.about-split .lead { font-family: 'Outfit', sans-serif; color: var(--cream-soft); font-size: 1rem; margin-bottom: 14px; }
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 38px; }
.feature-row .f { text-align: center; }
.feature-row .fi { width: 50px; height: 50px; margin: 0 auto 14px; display: grid; place-items: center; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 50%; }
.feature-row .fi svg { width: 22px; height: 22px; }
.feature-row h3 { font-size: 0.98rem; margin-bottom: 7px; }
.feature-row p { font-family: 'Outfit', sans-serif; font-size: 0.8rem; color: var(--cream-mute); line-height: 1.5; }

/* ---------- Facts ---------- */
.facts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.fact { background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px; padding: 30px 20px; text-align: center; }
.fact .fic { color: var(--gold); margin-bottom: 14px; display: flex; justify-content: center; }
.fact .fic svg { width: 30px; height: 30px; }
.fact .big { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--gold); margin-bottom: 6px; }
.fact p { font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--cream-soft); line-height: 1.5; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.step { text-align: center; position: relative; }
.step .ring {
  width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%;
  border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold);
  position: relative; background: var(--bg);
}
.step .ring svg { width: 30px; height: 30px; }
.step .n {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: var(--teal-deep);
  font-family: 'Fraunces', serif; font-size: 0.82rem; font-weight: 700;
  display: grid; place-items: center;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 38px; left: calc(50% + 50px);
  width: calc(100% - 76px); height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold-line) 0 6px, transparent 6px 12px);
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-family: 'Outfit', sans-serif; font-size: 0.8rem; color: var(--cream-mute); line-height: 1.5; }

/* ---------- CTA bar ---------- */
.cta-bar {
  background: linear-gradient(135deg, var(--bg-2), var(--teal-deep));
  border: 1px solid var(--line); border-radius: 100px; padding: 30px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-bar .ct { display: flex; align-items: center; gap: 20px; }
.cta-bar .ct .gi { color: var(--gold); }
.cta-bar .ct .gi svg { width: 38px; height: 38px; }
.cta-bar h2 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--cream); }
.cta-bar .actions { display: flex; align-items: center; gap: 26px; }
.cta-bar .phones { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--gold-soft); font-size: 1rem; }

/* ---------- Footer (bright luxurious · white→silver→soft navy with gold glow border) ---------- */
.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, #f5f7fb 0%, #e8edf4 35%, #c7d3e2 100%);
  padding: 72px 0 32px;
  color: #102b46;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 166, 79, 0.55) 30%, rgba(212, 166, 79, 0.95) 50%, rgba(212, 166, 79, 0.55) 70%, transparent 100%);
  box-shadow: 0 0 18px rgba(212, 166, 79, 0.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(11, 29, 51, 0.1);
}
.footer-brand img { height: 78px; width: auto; margin-bottom: 14px; display: block; }
.footer-brand .slogan {
  font-family: 'Fraunces', serif; font-style: italic;
  color: #d4a64f; font-size: 1.08rem; margin: 8px 0 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(11, 29, 51, 0.18);
  background: rgba(255,255,255,0.65);
  display: grid; place-items: center; color: #0b1d33;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.footer-social a:hover {
  background: linear-gradient(135deg, #d4a64f, #e7c26a);
  color: #0b1d33; border-color: transparent;
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: #0b1d33;
  font-family: 'Outfit', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a, .footer-col p {
  font-family: 'Outfit', sans-serif; font-size: 0.93rem;
  color: rgba(11, 29, 51, 0.78);
  transition: color .25s;
}
.footer-col a:hover { color: #d4a64f; }
.footer-contact .ci { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact .ci svg { width: 16px; height: 16px; color: #d4a64f; flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
  padding-top: 28px; text-align: center;
  font-family: 'Outfit', sans-serif; font-size: 0.84rem;
  color: rgba(11, 29, 51, 0.6);
}

/* ---------- Page hero ---------- */
.page-hero { padding: 70px 0 50px; text-align: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin: 14px 0 12px; }
.page-hero p { font-family: 'Outfit', sans-serif; font-size: 1.02rem; color: var(--cream-soft); max-width: 600px; margin: 0 auto; }

/* ---------- Service detail ---------- */
.svc-detail { display: grid; grid-template-columns: 260px 1fr; gap: 46px; padding: 42px 0; border-bottom: 1px solid var(--line-soft); }
.svc-detail:last-child { border-bottom: none; }
.sd-tag { font-family: 'Outfit', sans-serif; font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.svc-detail h3 { font-size: 1.5rem; margin-bottom: 12px; }
.svc-detail .sd-body p { font-family: 'Outfit', sans-serif; font-size: 0.98rem; color: var(--cream-soft); margin-bottom: 14px; }
.svc-detail ul { list-style: none; display: grid; gap: 10px; }
.svc-detail li { font-family: 'Outfit', sans-serif; font-size: 0.94rem; color: var(--cream-soft); padding-left: 24px; position: relative; }
.svc-detail li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.value-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; }
.value-card .vnum { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 9px; }
.value-card p { font-family: 'Outfit', sans-serif; font-size: 0.92rem; color: var(--cream-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 24px 0; font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--cream); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq-q .ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-line); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s, color .3s; font-size: 1.05rem; color: var(--gold); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--gold); color: var(--teal-deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { font-family: 'Outfit', sans-serif; font-size: 0.96rem; color: var(--cream-soft); padding-bottom: 24px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
.contact-info { display: grid; gap: 24px; align-content: start; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-item .ci-ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(217,164,65,0.12); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.ci-item h4 { font-size: 1rem; margin-bottom: 4px; }
.ci-item p, .ci-item a { font-family: 'Outfit', sans-serif; font-size: 0.93rem; color: var(--cream-soft); }
.ci-item a:hover { color: var(--gold); }
.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: 20px; padding: 40px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Outfit', sans-serif; font-size: 0.84rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; font-family: 'Outfit', sans-serif; font-size: 0.98rem; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; background: rgba(0,0,0,0.18); color: var(--cream); transition: border-color .25s; }
.field input::placeholder, .field textarea::placeholder { color: var(--cream-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field select option { background: var(--bg-2); color: var(--cream); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--cream-mute); margin-top: 12px; }
.form-success { display: none; background: rgba(217,164,65,0.12); border: 1px solid var(--gold); border-radius: 11px; padding: 15px 17px; font-family: 'Outfit', sans-serif; font-size: 0.93rem; color: var(--gold-soft); margin-top: 16px; }
.form-success.show { display: block; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.86rem; }
  .svc-row { grid-template-columns: repeat(3, 1fr); }
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px 14px; }
  .step:not(:last-child)::after { display: none; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .hero { min-height: 560px; }
  .hero-bg img { width: 60%; }
  .hero-map { left: 58%; width: 240px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: block; }
  .nav-links.mobile-open {
    display: flex; position: absolute; top: 100px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(11, 29, 51, 0.1);
    box-shadow: 0 12px 30px -14px rgba(11, 29, 51, 0.2);
  }
  .nav-links.mobile-open a { color: #0b1d33; }
  .hero { min-height: auto; padding: 40px 0 110px; }
  .hero-bg img { width: 100%; opacity: 0.45; }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(2,27,43,0.55) 0%, rgba(2,27,43,0.85) 60%, var(--bg) 100%);
  }
  .hero-map { top: 24px; right: 16px; left: auto; transform: none; width: 140px; opacity: 0.55; }
  .hero-content { padding-top: 20px; max-width: 100%; }
  .services-floating { margin-top: -60px; }
  .about-split, .contact-grid, .svc-detail { grid-template-columns: 1fr; gap: 40px; }
  .about-photos .p2 { position: relative; right: 0; bottom: 0; width: 70%; margin: -30px auto 0; }
  .cta-bar { flex-direction: column; text-align: center; border-radius: 24px; padding: 38px 30px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .panel { padding: 36px 18px; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
  .svc-item:not(:last-child)::after {
    top: auto; bottom: 0; right: 18%; left: 18%;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
  }
  .svc-item { padding: 20px 14px; }
  .facts-grid, .steps, .feature-row, .values-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-map { width: 110px; opacity: 0.4; }
}