/* ==========================================================================
   Batu Otomotiv — ana stil dosyası
   Renk kimliği: sarı (#FFC400) / siyah (#111111)
   ========================================================================== */

:root {
  --color-yellow: #ffc400;
  --color-yellow-dark: #e6ac00;
  --color-black: #111111;
  --color-black-soft: #1c1c1c;
  --color-charcoal: #2a2a2a;
  --color-white: #ffffff;
  --color-offwhite: #f7f5f0;
  --color-gray: #6b6b6b;
  --color-gray-light: #e4e2dc;
  --color-success: #1f9d55;

  --font-base: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.18);

  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, var(--color-black), #050505);
  transition: opacity 550ms ease;
}

.preloader.is-exiting {
  opacity: 0;
  pointer-events: none;
}

.preloader img {
  width: 180px;
  max-width: 55vw;
  height: auto;
  opacity: 0;
  transform: scale(0.86);
  animation: preloader-in 700ms cubic-bezier(.16,1,.3,1) forwards;
}

.preloader span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-yellow);
  opacity: 0;
  transform: scale(0.86);
  animation: preloader-in 700ms cubic-bezier(.16,1,.3,1) 150ms forwards;
}

@keyframes preloader-in {
  to { opacity: 1; transform: scale(1); }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section--offwhite {
  background: var(--color-offwhite);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--color-yellow);
  border-radius: 2px;
}

.section--dark .eyebrow {
  color: var(--color-yellow);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--color-gray);
  font-size: 17px;
}

.section--dark .section-head p {
  color: #c9c9c9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.section--dark .btn--outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.section--dark .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--ghost-link {
  background: transparent;
  color: var(--color-black);
  font-weight: 700;
  border-bottom: 2px solid var(--color-yellow);
  border-radius: 0;
  padding: 4px 2px;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

/* ============================== TOPBAR ============================== */
.topbar {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 13px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
}

.topbar__info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__info a,
.topbar__info span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d8d8d8;
}

.topbar__info a:hover {
  color: var(--color-yellow);
}

.topbar__socials {
  display: flex;
  gap: 12px;
}

.topbar__socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease, color 0.15s ease;
}

.topbar__socials a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

/* ============================== HEADER ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06), 0 2px 12px rgba(17, 17, 17, 0.03);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.logo__img {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}

.logo__img--footer {
  height: 60px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 3px;
}

.logo__text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.005em;
  color: var(--color-black);
  white-space: nowrap;
}

.logo__text span,
.logo__tagline {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  position: relative;
  padding: 6px 1px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  white-space: nowrap;
  border-radius: 0;
  background: none;
  transition: color 0.15s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  background: none;
  color: var(--color-black);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  background: none;
  color: var(--color-black);
  font-weight: 700;
}

.main-nav a.is-active::after {
  transform: scaleX(1);
}

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

@media (max-width: 1440px) {
  .header-actions .btn--outline {
    display: none;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-offwhite);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 84vw);
  height: 100%;
  background: var(--color-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-lg);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer__panel .main-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}

.mobile-drawer__panel .main-nav a {
  padding: 13px 10px;
  border-bottom: 1px solid var(--color-gray-light);
  border-radius: 0;
}

.mobile-drawer__panel .main-nav a::after {
  display: none;
}

.mobile-drawer__panel .main-nav a.is-active {
  color: var(--color-yellow-dark);
}

/* ============================== HERO ============================== */
.hero {
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.16), transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.35);
  color: var(--color-yellow);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  color: var(--color-white);
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-yellow);
}

.hero p {
  font-size: 17px;
  color: #cfcfcf;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #b9b9b9;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  max-width: 460px;
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: #ececec;
}

.hero__badge-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-yellow);
}

.hero__visual {
  position: relative;
}

.placeholder-photo {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--color-charcoal), #0c0c0c);
  border: 1px dashed rgba(255, 196, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #9a9a9a;
  font-size: 13px;
  padding: 24px;
  min-height: 340px;
}

.placeholder-photo svg {
  width: 40px;
  height: 40px;
  color: var(--color-yellow);
  opacity: 0.8;
}

.placeholder-photo strong {
  color: #e4e4e4;
  font-size: 14px;
}

.hero__visual .placeholder-photo {
  min-height: 420px;
}

.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-md);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.hero__visual .photo-frame {
  min-height: 420px;
}

.hero__visual .photo-frame img {
  min-height: 420px;
}

.hero__stat-card {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
}

.hero__stat-card strong {
  display: block;
  font-size: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-card span {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================== SERVICE STRIP ============================== */
.service-strip {
  background: var(--color-yellow);
}

.service-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.service-strip a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  transition: opacity 0.15s ease;
}

.service-strip a:last-child {
  border-right: none;
}

.service-strip a:hover {
  opacity: 0.65;
}

.service-strip svg {
  width: 17px;
  height: 17px;
}

/* ============================== SERVICES GRID ============================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-black);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--color-gray);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.service-card .card-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 2px;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.section-head-row .section-head {
  margin-bottom: 0;
}

/* ============================== NEDEN BİZ ============================== */
.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-list__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.14);
  color: var(--color-yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-list__icon svg {
  width: 22px;
  height: 22px;
}

.why-list h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}

.why-list p {
  color: var(--color-gray);
  font-size: 14.5px;
}

/* ============================== SİGORTA ============================== */
.insurance {
  background: var(--color-offwhite);
}

.insurance .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.insurance-partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.insurance-partner {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.insurance-partner svg {
  width: 26px;
  height: 26px;
  color: var(--color-yellow-dark);
}

.insurance-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.insurance-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--color-charcoal);
}

.insurance-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-yellow-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================== SÜREÇ ============================== */
.process {
  background: var(--color-black);
  color: var(--color-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.process-step {
  position: relative;
  padding: 28px 24px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-yellow);
  opacity: 0.85;
  margin-bottom: 12px;
}

.process-step h4 {
  color: var(--color-white);
  font-size: 16.5px;
  margin-bottom: 8px;
}

.process-step p {
  color: #b9b9b9;
  font-size: 14px;
}

/* ============================== STATS ============================== */
.stats {
  background: var(--color-yellow);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-black);
}

.stat-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================== CTA RANDEVU ============================== */
.cta-banner {
  background: var(--color-black);
  color: var(--color-white);
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}

.cta-banner p {
  color: #c9c9c9;
  max-width: 480px;
}

/* ============================== TESTIMONIALS ============================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--color-offwhite);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--color-gray-light);
}

.testimonial-card__stars {
  color: var(--color-yellow-dark);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 15px;
}

.testimonial-card p {
  font-size: 14.5px;
  color: var(--color-charcoal);
  margin-bottom: 18px;
  min-height: 66px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
}

.testimonial-card__author span {
  font-size: 12.5px;
  color: var(--color-gray);
}

.testimonials-note {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--color-gray);
  text-align: center;
}

/* ============================== FAQ ============================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 15.5px;
  text-align: left;
}

.faq-item__q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--color-yellow-dark);
}

.faq-item.is-open .faq-item__q svg {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item__a-inner {
  padding: 0 22px 20px;
  color: var(--color-gray);
  font-size: 14.5px;
}

/* ============================== İLETİŞİM ============================== */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
}

.contact-info-list {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--color-offwhite);
  border-radius: var(--radius-md);
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-black);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg {
  width: 21px;
  height: 21px;
}

.contact-info-item h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15.5px;
  font-weight: 600;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--color-black);
  color: #d6d6d6;
  padding-top: 72px;
}

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

.footer-brand .logo {
  align-items: flex-start;
}

.footer-brand .logo__text strong,
.footer-brand .logo__text span {
  color: var(--color-white);
}

.footer-brand .logo__text span {
  white-space: normal;
  max-width: 170px;
  line-height: 1.5;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: #a8a8a8;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.footer-socials a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a,
.footer-col span {
  font-size: 14px;
  color: #b7b7b7;
  transition: color 0.15s ease;
}

.footer-col li {
  display: flex;
  gap: 4px;
}

.footer-col a:hover {
  color: var(--color-yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 13px;
  color: #8f8f8f;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #8f8f8f;
}

.footer-bottom a:hover {
  color: var(--color-yellow);
}

.footer-legal-note {
  font-size: 12.5px;
  color: #7a7a7a;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 900px;
}

/* ============================== MOBILE STICKY BAR ============================== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-light);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
}

.mobile-action-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mobile-action-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-black);
  border-right: 1px solid var(--color-gray-light);
}

.mobile-action-bar a:last-child {
  border-right: none;
}

.mobile-action-bar svg {
  width: 20px;
  height: 20px;
  color: var(--color-yellow-dark);
}

.mobile-action-bar a.is-accent {
  background: var(--color-yellow);
}

.mobile-action-bar a.is-accent svg {
  color: var(--color-black);
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1220px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .why-us .container,
  .insurance .container,
  .contact .container {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .process-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .insurance-partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topbar__info span:last-child {
    display: none;
  }

  .mobile-action-bar {
    display: block;
  }

  body {
    padding-bottom: 62px;
  }
}

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

  .services-grid,
  .process-grid,
  .testimonials-grid,
  .stats .container {
    grid-template-columns: 1fr;
  }

  .insurance-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner .container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .service-strip a {
    flex: 1 1 45%;
    justify-content: center;
    padding: 14px 10px;
    font-size: 13px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .hero__badges {
    grid-template-columns: 1fr;
  }
}

/* ============================== GATEWAY / MARKA SEÇİM ============================== */
.gateway {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-black);
  color: var(--color-white);
}

.gateway__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 0;
}

.gateway__intro {
  text-align: center;
  max-width: 640px;
  margin: 48px auto 44px;
  padding: 0 24px;
}

.gateway__intro .eyebrow {
  justify-content: center;
  color: var(--color-yellow);
}

.gateway__intro h1 {
  color: var(--color-white);
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}

.gateway__intro p {
  color: #c9c9c9;
  font-size: 16px;
}

.gateway__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px 64px;
}

.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-black-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 196, 0, 0.4);
}

.brand-card__visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--color-charcoal), #0c0c0c);
  position: relative;
}

.brand-card__visual svg {
  width: 64px;
  height: 64px;
  color: var(--color-yellow);
  opacity: 0.9;
}

.brand-card__visual--photo {
  padding: 0;
  overflow: hidden;
}

.brand-card__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brand-card:hover .brand-card__visual--photo img {
  transform: scale(1.05);
}

.brand-card__body {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.brand-card__body h3 {
  color: var(--color-white);
  font-size: 21px;
  margin-bottom: 10px;
}

.brand-card__body p {
  color: #b9b9b9;
  font-size: 14.5px;
  margin-bottom: 20px;
  flex: 1;
}

.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-yellow);
}

.brand-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.brand-card:hover .brand-card__cta svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .gateway__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.gateway__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.gateway__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gateway__nav a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #d8d8d8;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.gateway__nav a:hover {
  background: rgba(255, 196, 0, 0.12);
  color: var(--color-yellow);
}

@media (max-width: 640px) {
  .gateway__header {
    flex-direction: column;
    gap: 14px;
  }

  .gateway__nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================== SİGORTA TICKER (KAYAN ŞERİT) ============================== */
.insurance-ticker {
  background: var(--color-black);
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.insurance-ticker__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 12px;
}

.insurance-ticker__mask {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.insurance-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 40px;
  animation: insurance-ticker-scroll 38s linear infinite;
}

.insurance-ticker__track:hover {
  animation-play-state: paused;
}

.insurance-ticker__item {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.insurance-ticker__item span {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ececec;
}

.insurance-ticker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-yellow);
  flex-shrink: 0;
}

@keyframes insurance-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .insurance-ticker__track {
    animation: none;
  }
}
