/* ============================================================
   GÜRER ULUSLARARASI NAKLİYAT — style.css
   Navy / White / Gold premium corporate theme
   ============================================================ */

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

:root {
  --navy:          #0d1e3a;
  --navy-dark:     #06101e;
  --navy-mid:      #142848;
  --navy-light:    #1e3a5f;
  --red:           #c0001a;
  --red-light:     #e8001f;
  --gold:          #c9a84c;
  --gold-light:    #e2c472;
  --white:         #ffffff;
  --gray-50:       #f4f5f9;
  --gray-100:      #e8eaf0;
  --gray-200:      #d0d4df;
  --gray-400:      #8e95a8;
  --gray-600:      #555f75;
  --text:          #1a2235;
  --text-muted:    #5a6278;
  --shadow-sm:     0 2px 8px rgba(13,30,58,.08);
  --shadow-md:     0 6px 24px rgba(13,30,58,.12);
  --shadow-lg:     0 16px 48px rgba(13,30,58,.18);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    .3s ease;
  --slider-duration: 6000ms;
  --header-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  font-size: .9rem;
  padding: 13px 28px;
}
.btn-cta {
  background: var(--red);
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(192,0,26,.35);
}
.btn-cta:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,0,26,.4); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white) !important;
  background: transparent;
  padding: 11px 26px;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-wa {
  background: #25D366;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); }
.btn-wa-sm {
  background: #25D366;
  color: var(--white) !important;
  padding: 10px 20px;
  font-size: .85rem;
}
.btn-wa-sm:hover { background: #1ebe5c; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-full { width: 100%; padding: 15px; font-size: 1rem; }

/* ── SECTION TYPOGRAPHY ───────────────────────────────────── */
.section { padding: 96px 0; }
.section-bg   { background: var(--gray-50); }
.section-navy { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-tag--gold { color: var(--gold-light); }
.section-tag--gold::before { background: var(--gold-light); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title mark {
  background: none;
  color: var(--red);
}
.section-title--light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}
.section-desc--light { color: rgba(255,255,255,.65); }

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Transparent on dark hero */
.header:not(.scrolled) .logo-name   { color: var(--red); }
.header:not(.scrolled) .logo-sub    { color: rgba(255,255,255,.7); }
.header:not(.scrolled) .nav-link    { color: rgba(255,255,255,.88); }
.header:not(.scrolled) .nav-cta     { display: none; }
.header:not(.scrolled) .burger span { background: var(--white); }

/* Scrolled — solid white */
.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.header.scrolled .logo-name   { color: var(--red); }
.header.scrolled .logo-sub    { color: var(--text-muted); }
.header.scrolled .nav-link    { color: var(--gray-600); }
.header.scrolled .nav-link:hover { color: var(--red); background: var(--gray-50); }
.header.scrolled .nav-cta     { display: inline-flex; }
.header.scrolled .burger span { background: var(--navy); }

/* ── Logo — tek kelime wordmark ──────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--red);
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  color: rgba(255,255,255,.88);
}
.nav-cta {
  margin-left: 8px;
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--red-light); transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  transition: all var(--transition);
}
.burger span:nth-child(1) { width: 28px; }
.burger span:nth-child(2) { width: 20px; }
.burger span:nth-child(3) { width: 24px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 28px; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 28px; }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-drawer a:hover { background: var(--gray-50); color: var(--red); }
.nav-drawer a:last-child {
  margin-top: 6px;
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
}
.nav-drawer a:last-child:hover { background: var(--red-light); }

/* ── HERO SLIDER ──────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.slider-track { position: absolute; inset: 0; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.slide.is-active { opacity: 1; z-index: 2; pointer-events: auto; }
.slide.is-prev   { opacity: 0; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease-out;
}
.slide.is-active .slide-bg { transform: scale(1); }

/* Slide background images */
.slide--1 .slide-bg { background-image: url('images/slider1.jpg'); }
.slide--2 .slide-bg { background-image: url('images/slider2.jpg'); }
.slide--3 .slide-bg { background-image: url('images/slider3.jpg'); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,16,30,.9) 0%, rgba(13,30,58,.75) 60%, rgba(6,16,30,.35) 100%);
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: var(--header-h);
}
.slide-inner { max-width: 680px; }

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.slide-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.slide-tag svg { width: 12px; height: 12px; }

.slide-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.slide-accent { color: var(--gold); font-style: normal; }

.slide-desc {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 5px 14px 5px 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.hero-badge svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-arrow--prev { left: 24px; }
.slider-arrow--next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 32px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  border: none;
  transition: background var(--transition);
}
.slider-dot.is-active { background: rgba(255,255,255,.2); }
.dot-progress {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
}
.slider-dot.is-active .dot-progress {
  animation: dotProgress var(--slider-duration) linear forwards;
}
@keyframes dotProgress { to { width: 100%; } }

/* Scroll hint */
.slider-scroll-hint {
  position: absolute;
  bottom: calc(108px + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition);
}
.slider-scroll-hint:hover { color: rgba(255,255,255,.9); }
.slider-scroll-hint span { display: block; }
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80%       { transform: translateY(8px); opacity: 0; }
}

/* Stats bar inside hero */
.slider-statsbar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 10;
  background: rgba(6,16,30,.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.statsbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0;
  gap: 0;
}
.statsbar-item {
  padding: 8px 36px;
  text-align: center;
}
.statsbar-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.statsbar-item span {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}
.statsbar-sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.12);
  align-self: center;
}

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  color: rgba(255,255,255,.82);
  font-size: .83rem;
  font-weight: 600;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,.15);
  align-self: center;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content .section-tag  { margin-bottom: 10px; }
.about-content .section-title { margin-bottom: 18px; }
.about-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.check-icon {
  width: 22px; height: 22px;
  background: rgba(192,0,26,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; }

/* Stat cards */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card--wide  { grid-column: 1 / -1; }
.stat-card--accent {
  background: var(--navy);
  border-color: var(--navy);
}
.stat-num {
  display: inline;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-plus {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
}
.stat-card--accent .stat-num  { color: var(--gold); }
.stat-card--accent .stat-plus { color: var(--gold-light); }
.stat-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-card--accent .stat-label { color: rgba(255,255,255,.6); }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(192,0,26,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon {
  background: var(--red);
  color: var(--white);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.service-tags li {
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--gray-100);
}

/* ── COUNTRIES GRID ──────────────────────────────────────── */
.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.country-card {
  flex: 0 1 calc(25% - 15px);
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.country-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.country-flag {
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.country-flag img {
  width: 100%;
  max-width: 120px;
  height: 76px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
  display: block;
}

.country-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.country-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

@media (max-width: 1024px) { .country-card { flex: 0 1 calc(33.333% - 14px); } }
@media (max-width: 600px)  { .country-card { flex: 0 1 calc(50% - 10px); min-width: 140px; } }

/* ── WHY US ───────────────────────────────────────────────── */
.section-navy .section-header { margin-bottom: 48px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── PROCESS ──────────────────────────────────────────────── */
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 48px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.process-step { text-align: center; padding: 0 8px; position: relative; }
.step-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 800;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(192,0,26,.4);
}
.step-icon {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  margin: 12px auto 20px;
  transition: all var(--transition);
}
.step-icon svg { width: 26px; height: 26px; }
.process-step:hover .step-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: scale(1.06);
}
.process-step h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars svg { width: 16px; height: 16px; }
.testimonial-card blockquote {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  padding: 0;
  border: none;
  margin: 0 0 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 18px;
}
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author > div strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); }
.testimonial-author > div span   { display: block; font-size: .78rem; color: var(--text-muted); margin-top: 1px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: start;
}
.faq-container .section-header {
  text-align: left;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  margin-bottom: 0;
}
.faq-container .section-header .section-tag::before { display: none; }
.faq-container .section-header .section-desc { margin-inline: 0; max-width: 400px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.open { border-color: var(--navy); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  text-align: left;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
  background: none;
  border: none;
  font-family: inherit;
}
.faq-q span { flex: 1; }
.faq-q:hover { background: var(--gray-50); }
.faq-item.open .faq-q { background: var(--gray-50); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p {
  padding: 0 20px 20px;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── QUOTE FORM ───────────────────────────────────────────── */
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.quote-info .section-tag   { margin-bottom: 10px; }
.quote-info .section-title { margin-bottom: 14px; }
.quote-info .section-desc  { margin: 0 0 24px; max-width: none; }
.quote-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin-bottom: 28px;
}
.quote-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.quote-promises svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Form card */
.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,30,58,.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { appearance: none; }
.quote-form .btn-full { margin-top: 4px; }
.form-note {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.contact-card:not(.contact-card--plain):hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cc-icon--navy  { background: rgba(13,30,58,.1);   color: var(--navy); }
.cc-icon--green { background: rgba(37,211,102,.12); color: #16a34a; }
.cc-icon--soft  { background: rgba(201,168,76,.12); color: var(--gold); }
.cc-icon svg { width: 20px; height: 20px; }
.cc-body { flex: 1; min-width: 0; }
.cc-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.cc-value { display: block; font-size: .95rem; font-weight: 700; color: var(--navy); }
.cc-hint  { display: block; font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.cc-arrow { width: 18px; height: 18px; color: var(--gray-400); align-self: center; flex-shrink: 0; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: none;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
}
.footer-top { padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,.6); border-color: var(--gold-light); }
.footer-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 18px 0 20px;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--white); }
.footer-contact-link svg { color: var(--gold); flex-shrink: 0; }

.footer-nav-title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-nav ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer-nav a,
.footer-services a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-nav a:hover,
.footer-services a:hover { color: var(--white); padding-left: 4px; }

.footer-cta { display: flex; flex-direction: column; gap: 12px; }
.footer-cta p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-top: 2px; }
.footer-cta .btn-cta,
.footer-cta .btn-wa-sm { justify-content: center; border-radius: var(--radius-sm); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ── FAB BUTTONS ──────────────────────────────────────────── */
.fab-wa,
.fab-top {
  position: fixed;
  right: 28px;
  z-index: 800;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), opacity var(--transition);
}
.fab-wa {
  bottom: 84px;
  background: #25D366;
  color: var(--white);
}
.fab-wa:hover { transform: scale(1.1); }
.fab-wa svg { width: 26px; height: 26px; }
.fab-top {
  bottom: 28px;
  background: var(--navy);
  color: var(--white);
  border: none;
  opacity: 0;
  pointer-events: none;
}
.fab-top.visible { opacity: 1; pointer-events: auto; }
.fab-top:hover { transform: translateY(-3px); }
.fab-top svg { width: 20px; height: 20px; }

/* ── MOBILE STICKY CTA ────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  grid-template-columns: 1fr 1.2fr 1fr;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 20px rgba(13,30,58,.12);
}
.mobile-cta-call,
.mobile-cta-quote,
.mobile-cta-wa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 8px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: background var(--transition);
  text-decoration: none;
}
.mobile-cta-call  { color: var(--navy); }
.mobile-cta-quote { background: var(--red); color: var(--white); }
.mobile-cta-wa    { color: #16a34a; }
.mobile-cta-call:hover  { background: var(--gray-50); }
.mobile-cta-quote:hover { background: var(--red-light); }
.mobile-cta-wa:hover    { background: rgba(37,211,102,.08); }
.mobile-cta svg { width: 20px; height: 20px; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Staggered reveal via --delay CSS var */
[style*="--delay"] { transition-delay: var(--delay, 0s); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }

  /* Header */
  .nav, .nav-cta { display: none !important; }
  .burger { display: flex; }

  /* Hero */
  .slide-title { font-size: 1.9rem; }
  .slide-desc  { font-size: .95rem; }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow--prev { left: 12px; }
  .slider-arrow--next { right: 12px; }
  .statsbar-item { padding: 8px 20px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-line  { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  /* FAQ */
  .faq-container { grid-template-columns: 1fr; gap: 36px; }
  .faq-container .section-header { position: static; }

  /* Quote */
  .quote-wrap { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-wrap iframe { height: 360px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }

  body { padding-bottom: 56px; }

  .section { padding: 56px 0; }

  /* Hero */
  .slide-title   { font-size: 1.65rem; }
  .slide-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-badges   { display: none; }
  .slider-dots   { bottom: 60px; }
  .slider-scroll-hint { display: none; }
  .statsbar-inner { gap: 0; flex-wrap: nowrap; overflow: hidden; }
  .statsbar-item  { padding: 6px 10px; flex-shrink: 0; }
  .statsbar-item strong { font-size: 1.15rem; }
  .statsbar-sep   { height: 24px; }

  /* Trust */
  .trust-sep  { display: none; }
  .trust-item { padding: 6px 14px; font-size: .78rem; }

  /* Grids → single column */
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps     { grid-template-columns: 1fr; }

  /* Form */
  .form-row  { grid-template-columns: 1fr; }
  .quote-form { padding: 24px 18px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* FABs above mobile CTA bar */
  .fab-top { bottom: calc(56px + 12px); }
  .fab-wa  { display: none; } /* mobile-cta has WhatsApp button */

  /* Show mobile CTA */
  .mobile-cta { display: grid; }
}

/* ── FORM SPINNER ─────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ACCESSIBILITY ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
