/* ─── VARIABLES & RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1B2F5E;
  --navy2:  #152448;
  --amber:  #F59E0B;
  --amber2: #FCD34D;
  --orange: #FF6B35;
  --white:  #ffffff;
  --off:    #F8F9FA;
  --border: #E5E7EB;
  --text:   #111827;
  --muted:  #6B7280;
  --dark:   #374151;

  --r:   8px;
  --r2:  12px;
  --r3:  16px;
  --sh:  0 2px 12px rgba(0,0,0,.08);
  --sh2: 0 8px 32px rgba(0,0,0,.12);
  --tr:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── CONTAINER ─────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #111;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 12px 24px;
  border-radius: var(--r);
  border: 2px solid var(--amber);
  transition: background var(--tr), transform .15s, box-shadow .15s;
}
.btn-solid:hover {
  background: #e08e00;
  border-color: #e08e00;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}
.btn-solid:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 12px 24px;
  border-radius: var(--r);
  border: 2px solid rgba(255,255,255,.65);
  transition: border-color var(--tr), background var(--tr), transform .15s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}

.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* ─── LABELS & ACCENTS ──────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.accent { color: var(--amber); }

/* ─── NAV ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 900;
  transition: background var(--tr), box-shadow var(--tr);
}
.nav.solid {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--sh);
}

.nav-wrap {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand span {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  transition: color var(--tr);
}
.brand strong { font-weight: 800; }
.nav.solid .brand span { color: var(--navy); }
.nav.solid .brand strong { color: var(--amber); }

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: #111;
  border-radius: var(--r);
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--tr), background var(--tr);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav.solid .nav-links a { color: var(--dark); }
.nav.solid .nav-links a:hover { color: var(--navy); background: var(--off); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color var(--tr);
}
.nav-tel:hover { color: var(--amber); }
.nav.solid .nav-tel { color: var(--navy); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: 8px;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: background var(--tr);
}
.nav.solid .nav-burger span { background: var(--navy); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.nav-mobile a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--tr), background var(--tr);
}
.nav-mobile a:hover { color: var(--navy); background: var(--off); }
.nav-mobile.open { display: flex; }

.mobile-tel {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 8px 16px 0;
  padding: 12px 16px !important;
  background: var(--amber) !important;
  color: #111 !important;
  border-radius: var(--r) !important;
  font-weight: 700 !important;
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.s {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.s-active { opacity: 1; }

.s img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.s-active img { animation: kenburns 6.5s ease-out forwards; }

@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.s-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,20,50,.72) 0%,
    rgba(10,20,50,.45) 55%,
    rgba(10,20,50,.2) 100%
  );
}

/* Hero body */
.hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10% 120px;
  max-width: 760px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
}

.dot-live {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-titles {
  position: relative;
  height: 140px;
  overflow: hidden;
  margin-bottom: 16px;
}
.hero-title {
  position: absolute;
  inset: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.hero-title.h-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-title em {
  font-style: normal;
  color: var(--amber);
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  letter-spacing: .2px;
}

.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero nav (counter + arrows) */
.hero-nav {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-count {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
}
.hero-arrows {
  display: flex;
  gap: 8px;
}
.hero-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background var(--tr), border-color var(--tr);
}
.hero-arrows button:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.7);
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 10%;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r2);
  padding: 14px 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.hero-stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.15);
}
#progBar {
  height: 100%;
  background: var(--amber);
  width: 0%;
}

/* ─── TRUST BAR ─────────────────────────────────────────────────── */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding-block: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}
.trust-item svg { color: var(--amber); flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── SECTION BASE ──────────────────────────────────────────────── */
.section     { padding: 96px 0; }
.section-alt { padding: 96px 0; background: var(--off); }

.sec-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}
.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-top: 4px;
}
.sec-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.65;
  flex-shrink: 0;
}

/* ─── FEATURE CARD ──────────────────────────────────────────────── */
.feat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--sh2);
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
.feat-card-img {
  min-height: 380px;
  overflow: hidden;
}
.feat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.feat-card:hover .feat-card-img img { transform: scale(1.04); }

.feat-card-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.feat-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 12px;
}
.feat-card-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.feat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}
.feat-list li svg { color: #22C55E; flex-shrink: 0; }

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  transition: gap var(--tr), color var(--tr);
}
.feat-link:hover { gap: 10px; color: var(--amber); }

/* ─── SVC ICON ──────────────────────────────────────────────────── */
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.svc-icon-amber  { background: #FEF3C7; color: #D97706; }
.svc-icon-blue   { background: #DBEAFE; color: #2563EB; }
.svc-icon-orange { background: #FFEDD5; color: #EA580C; }
.svc-icon-purple { background: #EDE9FE; color: #7C3AED; }
.svc-icon-green  { background: #DCFCE7; color: #16A34A; }
.svc-icon-gold   { background: rgba(245,158,11,.15); color: var(--amber2); }

/* ─── SERVICE GRID ──────────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh2);
  border-color: transparent;
}
.svc-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.svc-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.svc-card ul li {
  font-size: 12px;
  color: var(--dark);
  padding-left: 14px;
  position: relative;
}
.svc-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

/* Dark variant */
.svc-card-dark {
  background: var(--navy);
  border-color: var(--navy);
}
.svc-card-dark:hover { border-color: #2a4080; box-shadow: 0 8px 32px rgba(27,47,94,.3); }
.svc-card-dark h4 { color: var(--white); }
.svc-card-dark p  { color: rgba(255,255,255,.6); }

.acil-big {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin: 12px 0 20px;
  text-shadow: 0 0 40px rgba(245,158,11,.4);
}

.acil-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #111;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--r);
  transition: background var(--tr), transform .15s;
  margin-top: auto;
  border: none;
  cursor: pointer;
}
.acil-btn:hover { background: #e08e00; transform: translateY(-1px); }

.svc-card-img {
  margin: 16px -24px -28px;
  height: 160px;
  overflow: hidden;
  border-radius: 0 0 var(--r2) var(--r2);
  margin-top: auto;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }

/* ─── STATS BAR ─────────────────────────────────────────────────── */
.stats-bar { background: var(--navy); }

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding-block: 0;
}
.sbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 48px;
}
.sbar-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.sbar-item span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.sbar-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}

/* ─── ABOUT ─────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-imgs {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--r2);
  box-shadow: var(--sh2);
}
.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--r2);
  border: 6px solid var(--off);
  box-shadow: var(--sh2);
}
.about-badge {
  position: absolute;
  bottom: 80px;
  left: 16px;
  background: var(--amber);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.about-badge svg { flex-shrink: 0; }
.about-badge strong {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-badge span { font-size: 11px; }

.about-text h2 { margin-bottom: 16px; }
.about-text > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-text .btn-solid { margin-top: 8px; }

.about-sertler {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 28px;
}
.sertif {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 10px;
  text-align: center;
}
.sertif strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.sertif span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  margin-top: 3px;
  display: block;
}

.steps { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  min-width: 32px;
}
.step h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.step p { font-size: 13px; color: var(--muted); }

/* ─── REVIEWS ───────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.rcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  transition: transform .22s, box-shadow .22s;
}
.rcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh2);
}
.rcard > p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin-top: 16px;
}

.rcard-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.rcard-featured:hover { box-shadow: 0 8px 32px rgba(27,47,94,.3); }

.rcard-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rcard-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.rcard-info { flex: 1; }
.rcard-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.rcard-info span { font-size: 12px; color: var(--muted); }

.stars {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.rcard-quote {
  font-family: 'Georgia', serif;
  font-size: 72px;
  color: rgba(255,255,255,.12);
  line-height: .75;
  margin-bottom: 12px;
}
.rcard-featured-p {
  font-size: 16px !important;
  color: rgba(255,255,255,.9) !important;
  line-height: 1.7 !important;
  font-style: italic;
}

/* ─── GALLERY ───────────────────────────────────────────────────── */
.gallery {
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 12px;
  padding: 16px 0;
}
.gallery-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--r);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery:hover .gallery-track { animation-play-state: paused; }

/* ─── CONTACT ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 12px; }

.citem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: box-shadow var(--tr), border-color var(--tr), transform .15s;
}
a.citem:hover {
  box-shadow: var(--sh);
  border-color: #d1d5db;
  transform: translateX(3px);
}
.citem-plain { pointer-events: none; }

.citem > div:nth-child(2) { flex: 1; }
.citem strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.citem span   { font-size: 12px; color: var(--muted); }

.citem-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.citem-amber { background: #FEF3C7; color: #D97706; }
.citem-green { background: #DCFCE7; color: #16A34A; }
.citem-blue  { background: #DBEAFE; color: #2563EB; }

.citem-arr { color: var(--muted); margin-left: auto; flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 40px;
  box-shadow: var(--sh2);
}
.contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg   { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.fg label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .2px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
  resize: vertical;
  appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder { color: #9CA3AF; }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}

#fmsg {
  font-size: 13px;
  color: #16A34A;
  font-weight: 500;
  margin-top: 8px;
  min-height: 20px;
}

/* ─── ACIL BAND ─────────────────────────────────────────────────── */
.acil-band { background: var(--navy); }

.acil-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.acil-left { display: flex; align-items: center; gap: 20px; }
.acil-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,158,11,.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--amber);
  flex-shrink: 0;
}
.acil-left h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.acil-left p { font-size: 13px; color: rgba(255,255,255,.6); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer { background: #0f1e3d; padding-top: 64px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 280px;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #25D366;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 6px;
  padding: 8px 14px;
  transition: background var(--tr);
}
.footer-wa:hover { background: rgba(37,211,102,.2); }

.footer-h {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-ul { display: flex; flex-direction: column; gap: 8px; }
.footer-ul li a,
.footer-ul li span {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color var(--tr);
}
.footer-ul li a:hover { color: var(--amber); }

.footer-bar {
  text-align: center;
  padding: 20px 24px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ─── WA FLOAT ──────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: 13px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs { height: 380px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .feat-card { grid-template-columns: 1fr; }
  .feat-card-img { min-height: 260px; }
  .trust-inner { flex-wrap: wrap; }
  .trust-sep { display: none; }
  .trust-item { flex: 1 0 30%; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .hero-body { padding: 0 24px 160px; max-width: 100%; }
  .hero-titles { height: 110px; }
  .hero-stats { left: 16px; right: 16px; bottom: 64px; gap: 16px; padding: 12px 14px; }
  .hero-stat strong { font-size: 18px; }
  .hero-nav { bottom: 16px; right: 16px; }
  .hero-stat-sep { display: none; }

  .trust-item { flex: 1 0 calc(50% - 2px); border-bottom: 1px solid var(--border); }

  .section, .section-alt { padding: 64px 0; }
  .sec-top { flex-direction: column; align-items: flex-start; }
  .sec-sub { max-width: 100%; }

  .svc-grid { grid-template-columns: 1fr; }

  .stats-bar-inner { flex-wrap: wrap; }
  .sbar-sep { display: none; }
  .sbar-item { flex: 1 0 50%; border-bottom: 1px solid rgba(255,255,255,.08); }

  .about-sertler { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .acil-band-inner { justify-content: center; text-align: center; }
  .acil-left { flex-direction: column; gap: 12px; }

  .contact-form { padding: 24px; }
  .frow { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; justify-content: center; bottom: 88px; }
  .trust-item { flex: 1 0 100%; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .about-imgs { height: 320px; }
}
