/* =========================================================================
   Ankara Gider Açma — Design System (Buz Mavisi / Ice Blue)
   Token-based, framework-free. WCAG AA verified contrasts.
   ========================================================================= */

:root {
  /* Palette */
  --primary-dark: #0B2A3A;   /* headings, body text — ~13:1 on white */
  --deep-petrol:  #0C3D52;   /* hero / dark sections */
  --deep-petrol-2:#0A3346;
  --page-bg:      #F1F9FC;   /* icy page background */
  --surface:      #FFFFFF;
  --surface-2:    #F6FBFD;
  --text-2:       #47616E;   /* secondary text — ~6:1 on white */
  --border:       #D5E7F0;
  --accent:       #0B6E99;   /* CTA — white text ~5:1 */
  --accent-hover: #085676;
  --accent-soft:  #E4F2F8;   /* tint background */
  --ice:          #6FD3F2;   /* bright ice accent on dark */
  --ice-2:        #38BDF8;
  --success:      #15803D;
  --warning:      #B45309;
  --danger:       #B91C1C;
  --whatsapp:     #25D366;
  --whatsapp-dk:  #1EA952;

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Spacing / radius / shadow */
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(11, 42, 58, .08);
  --shadow: 0 6px 24px rgba(11, 42, 58, .10);
  --shadow-lg: 0 18px 48px rgba(11, 42, 58, .16);
  --container: 1200px;
  --header-h: 72px;
  --bottombar-h: 62px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-dark);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; color: var(--primary-dark); font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Default icon size (specific contexts override via `.context svg`) */
.ico { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--tight { padding: 44px 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--deep-petrol); color: #E8F4FA; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section--dark .eyebrow, .hero .eyebrow { color: var(--ice); }
.h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
.h2 { font-size: clamp(1.55rem, 4vw, 2.25rem); }
.lead { font-size: 1.12rem; color: var(--text-2); }
.section--dark .lead { color: #C7E3EF; }
.text-muted { color: var(--text-2); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 1rem; line-height: 1; text-align: center;
  padding: 15px 26px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: background-color .15s, color .15s, border-color .15s, transform .1s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-wa { background: var(--whatsapp); color: #06371c; }
.btn-wa:hover { background: var(--whatsapp-dk); color: #fff; }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-soft); }
.btn-ghost-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-lg { padding: 17px 32px; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn .ico { width: 20px; height: 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.90); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.brand-name { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; color: var(--primary-dark); white-space: nowrap; }
.brand-name small { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .04em; color: var(--text-2); text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { color: var(--primary-dark); font-weight: 500; padding: 10px 14px; border-radius: 8px; }
.main-nav a:hover { background: var(--accent-soft); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--accent); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.hamburger { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; background: var(--accent-soft); border: none; border-radius: 10px; cursor: pointer; color: var(--primary-dark); }
.hamburger svg { width: 26px; height: 26px; }

/* ---------- Mobile menu overlay ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--deep-petrol); color: #fff;
  display: flex; flex-direction: column; padding: 20px;
  transform: translateX(100%); transition: transform .28s ease;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mobile-menu-top .brand-name { color: #fff; }
.mm-close { width: 46px; height: 46px; background: rgba(255,255,255,.12); border: none; border-radius: 10px; color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.mm-close svg { width: 26px; height: 26px; }
.mm-cta { display: grid; gap: 12px; margin: 18px 0 22px; }
.mobile-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mobile-nav > li { border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav a, .mobile-nav .mm-parent { display: flex; align-items: center; justify-content: space-between; width: 100%; color: #fff; font-size: 1.22rem; font-weight: 500; padding: 15px 6px; background: none; border: none; text-align: left; cursor: pointer; }
.mobile-nav a:hover { text-decoration: none; color: var(--ice); }
.mm-sub { list-style: none; margin: 0 0 8px; padding: 0 0 6px; display: none; }
.mm-sub[data-open="true"] { display: block; }
.mm-sub a { font-size: 1.05rem; padding: 11px 16px; color: #C7E3EF; }
.mm-parent svg { width: 20px; height: 20px; transition: transform .2s; }
.mm-parent[aria-expanded="true"] svg { transform: rotate(180deg); }
.mm-social { margin-top: auto; padding-top: 18px; display: flex; gap: 16px; }
.mm-social a { color: #C7E3EF; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(111,211,242,.18), transparent 60%),
    radial-gradient(760px 460px at -8% 108%, rgba(56,189,248,.14), transparent 60%),
    linear-gradient(140deg, #0A2536 0%, var(--deep-petrol) 42%, #0E4A63 100%);
}
/* subtle grain for premium depth */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; padding: 76px 0 84px; position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: clamp(2.05rem, 4.8vw, 3.35rem); line-height: 1.08; margin-bottom: 20px; }
.hero h1 .accent { color: var(--ice); }
.hero .eyebrow { display: inline-flex; align-items: center; padding: 7px 15px; border-radius: 999px; background: rgba(111,211,242,.10); border: 1px solid rgba(111,211,242,.22); margin-bottom: 20px; }
.hero p { color: #CFE7F1; font-size: 1.14rem; line-height: 1.7; max-width: 560px; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-badge { padding: 14px 20px 12px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(6px); }
.hero-badge .n { font-size: 1.85rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-badge .l { font-size: .82rem; color: #A9CFDE; margin-top: 5px; }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative; z-index: 1; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.08);
}
.hero-media-frame::after { /* glossy edge highlight */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 0 60px rgba(10,37,54,.25);
}
.hero-media-frame img { width: 100%; object-fit: cover; aspect-ratio: 16/11; display: block; }
.hero-float-chip {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: .92rem; color: #fff;
  background: rgba(11,42,58,.55); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.hero-float-chip svg { width: 18px; height: 18px; color: var(--ice); }
/* soft glow behind image */
.hero-media::before {
  content: ""; position: absolute; inset: -14% -8% -8% 6%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,211,242,.22), transparent 68%); filter: blur(10px); pointer-events: none;
}

/* Premium entrance animation (reduced-motion safe via global rule) */
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-inner > div > *, .hero-media-frame { opacity: 0; animation: heroRise .7s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-inner > div > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > div > *:nth-child(2) { animation-delay: .13s; }
.hero-inner > div > *:nth-child(3) { animation-delay: .21s; }
.hero-inner > div > *:nth-child(4) { animation-delay: .29s; }
.hero-inner > div > *:nth-child(5) { animation-delay: .37s; }
.hero-media-frame { animation-delay: .22s; }
@media (prefers-reduced-motion: reduce) {
  .hero-inner > div > *, .hero-media-frame { opacity: 1; animation: none; }
}

/* Hero slider */
.hero-slider { position: relative; }
.hero-track { display: flex; transition: transform .5s ease; }
.hero-slide { min-width: 100%; flex: 0 0 100%; }
.hero-badge--txt .n { font-size: 1.2rem; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.16); color: #fff; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background-color .15s;
}
.hero-arrow:hover { background: rgba(255,255,255,.30); }
.hero-arrow svg { width: 26px; height: 26px; }
.hero-prev { left: 16px; }
.hero-prev svg { transform: rotate(90deg); }
.hero-next { right: 16px; }
.hero-next svg { transform: rotate(-90deg); }
.hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 11px; height: 11px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.4); padding: 0; transition: background-color .15s, width .15s; }
.hero-dot.is-active { background: var(--ice); width: 28px; border-radius: 6px; }
@media (max-width: 767px) {
  .hero-arrow { display: none; }
  .hero-dots { bottom: 10px; }
}

/* Subpage hero (compact) */
.subhero { background: linear-gradient(135deg, var(--deep-petrol), #0E4A63); color: #fff; padding: 40px 0 44px; }
.subhero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 10px; }
.subhero p { color: #CFE7F1; max-width: 720px; margin: 0; }
.breadcrumb { font-size: .85rem; color: #A9CFDE; margin-bottom: 14px; }
.breadcrumb a { color: #CFE7F1; }
.breadcrumb .sep { margin: 0 8px; opacity: .6; }

/* ---------- Cards ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .15s, box-shadow .15s; }
a.card, a.card:hover, .service-card, .service-card:hover,
.mini-service, .mini-service:hover, .related-links a:hover { text-decoration: none; }
.service-card { display: flex; flex-direction: column; height: 100%; color: inherit; }
.service-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.service-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--text-2); font-size: .96rem; flex: 1; }
.service-card .more { color: var(--accent); font-weight: 600; margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; }
@media (hover: hover) {
  .card:hover, .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
}
.icon-badge { width: 52px; height: 52px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.icon-badge svg { width: 28px; height: 28px; }

/* Feature / why-us */
.feature { text-align: left; }
.feature .icon-badge { background: rgba(111,211,242,.14); color: var(--ice); }

/* Chips / keyword tags */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 4px; padding: 0; list-style: none; }
.chip { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--border); border-radius: 999px; padding: 8px 15px; font-size: .9rem; font-weight: 600; }
.section--dark .chip { background: rgba(255,255,255,.08); color: #DCF1F8; border-color: rgba(255,255,255,.18); }

/* Bullet list with checks */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: ""; flex: 0 0 22px; height: 22px; margin-top: 2px; background: var(--success); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat; }

/* Prose (article/legal) */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.3em; }
.prose p, .prose li { color: #2C4652; }
.prose ul { padding-left: 1.3em; }

/* Brands band */
.brands { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.brands img { max-height: 46px; width: auto; margin: 0 auto; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s; }
@media (hover: hover) { .brands img:hover { filter: none; opacity: 1; } }

/* Reviews */
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.review p { font-style: italic; color: #2C4652; }
.review .who { font-weight: 700; color: var(--primary-dark); font-style: normal; }
.review .where { color: var(--text-2); font-size: .9rem; }

/* Accordion (FAQ) */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.acc-btn { width: 100%; text-align: left; background: none; border: none; padding: 18px 20px; font-size: 1.05rem; font-weight: 600; color: var(--primary-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-btn svg { width: 22px; height: 22px; flex-shrink: 0; transition: transform .2s; color: var(--accent); }
.acc-btn[aria-expanded="true"] svg { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.acc-panel .inner { padding: 0 20px 18px; color: var(--text-2); }

/* Forms */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.form-field .req { color: var(--danger); }
.form-control { width: 100%; min-height: 50px; padding: 12px 14px; font-size: 16px; font-family: inherit; color: var(--primary-dark); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(11,110,153,.15); outline: none; }
.form-control[aria-invalid="true"] { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .88rem; margin-top: 5px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--text-2); }
.consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .9rem; color: var(--text-2); text-align: center; margin-top: 10px; }
.alert { padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; }
.alert-success { background: #E7F6EC; border: 1px solid #B7E0C4; color: #14532D; }
.alert-error { background: #FDECEC; border: 1px solid #F3C0C0; color: #7F1D1D; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-row { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon-badge { margin: 0; width: 44px; height: 44px; }
.contact-row .icon-badge svg { width: 22px; height: 22px; }
.contact-row .k { font-size: .82rem; color: var(--text-2); }
.contact-row .v { font-weight: 700; color: var(--primary-dark); }

/* Map */
.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius); display: block; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--accent), var(--deep-petrol)); color: #fff; border-radius: var(--radius-lg); padding: 44px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #DCF1F8; max-width: 620px; margin: 0 auto 24px; }
.cta-band .hero-cta { justify-content: center; }

/* District specific */
.district-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mini-service { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.mini-service h3 { font-size: 1.02rem; margin-bottom: 4px; }
.mini-service p { font-size: .9rem; color: var(--text-2); margin: 0; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a { background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: .92rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-dark); color: #AEC6D4; }

/* Top CTA strip */
.footer-cta { background: linear-gradient(135deg, var(--deep-petrol) 0%, #0E4A63 100%); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 30px 20px; }
.footer-cta-text h2 { color: #fff; font-size: 1.4rem; margin: 0 0 4px; }
.footer-cta-text p { color: #C7E3EF; margin: 0; font-size: .98rem; }
.footer-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr; gap: 44px; padding: 56px 0 40px; }
.footer-brand img { height: 60px; width: auto; margin-bottom: 16px; background: #fff; padding: 8px; border-radius: 14px; box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.footer-brand p { color: #8FA9B8; font-size: .94rem; line-height: 1.7; max-width: 330px; margin: 0; }
.footer-col h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #AEC6D4; font-size: .96rem; transition: color .15s, padding-left .15s; }
.footer-col a:hover { color: var(--ice); text-decoration: none; padding-left: 3px; }

/* Contact rows (icon + text inline) */
.footer-nap address { font-style: normal; margin: 0; }
.footer-nap-name { color: #fff; font-weight: 700; font-size: 1rem; margin: 0 0 14px; }
.footer-contact-row { display: flex; align-items: center; gap: 12px; color: #AEC6D4; padding: 7px 0; transition: color .15s; }
.footer-contact-row:hover { color: var(--ice); text-decoration: none; }
.footer-contact-row.is-static { pointer-events: none; }
.fc-ico { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: rgba(111,211,242,.10); color: var(--ice); display: inline-flex; align-items: center; justify-content: center; }
.fc-ico svg { width: 18px; height: 18px; }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); color: #AEC6D4; display: inline-flex; align-items: center; justify-content: center; transition: background-color .15s, color .15s; }
.footer-social a:hover { background: rgba(111,211,242,.15); color: var(--ice); }
.footer-social svg { width: 20px; height: 20px; }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 22px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a { color: #AEC6D4; font-size: .88rem; transition: color .15s; }
.footer-legal a:hover { color: var(--ice); text-decoration: none; }
.footer-copy { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .85rem; color: #7B94A3; }
.footer-copy a { color: #AEC6D4; }
.footer-copy a:hover { color: var(--ice); }

/* ---------- Mobile fixed call/whatsapp bar (modern) ---------- */
.mobile-bar { display: none; }
@media (max-width: 767px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.80); backdrop-filter: blur(14px) saturate(1.3);
    border-top: 1px solid rgba(11,42,58,.08);
    box-shadow: 0 -6px 24px rgba(11,42,58,.12);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    height: 54px; border-radius: 15px; font-weight: 700; font-size: 1.04rem; color: #fff;
    position: relative; overflow: hidden;
    transition: transform .12s ease, box-shadow .12s ease;
  }
  .mobile-bar a::before { /* top gloss highlight */
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 50%;
    background: linear-gradient(rgba(255,255,255,.22), transparent); pointer-events: none;
  }
  .mobile-bar a:hover { text-decoration: none; color: #fff; }
  .mobile-bar a:active { transform: translateY(2px); }
  .mobile-bar .mb-call { background: linear-gradient(180deg, #F23B4C 0%, #D51F2E 100%); box-shadow: 0 8px 18px rgba(213,31,46,.36); }
  .mobile-bar .mb-wa { background: linear-gradient(180deg, #2CD36B 0%, #1EB457 100%); box-shadow: 0 8px 18px rgba(37,211,102,.34); }
  .mobile-bar svg { width: 23px; height: 23px; }
  .mobile-bar .mb-call:active { box-shadow: 0 3px 10px rgba(213,31,46,.34); }
  .mobile-bar .mb-wa:active { box-shadow: 0 3px 10px rgba(37,211,102,.34); }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
}

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff; padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.hide-desktop { display: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1023px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-inner { gap: 32px; }
}
@media (max-width: 900px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: inline-flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brands { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
  .section { padding: 44px 0; }
  .hero-inner { grid-template-columns: 1fr; padding: 34px 0 44px; gap: 30px; }
  .hero-media { order: -1; }
  .hero-media-frame img { aspect-ratio: 16/11; }
  .hero .eyebrow { font-size: .72rem; }
  .hero p { font-size: 1.06rem; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .hero-badges { gap: 10px; margin-top: 28px; }
  .hero-badge { flex: 1 1 0; min-width: 0; padding: 12px 12px 10px; text-align: center; }
  .hero-badge .n { font-size: 1.3rem; }
  .hero-badge .l { font-size: .72rem; }
  .hero-badge--txt .n { font-size: 1rem; }
  .hero-float-chip { left: 12px; bottom: 12px; font-size: .82rem; padding: 8px 13px; }
  .grid-2, .grid-3, .district-services, .contact-grid { grid-template-columns: 1fr; }
  .brands { grid-template-columns: repeat(3, 1fr); }
  .footer-cta-inner { flex-direction: column; text-align: center; padding: 26px 20px; }
  .footer-cta-btns { width: 100%; flex-direction: column; }
  .footer-cta-btns .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 30px; }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: none; }
  .footer-social { justify-content: center; }
  .footer-copy { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cta-band { padding: 30px 20px; }
  .header-cta .btn { display: none; }
  .brand-name small { display: none; }
}
@media (max-width: 380px) {
  .brand img { height: 36px; }
  .brand-name { font-size: 1rem; }
  .brands { grid-template-columns: repeat(2, 1fr); }
}
