@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ============================================================
   YAMAÇ TURİZM — Main Stylesheet
   PHP 8.2+ | Lacivert + Turuncu Tema
   ============================================================ */

:root {
  --navy:        #0B1F3A;
  --navy-mid:    #132947;
  --navy-light:  #1C3A60;
  --orange:      #E8601C;
  --orange-dark: #C44E12;
  --orange-glow: rgba(232,96,28,0.15);
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --text-muted:  #8A9BB0;
  --border:      rgba(255,255,255,0.08);
  --border-light:#D8E0EC;
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 32px rgba(11,31,58,0.18);
  --shadow-card: 0 2px 16px rgba(11,31,58,0.10);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--text-muted); transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-item svg { flex-shrink: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.site-logo span { color: var(--orange); }
.site-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a,
.nav-dropdown > button {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .02em;
}
.nav-links a:hover,
.nav-dropdown > button:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active { color: var(--orange); }

.nav-dropdown {
  position: relative;
}
.nav-dropdown > button::after {
  content: '▾';
  margin-left: 4px;
  font-size: 11px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 200px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  transition: background .15s, color .15s;
  border-bottom: 1px solid var(--border);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--orange); color: var(--white); }

.nav-cta {
  margin-left: 12px;
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
  transition: background .2s, transform .1s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.30;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,31,58,0.95) 40%, rgba(11,31,58,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 20px;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,96,28,0.35);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 6px 28px rgba(232,96,28,0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-off { background: var(--off-white); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 16px;
}
.section-title em { color: var(--orange); font-style: normal; }
.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #4A5E78;
  max-width: 600px;
}
.section-dark .section-desc { color: var(--text-muted); }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--orange);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.01em;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  margin-top: 4px;
  font-weight: 400;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.feature-card:hover {
  box-shadow: 0 8px 40px rgba(11,31,58,0.14);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { color: var(--orange); }
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: #5A6F87;
  line-height: 1.65;
}

/* ============================================================
   SERVICE CARDS (Ana Sayfa)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.04); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.30) 65%, transparent 100%);
}
.service-card-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}
.service-card-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}
.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about-badge-text {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.about-checks { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--white);
}
.about-check::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   PAGE HERO (İç sayfalar)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,96,28,0.12) 0%, transparent 70%);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.page-hero-title em { color: var(--orange); font-style: normal; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-section {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-section.light {
  background: var(--white);
  border: 1px solid var(--border-light);
}
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-section.light .form-title { color: var(--navy); }
.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-section.light .form-subtitle { color: #5A6F87; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  margin-bottom: 7px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.form-section.light .form-label { color: #5A6F87; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-section.light .form-control {
  background: var(--off-white);
  border-color: var(--border-light);
  color: var(--navy);
}
.form-control::placeholder { color: rgba(255,255,255,0.30); }
.form-section.light .form-control::placeholder { color: #9BACC0; }
.form-control:focus {
  border-color: var(--orange);
  background: rgba(232,96,28,0.06);
}
.form-section.light .form-control:focus {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,96,28,0.10);
}
textarea.form-control { resize: vertical; min-height: 110px; }
.form-file-wrap {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s;
}
.form-section.light .form-file-wrap { border-color: var(--border-light); }
.form-file-wrap:hover { border-color: var(--orange); }
.form-file-wrap input[type="file"] { display: none; }
.form-file-label {
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}
.form-file-label strong { color: var(--orange); }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Flash messages */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: rgba(30,160,90,0.15); color: #1EA05A; border: 1px solid rgba(30,160,90,0.3); }
.alert-error   { background: rgba(220,50,50,0.12); color: #DC3232;  border: 1px solid rgba(220,50,50,0.25); }

/* ============================================================
   INFO CARDS (Hizmet detay sayfaları)
   ============================================================ */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, transform .25s;
}
.info-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.info-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.info-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   DRIVER LIST
   ============================================================ */
.driver-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.driver-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.driver-item::before {
  content: '';
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { color: var(--orange); }
.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 15px; color: var(--white); line-height: 1.5; }
.contact-info-value a { color: var(--white); transition: color .2s; }
.contact-info-value a:hover { color: var(--orange); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--text-muted);
  padding: 60px 0 0;
  border-top: 3px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-item a { color: var(--text-muted); transition: color .2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* ============================================================
   ABOUT PAGE — MISSION/VISION
   ============================================================ */
.mvh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvh-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.mvh-card.orange { background: var(--orange); }
.mvh-card.navy   { background: var(--navy-light); border: 1px solid var(--border); }
.mvh-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  opacity: .10;
  position: absolute;
  right: 12px;
  bottom: -8px;
  line-height: 1;
  color: var(--white);
}
.mvh-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: .03em;
  position: relative;
}
.mvh-card-text { font-size: 14px; color: rgba(255,255,255,0.80); line-height: 1.7; position: relative; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform .3s;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ============================================================
   LAYOUT YARDIMCI SINIFLARI (inline style yerine)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-form {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.driver-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap    { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .mvh-grid          { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .two-col           { grid-template-columns: 1fr; gap: 40px; }
  .two-col-center    { grid-template-columns: 1fr; gap: 40px; }
  .two-col-form      { grid-template-columns: 1fr; gap: 40px; }
  .driver-detail-grid{ grid-template-columns: 1fr; gap: 24px; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-mid);
    padding: 24px;
    z-index: 800;
    overflow-y: auto;
    gap: 4px;
  }
  .nav-links.open a,
  .nav-links.open .nav-dropdown > button {
    font-size: 18px;
    padding: 14px 16px;
    width: 100%;
    text-align: left;
  }
  .nav-links.open .nav-dropdown > button {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    margin-top: 4px;
    margin-left: 16px;
  }
  .nav-cta    { display: none; }
  .nav-toggle { display: flex; }
  .topbar     { display: none; }

  /* HERO */
  .hero         { min-height: 460px; }
  .hero-content { padding: 48px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* LAYOUT */
  .two-col,
  .two-col-center,
  .two-col-form,
  .driver-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid      { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .services-grid      { grid-template-columns: 1fr; }
  .info-cards-grid    { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .gallery-grid       { grid-template-columns: 1fr; }
  .mvh-grid           { grid-template-columns: 1fr; }

  /* FORM */
  .form-row     { grid-template-columns: 1fr; }
  .form-section { padding: 24px 16px; }
  .form-title   { font-size: 22px; }

  /* STATS */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num   { font-size: 40px; }
  .stat-item  { padding: 12px 8px; }

  /* SECTION */
  .section    { padding: 48px 0; }
  .section-sm { padding: 36px 0; }

  /* CONTACT */
  .contact-grid       { grid-template-columns: 1fr; }
  .contact-info-block { gap: 16px; }

  /* ABOUT */
  .about-badge-box    { position: static; margin-top: 16px; display: inline-block; }

  /* PAGE HERO */
  .page-hero        { padding: 40px 0 32px; }
  .page-hero-title  { font-size: 36px; }

  /* GENEL TAŞMA ÖNLEME */
  .container { padding: 0 16px; }
  * { max-width: 100%; }
  img { max-width: 100%; height: auto; }

  /* İç sayfa yan yana mini stat kutuları */
  .mini-stats-row { flex-direction: column !important; }
  .mini-stats-row > div { min-width: unset !important; }
}

@media (max-width: 480px) {
  .hero-title      { font-size: 40px; }
  .section-title   { font-size: 28px; }
  .features-grid   { grid-template-columns: 1fr; }
  .stat-num        { font-size: 36px; }
  .btn-lg          { padding: 13px 22px; font-size: 15px; }
  .service-card    { min-height: 300px; }
  .service-card-title { font-size: 26px; }
  .form-section    { padding: 20px 14px; }
  .stats-bar       { padding: 24px 0; }
}
