/* =============================================
   AUTO PLUS ATYRAU — PREMIUM STYLESHEET v3
   Fonts: Cormorant Garamond + DM Sans + Bebas Neue
   ============================================= */

:root {
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-deeper: #1e3a8a;
  --blue-light:  #dbeafe;
  --blue-xlight: #eff6ff;
  --red:         #dc2626;
  --red-light:   #fee2e2;
  --text:        #0b1526;
  --text-muted:  #5a6b82;
  --bg:          #ffffff;
  --bg-alt:      #f6f8fb;
  --bg-dark:     #080f1e;
  --border:      #dde3ed;
  --border-light:#edf0f5;
  --shadow-sm:   0 1px 2px rgba(11,21,38,0.05), 0 2px 8px rgba(11,21,38,0.04);
  --shadow:      0 2px 4px rgba(11,21,38,0.04), 0 10px 32px rgba(11,21,38,0.08);
  --shadow-lg:   0 4px 8px rgba(11,21,38,0.05), 0 20px 56px rgba(11,21,38,0.13);
  --shadow-xl:   0 8px 16px rgba(11,21,38,0.06), 0 40px 80px rgba(11,21,38,0.18);
  --radius:      14px;
  --radius-sm:   9px;
  --radius-lg:   20px;
  --font:        'DM Sans', sans-serif;
  --font-serif:  'Cormorant Garamond', serif;
  --font-mono:   'Bebas Neue', cursive;
  --tr:          all 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.68; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY ── */
h1, h3, h4 { font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }
h2 { font-family: var(--font-serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.015em; }
p { line-height: 1.72; }

/* ── SECTION ── */
.section { padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-sub { color: var(--text-muted); font-size: 1.04rem; max-width: 520px; margin: 1.1rem auto 0; line-height: 1.78; }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: var(--blue); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  margin-bottom: 1.1rem; background: none; padding: 0; border-radius: 0;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 1.5px;
  background: currentColor; flex-shrink: 0; border-radius: 2px;
}
.tag-light { color: rgba(255,255,255,0.65); }
.tag-light::before { background: rgba(255,255,255,0.55); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 3.3rem);
  font-weight: 600; color: var(--text); line-height: 1.08;
  letter-spacing: -0.02em;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light); transition: var(--tr);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(11,21,38,0.08); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 72px; }

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-stack { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.logo-img { height: 28px; width: auto; object-fit: contain; display: block; }
.logo-city { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); line-height: 1; }
.logo-fallback { display: none; align-items: center; gap: 0.75rem; }
.logo-emblem {
  width: 40px; height: 40px; background: var(--blue-xlight);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--blue-light); flex-shrink: 0;
}
.logo-main { display: block; font-family: var(--font-mono); font-size: 1.4rem; letter-spacing: 0.09em; color: var(--blue); line-height: 1; }
.logo-sub  { display: block; font-size: 0.58rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-muted); line-height: 1; margin-top: 0.2rem; }

/* Nav links */
.nav-links { display: flex; gap: 0.2rem; margin-left: auto; }
.nav-links a {
  font-size: 0.87rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; padding: 0.48rem 1rem; border-radius: 8px; transition: var(--tr);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-links a.active { color: var(--blue); background: var(--blue-xlight); font-weight: 600; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 9px; cursor: pointer; padding: 0.55rem 0.6rem; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; padding: 0.82rem 1.75rem;
  border-radius: 12px; cursor: pointer; border: none;
  transition: var(--tr); white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--blue); color: white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.24), 0 6px 20px rgba(37,99,235,0.18);
}
.btn-primary:hover {
  background: var(--blue-dark); transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3), 0 12px 32px rgba(37,99,235,0.25);
}
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); border-color: rgba(255,255,255,0.4); }
.btn-nav {
  background: var(--blue); color: white; font-size: 0.83rem;
  padding: 0.52rem 1.2rem; border-radius: 9px; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(37,99,235,0.3);
}
.btn-nav:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(37,99,235,0.38); }
.btn-white { background: white; color: var(--blue); font-weight: 700; box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.btn-white:hover { background: var(--blue-xlight); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.16); }
.btn-wa       { background: #22c55e; color: white; font-size: 0.85rem; padding: 0.65rem 1.15rem; border-radius: 10px; flex: 1; justify-content: center; }
.btn-wa:hover { background: #16a34a; transform: translateY(-2px); }
.btn-wa-red   { background: #ef4444; } .btn-wa-red:hover   { background: #dc2626; }
.btn-wa-green { background: #059669; } .btn-wa-green:hover { background: #047857; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(5,10,30,0.92) 0%, rgba(8,20,58,0.78) 45%, rgba(5,12,35,0.55) 100%);
}

.hero-content { position: relative; z-index: 2; padding: 6rem 2rem; max-width: 1180px; margin: 0 auto; width: 100%; }

.hero-eyebrow { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.75rem; animation: fadeInDown 0.6s ease both; }
.hero-eyebrow-line { display: block; width: 32px; height: 1.5px; background: #60a5fa; border-radius: 2px; }
.hero-eyebrow span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.58); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 8.5vw, 6.4rem);
  font-weight: 600; line-height: 1.02; color: white;
  margin-bottom: 1.75rem; letter-spacing: -0.025em;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title em { font-style: italic; color: #93c5fd; }

.hero-desc {
  font-size: 1.06rem; color: rgba(255,255,255,0.68);
  max-width: 520px; margin-bottom: 2.75rem;
  animation: fadeInUp 0.7s ease 0.2s both; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4.5rem; animation: fadeInUp 0.7s ease 0.3s both; }

.hero-stats { display: flex; align-items: center; gap: 2.75rem; animation: fadeInUp 0.7s ease 0.4s both; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-mono); font-size: 2.5rem; color: white; line-height: 1; letter-spacing: 0.04em; }
.stat-num small { font-size: 1.1rem; font-family: var(--font); font-weight: 700; }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 0.35rem; letter-spacing: 0.06em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.14); }

.scroll-cue { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s ease-in-out infinite; opacity: 0.6; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SERVICE CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.card { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.card-img-wrap { position: relative; height: 235px; overflow: hidden; }
.card-img-wrap img { transition: transform 0.6s ease; }
.card:hover .card-img-wrap img { transform: scale(1.07); }
.card-img-badge { position: absolute; top: 1.1rem; right: 1.1rem; width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
.card-body { padding: 2rem; }
.card-body h3 { font-size: 1.12rem; margin-bottom: 0.65rem; letter-spacing: -0.01em; }
.card-body p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.4rem; line-height: 1.72; }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--blue); font-weight: 600; font-size: 0.87rem; text-decoration: none; transition: var(--tr); }
.card-link:hover { gap: 0.7rem; }

/* ── PHOTO STRIP ── */
.photo-strip { overflow: hidden; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip-track { display: flex; gap: 0.75rem; padding: 0.75rem 0; animation: scroll-strip 32s linear infinite; width: max-content; }
.strip-track img { width: 280px; height: 180px; flex-shrink: 0; border-radius: var(--radius); object-fit: cover; }
@keyframes scroll-strip { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.photo-strip:hover .strip-track { animation-play-state: paused; }

/* ── WHY US ── */
.why-us { background: var(--bg-alt); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-visual { position: relative; }
.why-photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); height: 540px; object-fit: cover; }
.why-badge-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: white; border-radius: var(--radius); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 0.9rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); min-width: 230px;
}
.wbf-icon { width: 44px; height: 44px; background: var(--blue-xlight); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-badge-float strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; letter-spacing: -0.01em; }
.why-badge-float span   { font-size: 0.76rem; color: var(--text-muted); }
.why-text .section-title { margin-top: 0.5rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.25rem; }
.why-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-icon-svg { width: 46px; height: 46px; background: var(--blue-xlight); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--blue-light); }
.why-list strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.why-list p { font-size: 0.87rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ── STATS BAND ── */
.stats-band {
  background: linear-gradient(135deg, #080f1e 0%, #0f1f4a 40%, #1e3a8a 75%, #2563eb 100%);
  padding: 4.5rem 0; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.stats-band-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 2rem; position: relative; z-index: 1; }
.sband-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
.sband-icon { width: 54px; height: 54px; background: rgba(255,255,255,0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; border: 1px solid rgba(255,255,255,0.12); }
.sband-num  { font-family: var(--font-mono); font-size: 2.8rem; color: white; line-height: 1; letter-spacing: 0.02em; }
.sband-num small { font-size: 1.2rem; font-family: var(--font); font-weight: 700; }
.sband-label { font-size: 0.7rem; color: rgba(255,255,255,0.48); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.sband-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.1); }

/* ── PARTNERS ── */
.partners-section { background: var(--bg); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.partner-card {
  display: flex; align-items: flex-start; gap: 1.1rem;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm); transition: var(--tr);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-light); }
.partner-card-cta { background: var(--blue-xlight); border-color: var(--blue-light); }
.partner-logo-wrap {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--bg-alt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.partner-info h4 { font-size: 0.97rem; margin-bottom: 0.35rem; }
.partner-info p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* ── BRANDS / COMPANY LOGOS ── */
.brands-strip { border-top: 1px solid var(--border); padding-top: 2.5rem; overflow: hidden; }
.brands-title {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); margin-bottom: 2rem;
}
.brands-track {
  display: flex; align-items: center; gap: 1.25rem;
  width: max-content; animation: scroll-strip 28s linear infinite;
  padding-bottom: 0.5rem;
}
.brands-strip:hover .brands-track { animation-play-state: paused; }

/* Company logo cards */
.company-logo-card {
  flex-shrink: 0;
  width: 200px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
  overflow: hidden;
  cursor: default;
}
.company-logo-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* Logo image container — fixed height so all cards same size */
.company-logo-card .logo-img-box {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-logo-card .logo-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
  transition: opacity 0.3s ease;
}
.company-logo-card:hover .logo-img-box img {
  opacity: 0.85;
}

/* Company name under logo — always visible */
.company-logo-card .logo-caption {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  max-width: 170px;
  white-space: normal;
}

/* Fallback text when image missing */
.logo-text-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.35;
  padding: 0.5rem;
  height: 64px;
}
.map-sidebar-btns {
  display: flex; flex-direction: column; gap: 0.65rem;
  margin-top: auto;
}
.map-2gis-btn { width: 100%; justify-content: center; font-size: 0.85rem; }
/* ── TEAM TABS ── */
.team-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem; justify-content: center;
}
.team-tab {
  font-family: var(--font); font-size: 0.85rem; font-weight: 600;
  padding: 0.5rem 1.2rem; border-radius: 100px;
  border: 1px solid var(--border); background: white;
  color: var(--text-muted); cursor: pointer; transition: var(--tr);
}
.team-tab:hover { border-color: var(--blue); color: var(--blue); }
.team-tab.active { background: var(--blue); color: white; border-color: var(--blue); }
.team-card.hidden { display: none; }
.team-position { font-size: 0.82rem; color: var(--text-muted); margin: 0.3rem 0 0; font-style: italic; }

/* Logo text fallback */
.logo-text-fallback {
  display: none; align-items: center; justify-content: center;
  text-align: center; font-size: 0.72rem; font-weight: 700;
  color: var(--text-muted); line-height: 1.3; padding: 0.25rem;
}

/* ── TEAM ── */
.team-section { background: var(--bg-alt); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.team-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo-wrap { position: relative; height: 200px; overflow: hidden; }
.team-photo-wrap img { object-position: center 15%; }
.team-photo-wrap img { transition: transform 0.55s ease; }
.team-card:hover .team-photo-wrap img { transform: scale(1.06); }
.team-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,50,0.45) 0%, transparent 55%); }
.team-body { padding: 1.4rem 1.6rem; }
.team-body h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-role {
  display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--blue); background: var(--blue-light);
  padding: 0.2rem 0.65rem; border-radius: 6px; margin-bottom: 0.7rem;
}
.team-body p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.65; }
.team-wa {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #25d366; color: white;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.5rem 1.1rem; border-radius: 8px;
  text-decoration: none; transition: var(--tr);
}
.team-wa:hover { background: #128c7e; transform: translateY(-2px); }

/* ── MAP SECTION ── */
.map-section { background: var(--bg-alt); padding-bottom: 0; }
.map-section .section-header { padding-bottom: 3rem; }

.map-wrapper {
  display: grid; grid-template-columns: 1fr 380px;
  min-height: 640px; margin-top: 3rem; align-items: stretch;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border-light);
}
.map-iframe-wrap { position: relative; overflow: hidden; height: 100%; min-height: 640px; display: flex; flex-direction: column; }
.map-iframe-wrap iframe { width: 100%; flex: 1; min-height: 640px; border: 0; display: block; }
.map-iframe-wrap > div { flex: 1; min-height: 640px; width: 100%; }

/* Map sidebar */
.map-points {
  background: white; border-left: 1px solid var(--border-light); border-right: none;
  padding: 0; display: flex; flex-direction: column; gap: 0; overflow-y: auto;
}

/* Sidebar header */
.mp-header { padding: 2rem 2rem 1.5rem; border-bottom: 1px solid var(--border-light); background: var(--bg-alt); }
.mp-header-eyebrow { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-muted); margin-bottom: 0.6rem; }
.mp-header-count { font-family: var(--font-mono); font-size: 4rem; color: var(--border); line-height: 1; display: flex; align-items: flex-end; gap: 0.65rem; }
.mp-header-count span { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.72rem; }

/* Branch entries */
.map-point {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.2rem 2rem; border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease; cursor: default;
}
.map-point:hover { background: var(--bg-alt); }
.map-point:last-of-type { border-bottom: 1px solid var(--border-light); }

.mp-num {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  font-family: var(--font-mono); font-size: 0.86rem;
  display: flex; align-items: center; justify-content: center; color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.mp-info { flex: 1; min-width: 0; }
.mp-info h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.18rem; font-weight: 600; letter-spacing: -0.01em; }
.mp-info > p { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.mp-hours { color: #059669 !important; font-size: 0.72rem; font-weight: 600; margin-bottom: 0.4rem; }
.mp-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-bottom: 0.45rem; }
.tag-chip { font-size: 0.62rem; font-weight: 700; padding: 0.14rem 0.5rem; border-radius: 4px; background: var(--blue-xlight); color: var(--blue); letter-spacing: 0.04em; text-transform: uppercase; }
.mp-phones { display: flex; flex-direction: column; gap: 0.28rem; }
.mp-phones a { display: flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; color: var(--text-muted); text-decoration: none; transition: var(--tr); }
.mp-phones a:hover { color: var(--text); }

/* Sidebar bottom */
.map-sidebar-btns { padding: 1.25rem 1.75rem 1.75rem; display: flex; flex-direction: column; gap: 0.55rem; margin-top: auto; }
.map-legend { display: none; } /* moved to Leaflet control bottom-right of map */
.map-legend-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.map-legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.map-2gis-btn { width: 100%; justify-content: center; font-size: 0.83rem; }

/* ── LOCATIONS (used on other pages) ── */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.loc-card { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.loc-img-wrap { height: 210px; overflow: hidden; }
.loc-img-wrap img { transition: transform 0.6s ease; }
.loc-card:hover .loc-img-wrap img { transform: scale(1.07); }
.loc-body { padding: 1.75rem 2rem; }
.loc-num { font-family: var(--font-mono); font-size: 3.2rem; color: var(--blue-light); line-height: 1; margin-bottom: 0.1rem; letter-spacing: 0.02em; }
.loc-card h3 { font-size: 1.12rem; margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.loc-addr-row { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.55rem; }
.loc-addr-row span { font-size: 0.84rem; color: var(--text-muted); }
.loc-type { font-size: 0.7rem; color: var(--text-muted); background: var(--bg-alt); padding: 0.22rem 0.6rem; border-radius: 5px; display: inline-block; margin-bottom: 0.6rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.loc-hours { display: flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; color: #059669; font-weight: 500; margin-bottom: 0.9rem; }
.loc-contacts { display: flex; gap: 0.6rem; }
.loc-wa-btn { display: inline-flex; align-items: center; gap: 0.45rem; background: #22c55e; color: white; font-size: 0.82rem; font-weight: 600; padding: 0.55rem 1.1rem; border-radius: 9px; text-decoration: none; transition: var(--tr); flex: 1; justify-content: center; }
.loc-wa-btn:hover { background: #16a34a; transform: translateY(-2px); }
.map-cta { text-align: center; margin-top: 2.5rem; }
/* Working hours */
.mp-hours { display: flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; color: #059669; font-weight: 600; margin-bottom: 0.45rem; letter-spacing: 0.01em; }
.contact-hours-row { display: flex; align-items: center; gap: 0.55rem; font-size: 0.82rem; color: #047857; font-weight: 600; padding: 0.55rem 0.8rem; background: #f0fdf4; border-radius: 9px; border: 1px solid #a7f3d0; }

/* ── CTA BANNER ── */
.cta-banner { position: relative; padding: 6.5rem 0; overflow: hidden; }
.cta-bg-img { position: absolute; inset: 0; }
.cta-bg-img img { object-fit: cover; height: 100%; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(5,10,28,0.93), rgba(20,56,190,0.8)); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(2rem, 3.8vw, 2.8rem); color: white; margin-bottom: 0.6rem; font-weight: 600; letter-spacing: -0.02em; }
.cta-banner p  { color: rgba(255,255,255,0.65); font-size: 1.02rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { position: relative; padding: 11rem 0 6.5rem; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-bg { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(140deg, rgba(5,10,30,0.91), rgba(12,24,64,0.74)); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 7.5vw, 5.5rem); font-weight: 600; color: white; margin: 0.7rem 0 1.1rem; animation: fadeInUp 0.6s ease both; letter-spacing: -0.025em; }
.page-hero-content p { color: rgba(255,255,255,0.65); font-size: 1.06rem; max-width: 480px; line-height: 1.75; }

/* ── SERVICE DETAIL (inner pages) ── */
.service-detail-card { display: grid; grid-template-columns: 1fr 1.1fr; overflow: hidden; background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg); margin-bottom: 3rem; box-shadow: var(--shadow); transition: var(--tr); }
.service-detail-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border); }
.service-detail-card.reverse { grid-template-columns: 1.1fr 1fr; }
.service-detail-card.reverse .sdc-media { order: 2; }
.service-detail-card.reverse .sdc-content { order: 1; }
.sdc-media { position: relative; min-height: 380px; overflow: hidden; }
.sdc-media img { height: 100%; transition: transform 0.65s ease; }
.service-detail-card:hover .sdc-media img { transform: scale(1.05); }
.sdc-media-badge { position: absolute; top: 1.4rem; left: 1.4rem; width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.sdc-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.sdc-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--blue); margin-bottom: 0.7rem; display: block; }
.sdc-content h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 600; margin-bottom: 0.9rem; letter-spacing: -0.02em; }
.sdc-content > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.4rem; line-height: 1.78; }
.sdc-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.sdc-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.sdc-check { width: 20px; height: 20px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sdc-time-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--blue-xlight); color: var(--blue); font-size: 0.8rem; font-weight: 700; padding: 0.4rem 0.95rem; border-radius: 8px; margin-bottom: 1.75rem; letter-spacing: 0.02em; }

/* ── PROCESS ── */
.process-section { background: var(--bg-alt); }
.process-steps { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.step { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem 2rem; flex: 1; min-width: 200px; max-width: 280px; box-shadow: var(--shadow); text-align: center; transition: var(--tr); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-icon { width: 54px; height: 54px; background: var(--blue-xlight); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; border: 1px solid var(--blue-light); }
.step-num { font-family: var(--font-mono); font-size: 2.8rem; color: var(--blue-light); line-height: 1; margin-bottom: 0.5rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p  { font-size: 0.86rem; color: var(--text-muted); }
.step-arrow { color: var(--border); flex-shrink: 0; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); height: 500px; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -2rem; right: -2rem; width: 200px; height: 150px; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 4px solid white; object-fit: cover; }
.about-img-badge { position: absolute; top: 2rem; left: -1.5rem; background: white; border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.aib-icon { width: 38px; height: 38px; background: var(--blue-xlight); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-img-badge strong { display: block; font-size: 0.88rem; margin-bottom: 0.15rem; }
.about-img-badge span  { font-size: 0.75rem; color: var(--text-muted); }
.about-lead { font-family: var(--font-serif); font-size: 1.2rem; color: var(--text); margin-bottom: 1rem; font-weight: 500; line-height: 1.5; }
.about-text p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0.75rem; }
.about-values { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon-svg { width: 42px; height: 42px; background: var(--blue-xlight); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--blue-light); }
.value-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.value-item p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }
.full-photo-section { position: relative; height: 400px; overflow: hidden; }
.full-photo-section img { height: 100%; object-position: center 40%; }
.full-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(8,14,45,0.6),rgba(8,14,45,0.78)); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.full-photo-quote { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 500; color: white; line-height: 1.35; margin-bottom: 1rem; max-width: 680px; font-style: italic; }
.full-photo-overlay cite { font-size: 0.88rem; color: rgba(255,255,255,0.55); font-style: normal; letter-spacing: 0.08em; }
.promises-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.promise-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.promise-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.promise-img { position: relative; height: 200px; overflow: hidden; }
.promise-img img { transition: transform 0.5s ease; }
.promise-card:hover .promise-img img { transform: scale(1.06); }
.promise-icon { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(8,14,45,0.55)); display: flex; align-items: flex-end; padding: 1rem; }
.promise-body { padding: 1.4rem 1.6rem; }
.promise-body h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.promise-body p  { font-size: 0.88rem; color: var(--text-muted); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.contact-card { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.contact-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.contact-card-img { position: relative; height: 235px; overflow: hidden; }
.contact-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.contact-card:hover .contact-card-img img { transform: scale(1.08); }
.contact-card-img-overlay { position: absolute; inset: 0; }
.contact-card-header-text { position: absolute; inset: 0; padding: 1.4rem 1.6rem; display: flex; flex-direction: column; justify-content: flex-end; }
.cc-num { font-family: var(--font-mono); font-size: 4.5rem; color: rgba(255,255,255,0.1); line-height: 1; position: absolute; top: 0.5rem; right: 1rem; letter-spacing: -0.05em; }
.contact-card-header-text h3 { font-size: 1.1rem; color: white; margin-bottom: 0.28rem; font-weight: 600; letter-spacing: -0.01em; }
.cc-addr { display: flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; color: rgba(255,255,255,0.7); }
.contact-card-body { background: white; padding: 1.6rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: center; gap: 0.85rem; }
.contact-icon-svg { width: 42px; height: 42px; background: var(--blue-xlight); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { display: block; font-size: 0.66rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.2rem; }
.contact-num { display: block; font-size: 0.97rem; font-weight: 700; color: var(--text); text-decoration: none; transition: var(--tr); letter-spacing: -0.01em; }
.contact-num:hover { color: var(--blue); }
.contact-wa-btns { display: flex; gap: 0.6rem; margin-top: 0.2rem; }

/* MAP BLOCK (contact page) */
.map-block { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.map-visual { position: relative; min-height: 380px; overflow: hidden; }
.map-visual img { height: 100%; transition: transform 0.6s ease; }
.map-visual:hover img { transform: scale(1.04); }
.map-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,14,50,0.72) 0%,transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; gap: 1.25rem; }
.map-pin-widget { display: flex; align-items: center; gap: 0.75rem; background: white; border-radius: var(--radius); padding: 0.9rem 1.1rem; width: fit-content; box-shadow: var(--shadow); }
.mpw-icon { width: 40px; height: 40px; background: var(--blue-xlight); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-pin-widget strong { display: block; font-size: 0.9rem; }
.map-pin-widget span  { font-size: 0.76rem; color: var(--text-muted); }
.map-addr-list { background: white; padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.map-addr-item { display: flex; align-items: flex-start; gap: 1rem; }
.map-addr-num { width: 36px; height: 36px; border-radius: 9px; font-family: var(--font-mono); font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-addr-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.map-addr-item > div > span { font-size: 0.82rem; color: var(--text-muted); display: block; }
.map-addr-tags { display: flex; gap: 0.4rem; margin-top: 0.5rem; flex-wrap: wrap; }
.map-open-btn { width: fit-content; }
.map-iframe-wrap { position: relative; overflow: hidden; }
.map-iframe-wrap iframe { width: 100%; min-height: 480px; border: 0; display: block; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow-sm); transition: var(--tr); }
.faq-item.open { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 0.96rem; font-weight: 600; color: var(--text); text-align: left; gap: 1rem; }
.faq-arrow-icon { width: 32px; height: 32px; background: var(--bg-alt); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease; color: var(--blue); }
.faq-item.open .faq-arrow-icon { transform: rotate(180deg); background: var(--blue-xlight); }
.faq-a { display: none; padding: 0 1.5rem 1.35rem; font-size: 0.91rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
.footer { background: #040a18; color: white; padding: 5.5rem 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.6fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; }
.footer-logo-fallback { display: none; align-items: center; gap: 0.75rem; }
.footer-emblem { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1) !important; }
.footer-brand p { color: rgba(255,255,255,0.38); font-size: 0.86rem; line-height: 1.78; }
.footer-links h4, .footer-contacts h4 { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.28); margin-bottom: 1.35rem; font-weight: 700; }
.footer-links a, .footer-contacts a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.87rem; margin-bottom: 0.65rem; transition: var(--tr); }
.footer-links a:hover, .footer-contacts a:hover { color: white; padding-left: 4px; }
.footer-bottom { padding: 1.5rem 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.76rem; letter-spacing: 0.04em; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.5); z-index: 999; transition: var(--tr); animation: pulse-wa 2.5s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); background: #128c7e; animation: none; box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
.wa-tooltip { position: absolute; right: 70px; background: #0f172a; color: white; font-family: var(--font); font-size: 0.8rem; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes pulse-wa { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.5)} 50%{box-shadow:0 6px 36px rgba(37,211,102,0.8),0 0 0 10px rgba(37,211,102,0.1)} }

/* ── ANIMATIONS ── */
@keyframes fadeInUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:translateY(0)} }
[data-aos] { opacity:0; transform:translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos].visible { opacity:1; transform:translateY(0); }

.team-card-founder {
  grid-column: 1 / -1;
  max-width: 320px;
  margin: 0 auto 1rem;
  border: 2px solid var(--blue);
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}
.team-photo-wrap--tall { height: 360px; }
.team-role--founder {
  background: var(--blue);
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ── TEAM GRID: solo / duo layout fix ── */
.team-grid--solo { max-width: 340px; margin-left: auto; margin-right: auto; }
.team-grid--duo  { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ── TEAM EMPTY STATE ── */
.team-empty {
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3.5rem 1rem;
  color: var(--text-muted);
  text-align: center;
}
.team-empty-icon {
  width: 72px; height: 72px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
}
.team-empty p {
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text-muted);
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
  margin: 0.75rem 0 1.25rem;
  padding: 0;
}
.services-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 0.9rem;
  position: relative;
  line-height: 1.4;
}
.services-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

/* ── ALL SERVICES SECTION ── */
.all-services-section { background: var(--bg-alt); }
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.asvc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
}
.asvc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.asvc-icon {
  width: 48px; height: 48px;
  background: var(--blue-xlight);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--blue-light);
}
.asvc-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.asvc-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.asvc-card li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.asvc-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
}

/* ── ALL SERVICES SECTION ── */
.all-services-section { background: var(--bg-alt); }

.asvc-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.asvc-tab {
  font-family: var(--font); font-size: 0.85rem; font-weight: 600;
  padding: 0.55rem 1.3rem; border-radius: 100px;
  border: 1px solid var(--border); background: white;
  color: var(--text-muted); cursor: pointer; transition: var(--tr);
}
.asvc-tab:hover { border-color: var(--blue); color: var(--blue); }
.asvc-tab.active { background: var(--blue); color: white; border-color: var(--blue); }

.asvc-panels { position: relative; }
.asvc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.4s ease both;
}
.asvc-panel.active { display: grid; }

.asvc-panel-img {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.asvc-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.asvc-panel-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,14,50,0.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 2rem;
}
.asvc-panel-label {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 600;
  color: white; line-height: 1.2;
}

.asvc-panel-list {
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.asvc-panel-desc {
  font-size: 0.93rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.asvc-panel-list ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.asvc-panel-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: var(--text);
  font-weight: 500;
}
.asvc-panel-list li svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .asvc-panel { grid-template-columns: 1fr; }
  .asvc-panel-img { min-height: 240px; }
  .asvc-panel-list { padding: 1.75rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrapper { grid-template-columns: 1fr; border-radius: var(--radius); }
  .map-points { border-left: none; border-top: 1px solid var(--border-light); }
}
@media (max-width: 1024px) {
  .why-inner { gap: 3rem; }
  .about-grid { gap: 3rem; }
  .service-detail-card,
  .service-detail-card.reverse { grid-template-columns: 1fr; }
  .service-detail-card.reverse .sdc-media,
  .service-detail-card.reverse .sdc-content { order: unset; }
  .sdc-media { min-height: 280px; }
  .map-block { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-photo { height: 360px; }
  .why-badge-float { right: 0; bottom: -1rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-stack { display: none; }
  .about-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: #ffffff; flex-direction: column; padding: 1.5rem; gap: 0.35rem; z-index: 1001; border-top: 2px solid var(--blue-light); box-shadow: 0 8px 32px rgba(11,21,38,0.18); overflow-y: auto; align-content: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 1.1rem; font-size: 1.05rem; border-radius: 10px; color: #0b1526; font-weight: 500; background: transparent; }
  .btn-nav { display: none; }
  .burger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .step { max-width: 100%; }
  .contact-wa-btns { flex-direction: column; }
  .stats-band-inner { justify-content: center; gap: 1.5rem 3rem; }
  .sband-divider { display: none; }
  .full-photo-section { height: 300px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-iframe-wrap, .map-iframe-wrap > div, .map-iframe-wrap iframe { min-height: 380px; }
  .map-points { max-height: none; overflow-y: visible; }
}

@media (max-width: 768px) {
  .team-photo-wrap { height: 260px; }
  .team-photo-wrap--tall { height: 320px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cards-grid, .loc-grid, .contact-grid, .promises-grid, .team-grid { grid-template-columns: 1fr; }
  .strip-track img { width: 200px; height: 130px; }
  .partners-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .all-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .all-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: #ffffff;

    flex-direction: column;

    padding: 6rem 1.5rem 1.5rem;

    gap: 0.35rem;

    z-index: 1001;

    border-top: 2px solid var(--blue-light);

    box-shadow: 0 8px 32px rgba(11,21,38,0.18);

    overflow-y: auto;

    align-content: flex-start;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 768px) {

  .navbar {
    overflow: visible !important;
  }

  .nav-links {
    display: none;

    position: fixed !important;
    inset: 0 !important;

    width: 100vw;
    height: 100vh;

    background: #ffffff;

    flex-direction: column;

    padding: 90px 1.5rem 1.5rem;

    gap: 0.35rem;

    z-index: 99999;

    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }
}