/* ============================================================
   BEGAN TUR — STYLE.CSS
   ============================================================ */

/* ---- Variables ---- */
:root {
  --primary:        #f97316;
  --primary-dark:   #ea6c0a;
  --primary-light:  #fdba74;
  --primary-bg:     #fff7ed;
  --secondary:      #0f172a;
  --secondary-light:#1e293b;
  --secondary-mid:  #334155;

  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --green:  #22c55e;
  --blue:   #3b82f6;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);

  --transition: 0.25s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Section utilities ---- */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray-500);
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline:active { transform: translateY(0); }

.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--secondary);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.header-logo img { height: 46px; width: auto; object-fit: contain; }

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: block;
  color: var(--gray-300);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-link.active { color: var(--primary-light); }

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

.live-clock {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(249,115,22,.12);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: .04em;
  min-width: 84px;
  text-align: center;
}

/* FOUC önleme — i18n.js yüklenene kadar */
html.i18n-loading { visibility: hidden; }

/* Dil seçici — 4 SVG bayrak yan yana */
#lang-selector {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.18);
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}

.lang-btn {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 6px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  line-height: 1;
  letter-spacing: .02em;
}
.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.lang-btn.lang-btn-active,
.lang-btn[aria-pressed="true"] {
  color: var(--primary);
  background: rgba(249,115,22,.12);
}
.lang-btn.lang-btn-active .lang-flag,
.lang-btn[aria-pressed="true"] .lang-flag {
  border-color: rgba(249,115,22,.5);
  box-shadow: 0 0 0 1px rgba(249,115,22,.25);
}

.btn-reservation-header { padding: 9px 20px; font-size: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.14); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.72);
  background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.60) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}
.hero-tag {
  display: inline-block;
  background: rgba(249,115,22,.2);
  color: var(--primary-light);
  border: 1px solid rgba(249,115,22,.4);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title strong { color: var(--primary); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.btn-hero {
  font-size: 17px;
  padding: 15px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(249,115,22,.45);
  margin-bottom: 40px;
}
.btn-hero:hover { transform: translateY(-3px); }

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ---- Stats ---- */
.stats {
  background: var(--secondary);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-icon { font-size: 28px; margin-bottom: 8px; }
.stat-number {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label { font-size: 14px; color: var(--gray-400); font-weight: 500; }

/* ---- Trust ---- */
.trust {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  white-space: nowrap;
}
.trust-icon { font-size: 16px; }

/* ---- Routes ---- */
.routes { background: var(--white); }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.route-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.route-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .4s ease;
}
.route-card:hover .route-img { transform: scale(1.04); }

.route-body { padding: 20px; }
.route-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.route-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.route-meta span { display: flex; align-items: center; gap: 4px; }

/* ---- Packages ---- */
.packages { background: var(--gray-50); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.package-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.package-card.featured {
  border-color: var(--primary);
  transform: scale(1.02);
}
.package-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}
.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 1;
  letter-spacing: .03em;
}
.package-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.package-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.package-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}
.package-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.package-features {
  flex: 1;
  margin-bottom: 24px;
}
.package-features li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
}
.package-features li:last-child { border-bottom: none; }
.package-card.featured .package-features li { color: var(--secondary-mid); }

/* ---- Features (Bento) ---- */
.features { background: var(--secondary); }
.features .section-header h2 { color: var(--white); }
.features .section-header p { color: var(--gray-400); }
.features .section-tag { background: rgba(249,115,22,.2); color: var(--primary-light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.feature-item:hover {
  background: rgba(249,115,22,.1);
  border-color: rgba(249,115,22,.3);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.feature-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-400);
}

/* ---- Reviews ---- */
.reviews { background: var(--gray-50); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
}
.review-author::before { content: '— '; }

/* ---- Partner CTA ---- */
.partner {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}
.partner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.9) 0%, rgba(249,115,22,.8) 100%);
}
.partner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}
.partner-content h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.partner-content h2 strong { color: var(--primary-light); }
.partner-content p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--secondary);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  color: var(--gray-300);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-contact li, .footer-links li {
  margin-bottom: 10px;
}
.footer-contact li {
  font-size: 14px;
  color: var(--gray-400);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact a {
  color: var(--gray-300);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--primary-light); }
.footer-links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-company-name {
  font-size: 13px;
  color: var(--gray-300);
  font-weight: 500;
  margin: 12px 0 4px !important;
}
.footer-mersis {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0 !important;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}
.footer-bottom-right a {
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer-bottom-right a:hover { color: var(--primary-light); }

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET 768px
   ============================================================ */
@media (max-width: 1023px) {
  .routes-grid     { grid-template-columns: repeat(2, 1fr); }
  .packages-grid   { grid-template-columns: repeat(2, 1fr); }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand    { grid-column: 1 / -1; }
  .footer-bottom   { flex-direction: column; gap: 6px; text-align: center; }
  .packages-grid .package-card.featured { transform: none; }
  .packages-grid .package-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 767px) {
  :root { --header-height: 64px; }

  .hamburger { display: flex; }

  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(15,23,42,.98);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 12px 0;
    z-index: 999;
  }
  .header-nav.open { display: block; }
  .header-nav ul { flex-direction: column; gap: 0; }
  .nav-link {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 0;
  }

  .live-clock { display: none; }
  .lang-selector { display: flex; gap: 1px; }
  .lang-code { display: none; }
  .lang-btn { padding: 4px 4px; gap: 0; }

  .header-inner { position: relative; }
  .site-header { position: sticky; }

  /* --- Mobil header düzeni düzeltmesi --- */
  .btn-reservation-header { display: none !important; }

  .header-logo { flex-shrink: 0; }
  .header-logo img { height: 40px; }

  .header-inner {
    justify-content: space-between;
    gap: 10px;
  }

  .header-actions {
    flex: 1;
    justify-content: center;
    gap: 8px;
  }

  #lang-selector {
    margin: 0 auto;
  }

  .hamburger { flex-shrink: 0; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 60px 20px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .trust-grid { gap: 6px 8px; }
  .trust-item { font-size: 12px; padding: 5px 10px; }

  .routes-grid     { grid-template-columns: 1fr; }
  .packages-grid   { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
}

/* ============================================================
   FLOATING CONTACT BUTTONS
   ============================================================ */
.float-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.float-wa  { background: #25D366; }
.float-tel { background: #f97316; }
@media (max-width: 600px) {
  .float-contact { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; }
}

/* ---- Navigation Dropdown ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  margin: 0 !important;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px !important;
  color: #334155 !important;
  font-size: 14px !important;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: #fff7ed;
  color: #f97316 !important;
  padding-left: 24px !important;
}

.dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 6px 0 !important;
  padding: 0 !important;
  pointer-events: none;
}

@media (max-width: 991px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0;
    min-width: 100%;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 8px;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown-menu a {
    color: #ffffff !important;
    padding-left: 32px !important;
    font-size: 13px !important;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316 !important;
    padding-left: 36px !important;
  }

  .dropdown-divider {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* ============================================ */
/* TAHMİNİ FİYAT LİSTESİ                         */
/* ============================================ */
.price-list {
    padding: 80px 0;
    background: #f8fafc;
}

.price-list .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-list h2 {
    text-align: center;
    color: #0f172a;
    font-size: 2.2rem;
    margin: 12px 0;
}

.price-list .section-tag {
    display: block;
    text-align: center;
    color: #f97316;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.price-list .section-desc {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.price-table-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table thead {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.price-table thead th {
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
}

.price-table thead th:last-child {
    text-align: right;
}

.price-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.price-table tbody tr:hover {
    background: #fff7ed;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody td {
    padding: 14px 20px;
    color: #0f172a;
}

.price-table tbody td:first-child {
    color: #64748b;
    font-size: 0.9rem;
}

.price-table tbody td:nth-child(2) {
    font-weight: 600;
}

.price-table .price-cell {
    text-align: right;
    font-weight: 700;
    color: #f97316;
    font-size: 1.1rem;
    white-space: nowrap;
}

.price-disclaimer {
    margin-top: 24px;
    padding: 16px 20px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.price-disclaimer p {
    margin: 0;
    color: #78350f;
    font-size: 0.92rem;
    line-height: 1.5;
}

.price-cta {
    text-align: center;
    margin-top: 32px;
}

.price-cta .btn {
    padding: 14px 36px;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .price-list {
        padding: 50px 0;
    }
    .price-list h2 {
        font-size: 1.6rem;
    }
    .price-table thead th {
        padding: 12px 12px;
        font-size: 0.75rem;
    }
    .price-table tbody td {
        padding: 12px 12px;
        font-size: 0.85rem;
    }
    .price-table tbody td:first-child {
        display: none;
    }
    .price-table thead th:first-child {
        display: none;
    }
}
