/* =============================================
   Istanbul Airport Transfer 365
   Main Stylesheet — SEO Optimized, Fast Load
   Color: #1A3C5E (Navy) + #F4A623 (Gold) + #F8F9FA (Light BG)
   ============================================= */

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

:root {
  --navy:      #1A3C5E;
  --navy-dark: #0F2540;
  --navy-light:#2A5080;
  --gold:      #F4A623;
  --gold-dark: #D4891A;
  --white:     #FFFFFF;
  --bg:        #F8F9FA;
  --bg2:       #EEF2F7;
  --text:      #2D2D2D;
  --text-light:#6B7280;
  --border:    #DEE2E6;
  --shadow:    0 4px 24px rgba(26,60,94,0.10);
  --shadow-lg: 0 8px 40px rgba(26,60,94,0.16);
  --radius:    12px;
  --radius-sm: 8px;
  --transition:0.3s ease;
}

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

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ───────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-light); }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { color: var(--navy); margin-bottom: 12px; }
.section-title p  { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.gold-line {
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,166,35,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

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

/* ── Header / Navigation ──────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,60,94,0.08);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: 0 4px 24px rgba(26,60,94,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon svg { width: 26px; height: 26px; fill: var(--gold); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text span:first-child {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover { color: var(--navy); background: var(--bg); }
.nav-link.active { color: var(--navy); font-weight: 700; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--bg); color: var(--navy); }
.dropdown a .icon { width: 20px; height: 20px; color: var(--gold); }

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.lang-btn:hover { border-color: var(--navy); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
}
.lang-dropdown a:hover { background: var(--bg); }
.lang-dropdown a.active { color: var(--navy); font-weight: 600; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Section ─────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bosphorus-bridge-night.jpg') center/cover no-repeat;
  opacity: 0.2;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(244,166,35,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,166,35,0.15);
  border: 1px solid rgba(244,166,35,0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-text h1 span { color: var(--gold); }

.hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item { text-align: center; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Booking Card */
.booking-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.booking-card h3 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,60,94,0.08);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group .input-icon {
  position: relative;
}
.form-group .input-icon input {
  padding-left: 40px;
}
.form-group .input-icon svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-light);
}

/* ── Services Section ─────────────────────── */
#services {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition);
}

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

.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
}

.service-icon svg {
  width: 28px; height: 28px;
  color: var(--navy);
  transition: var(--transition);
}

.service-card:hover .service-icon svg { color: var(--gold); }

.service-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: 10px; }

/* ── Why Us Section ───────────────────────── */
#why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-image img {
  border-radius: 20px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 16px;
  padding: 16px 20px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.why-badge span { font-size: 2rem; display: block; font-weight: 900; }

.why-content h2 { color: var(--navy); margin-bottom: 16px; }
.why-content > p { margin-bottom: 36px; }

.feature-list { display: flex; flex-direction: column; gap: 20px; }

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  width: 36px; height: 36px;
  min-width: 36px;
  background: rgba(244,166,35,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-check svg { width: 18px; height: 18px; color: var(--gold); }

.feature-item h4 { color: var(--navy); margin-bottom: 4px; }
.feature-item p  { font-size: 0.9rem; }

/* ── Vehicles Section ─────────────────────── */
#vehicles {
  padding: 100px 0;
  background: var(--bg);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vehicle-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg2), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vehicle-img img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-img .vehicle-placeholder {
  font-size: 4rem;
}

.vehicle-info { padding: 24px; }
.vehicle-info h3 { color: var(--navy); margin-bottom: 8px; }

.vehicle-specs {
  display: flex;
  gap: 16px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.spec svg { width: 14px; height: 14px; color: var(--gold); }

.vehicle-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.price-from { font-size: 0.8rem; color: var(--text-light); }
.price-value { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.price-value span { font-size: 0.8rem; font-weight: 400; }

/* ── How It Works ─────────────────────────── */
#how-it-works {
  padding: 100px 0;
  background: var(--navy);
}

#how-it-works .section-title h2 { color: var(--white); }
#how-it-works .section-title p  { color: rgba(255,255,255,0.7); }
#how-it-works .gold-line        { background: var(--gold); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(244,166,35,0.25);
}

.step-item { text-align: center; position: relative; }

.step-number {
  width: 80px; height: 80px;
  background: rgba(244,166,35,0.1);
  border: 2px solid rgba(244,166,35,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  position: relative;
  z-index: 1;
  background: var(--navy);
  transition: var(--transition);
}

.step-item:hover .step-number {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.step-item h4 { color: var(--white); margin-bottom: 8px; }
.step-item p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── Testimonials ─────────────────────────── */
#testimonials {
  padding: 100px 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star  { color: var(--gold); font-size: 1rem; }

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

.reviewer-name  { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.reviewer-info  { font-size: 0.8rem; color: var(--text-light); }

/* ── Popular Routes ───────────────────────── */
#popular-routes {
  padding: 100px 0;
  background: var(--bg);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.route-card:hover {
  transform: translateX(4px);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.route-info h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.route-info p  { font-size: 0.8rem; color: var(--text-light); }

.route-price { font-size: 1.2rem; font-weight: 800; color: var(--gold); }

/* ── FAQ Section ──────────────────────────── */
#faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active { border-color: var(--navy); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}

.faq-question:hover { background: var(--bg); }
.faq-question h4 { font-size: 0.95rem; color: var(--text); flex: 1; }

.faq-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-left: 16px;
}

.faq-item.active .faq-icon { background: var(--navy); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; color: var(--text); }
.faq-item.active .faq-icon svg { color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── CTA Banner ───────────────────────────── */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
}

.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p  { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px; }
.cta-buttons    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────── */
#footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p     { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); }
.social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.social-link:hover svg { color: var(--navy-dark); }

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}
.contact-item svg   { width: 16px; height: 16px; color: var(--gold); min-width: 16px; margin-top: 2px; }
.contact-item span  { color: rgba(255,255,255,0.6); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── WhatsApp Float Button ────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

.whatsapp-tooltip {
  background: var(--white);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

/* ── Breadcrumb ───────────────────────────── */
.breadcrumb {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.breadcrumb a   { color: var(--text-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--text-light); }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

/* ── Page Hero (inner pages) ──────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(244,166,35,0.08), transparent 70%);
}

.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb a,
.page-hero .breadcrumb span,
.page-hero .breadcrumb .current { color: rgba(255,255,255,0.7); }

.page-hero h1 { color: var(--white); margin-bottom: 16px; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 1.1rem; position: relative; }

/* ── Service Page Layout ──────────────────── */
/* layout-service-grid: PHP dosyalarından inline style kaldırılıp buraya taşındı */
.layout-service-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* ── Review Stars ─────────────────────────── */
.review-stars { display:flex; gap:3px; margin-bottom:8px; }
.review-star  { color:var(--gold); font-size:1rem; }
.review-card  {
  background:var(--bg);
  border-radius:var(--radius);
  padding:24px;
  border:1px solid var(--border);
}
.review-card p { font-style:italic; margin:8px 0 16px; }
.review-author { font-weight:600; font-size:.9rem; color:var(--navy); }
.review-date   { font-size:.8rem; color:var(--text-light); }

/* ── Related Services ─────────────────────── */
.related-services {
  padding:60px 0;
  background:var(--bg);
  border-top:1px solid var(--border);
}
.related-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
  margin-top:28px;
}
.related-card {
  background:var(--white);
  border-radius:var(--radius);
  padding:20px;
  text-decoration:none;
  border:1px solid var(--border);
  transition:var(--transition);
  display:flex;
  align-items:center;
  gap:14px;
}
.related-card:hover { border-color:var(--gold); box-shadow:var(--shadow); transform:translateY(-2px); }
.related-card-icon  { font-size:1.8rem; flex-shrink:0; }
.related-card-text strong { display:block; color:var(--navy); font-size:.95rem; }
.related-card-text span   { font-size:.82rem; color:var(--text-light); }

/* ── Animations ───────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }

/* ── Utilities ────────────────────────────── */
.text-navy  { color: var(--navy); }
.text-gold  { color: var(--gold); }
.text-light { color: var(--text-light); }
.bg-navy    { background: var(--navy); }
.bg-gold    { background: var(--gold); }
.bg-light   { background: var(--bg); }
.text-center{ text-align: center; }
.mt-8       { margin-top: 8px; }
.mt-16      { margin-top: 16px; }
.mt-24      { margin-top: 24px; }
.mb-8       { margin-bottom: 8px; }
.mb-16      { margin-bottom: 16px; }
.mb-24      { margin-bottom: 24px; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .hero-content    { grid-template-columns: 1fr; gap: 40px; }
  .why-grid        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .steps-grid      { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .service-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .service-layout > aside {
    order: -1 !important;
    position: static !important;
    width: 100% !important;
  }
  .service-layout > article {
    order: 1 !important;
    width: 100% !important;
  }
  /* layout-service-grid: flex column + form (aside) EN ÜSTE */
  .layout-service-grid  {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .layout-service-grid > aside {
    order: -1 !important;       /* Formu içerikten önce göster */
    position: static !important;
    width: 100% !important;
  }
  .layout-service-grid > article {
    order: 1 !important;
    width: 100% !important;
  }
  .layout-service-grid > div {
    position: static !important;
    width: 100% !important;
  }
  /* Booking card mobilde tam genişlik */
  .layout-service-grid .booking-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}

/* Tüm inline grid'leri mobilde düzelt (dil sayfaları dahil) */
@media (max-width: 1024px) {
  /* EN/TR/DE/RU/FR — 1fr 380px sidebar */
  div[style*="grid-template-columns:1fr 380px"],
  div[style*="grid-template-columns: 1fr 380px"],
  /* AR RTL — 380px 1fr sidebar */
  div[style*="grid-template-columns:380px 1fr"],
  div[style*="grid-template-columns: 380px 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  div[style*="grid-template-columns:1fr 380px"] > *,
  div[style*="grid-template-columns: 1fr 380px"] > *,
  div[style*="grid-template-columns:380px 1fr"] > *,
  div[style*="grid-template-columns: 380px 1fr"] > * {
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
  }
  /* 2 kolon inline grid'ler */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
  /* Footer tablet'te 1 kolona geç */
  .footer-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  /* Header & Nav */
  .nav-menu        { display: none; }
  .header-cta .phone-link { display: none; }
  .hamburger       { display: flex; }
  .header-inner    { height: 64px; }
  #hero            { padding-top: 64px; }

  /* Mobile Nav Overlay */
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 16px;
    overflow-y: auto;
    z-index: 999;
    gap: 0;
  }
  .nav-item   { width: 100%; }
  .nav-link   { padding: 14px 12px; font-size: 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-link:last-child { border-bottom: none; }
  .dropdown   {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--bg); border-radius: var(--radius-sm);
    margin: 4px 0 8px;
  }
  .dropdown a { padding: 10px 12px; font-size: 0.9rem; }
  .lang-dropdown { right: auto; left: 0; }

  /* Sections */
  #services, #why-us, #vehicles, #how-it-works,
  #testimonials, #popular-routes, #faq { padding: 60px 0; }
  #cta-banner  { padding: 60px 0; }

  /* Hero */
  .hero-content    { padding: 48px 0 32px; }
  .hero-stats      { gap: 16px 20px; margin-top: 32px; padding-top: 24px; }
  .stat-number     { font-size: 1.6rem; }
  .hero-buttons    { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Booking card */
  .booking-card    { padding: 24px 16px; border-radius: var(--radius); }
  .form-row        { grid-template-columns: 1fr; }

  /* Why Us */
  .why-grid        { grid-template-columns: 1fr; gap: 40px; }
  .why-badge       { bottom: 10px; right: 10px; font-size: 0.8rem; padding: 12px 14px; }
  .why-badge span  { font-size: 1.5rem; }

  /* Steps */
  .steps-grid      { grid-template-columns: repeat(2,1fr); gap: 20px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

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

  /* CTA */
  .cta-buttons     { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .cta-buttons .btn { justify-content: center; }

  /* Page hero */
  .page-hero       { padding: 96px 0 40px; }

  /* WhatsApp float */
  .whatsapp-float  { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .container       { padding: 0 14px; }

  /* Logo */
  .logo-text span:last-child { display: none; }

  /* Header btn */
  .header-cta .btn-primary { font-size: 0.82rem; padding: 9px 14px; }

  /* Sections */
  #services, #why-us, #vehicles, #how-it-works,
  #testimonials, #popular-routes, #faq { padding: 48px 0; }
  .section-title   { margin-bottom: 32px; }

  /* Hero */
  .hero-stats      { gap: 12px 16px; }
  .stat-number     { font-size: 1.4rem; }
  .hero-badge      { font-size: 0.78rem; padding: 6px 12px; }

  /* Steps */
  .steps-grid      { grid-template-columns: 1fr; }

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

  /* Route cards */
  .routes-grid     { grid-template-columns: 1fr; }

  /* Service cards */
  .services-grid   { grid-template-columns: 1fr; }

  /* Vehicles */
  .vehicles-grid   { grid-template-columns: 1fr; }

  /* WhatsApp float */
  .whatsapp-float a { width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .whatsapp-float { bottom: 16px; right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .routes-grid   { grid-template-columns: 1fr; }
}

/* ── Inline Style Replacement Utilities ──── */
.text-navy   { color: var(--navy); }
.text-gold   { color: var(--gold); }
.text-light  { color: var(--text-light); }
.bg-bg       { background: var(--bg); }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-36 { margin-bottom: 36px; }
.mt-36 { margin-top: 36px; }
.mt-16 { margin-top: 16px; }
.fw-800 { font-weight: 800; }
.fs-09  { font-size: .9rem; }
.fs-088 { font-size: .88rem; }
.fs-08  { font-size: .8rem; }
.lh-18  { line-height: 1.8; }
.p-relative { position: relative; }
.w-100  { width: 100%; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.br-10  { border-radius: 10px; }
.br-12  { border-radius: 12px; }
.p-16   { padding: 16px; }
.p-20   { padding: 20px 24px; }
.overflow-x-auto { overflow-x: auto; }

/* ── Mobil Header — çok küçük ekranlarda Book Now gizle ──────── */
@media (max-width: 480px) {
  .header-cta .btn-primary { display: none !important; }
  .header-cta { gap: 8px; }
  .lang-btn { font-size: .78rem; padding: 5px 8px; }
}
/* ── Ek mobil düzeltmeler ─────────────────────────────────────── */

/* Dropdown overflow — dar ekranda taşmayı önle */
@media (max-width: 768px) {
  .dropdown     { min-width: 200px; max-width: calc(100vw - 32px); }
  .lang-dropdown{ min-width: 140px; }
}

/* Buton touch target — min 44px yükseklik */
@media (max-width: 768px) {
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .header-cta .btn-primary { min-height: 40px; }
}

/* Tablo fontları mobilde okunabilir */
@media (max-width: 768px) {
  table { font-size: .82rem !important; }
  table th, table td { padding: 10px 8px !important; }
}

/* ── Responsive Grid Sınıfları ────────────────── */

/* Blog / 3-kolon içerik grid */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 2-kolon içerik grid (contact, about vb.) */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* 3-kolon dar grid (araçlar özellikleri vb.) */
.grid-3col-sm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* 4-kolon grid */
.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .grid-3col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-3col-sm {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .grid-4col {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .grid-3col-sm,
  .grid-4col {
    grid-template-columns: 1fr;
  }
}

/* Eski inline style'lar için fallback (geriye dönük uyumluluk) */
@media (max-width: 768px) {
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3,1fr)"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4,1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  div[style*="grid-template-columns:1fr 1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
}
@media (max-width: 480px) {
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}