/* ========================================
   LUXURY TRANSFER - Ana Stil Dosyası
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --primary: #5B9BD5;
  --primary-light: #8BB8E3;
  --primary-dark: #3A7BBF;
  --accent: #7BC67E;
  --accent-dark: #5AAF5D;
  --gold: #C9A84C;

  /* Light mode (default) */
  --bg: #FFFFFF;
  --bg-alt: #F5F5F5;
  --text: #2D2D2D;
  --text-heading: #1A1A1A;
  --border: #E5E5E5;
  --card-bg: #FFFFFF;
  --logo-text: #1A1A1A;

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* Dark mode */
[data-theme="dark"] {
  --bg: #111111;
  --bg-alt: #1A1A1A;
  --text: #D4D4D4;
  --text-heading: #F0F0F0;
  --border: #333333;
  --card-bg: #1E1E1E;
  --logo-text: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: #F8FAFB;
}

[data-theme="dark"] .section--soft {
  background: #1A1A1A;
}

.section--gray {
  background: var(--bg-alt);
  padding-bottom: calc(4rem + 25px);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Flex --- */
.flex {
  display: flex;
  align-items: center;
}

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

.flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex--col {
  display: flex;
  flex-direction: column;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: all var(--transition);
}

.header--transparent {
  background: #111111;
}

.header--solid {
  background: #111111;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 25px 0;
  box-shadow: var(--shadow-md);
}


.header__inner {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.header__link {
  color: #FFFFFF;
  opacity: 0.75;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition), opacity var(--transition);
  position: relative;
}

.header__link:hover,
.header__link--active {
  color: #FFFFFF;
  opacity: 1;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}


.header__link:hover::after,
.header__link--active::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
}

/* Header Dropdown (Turlar menü) */
.header__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header__dropdown > .header__link {
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}

.header__dropdown > .header__link::after {
  display: none;
}

.header__dropdown-arrow {
  width: 11px;
  height: 11px;
  transition: transform 0.2s;
  opacity: 0.85;
}

.header__dropdown:hover .header__dropdown-arrow,
.header__dropdown:focus-within .header__dropdown-arrow {
  transform: rotate(180deg);
}

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-6px);
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 200px;
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 10001;
  text-align: left;
}

[data-theme="dark"] .header__dropdown-menu {
  background: #2A2A2A;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.header__dropdown:hover .header__dropdown-menu,
.header__dropdown:focus-within .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-item {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  color: #1A1A1A;
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}

[data-theme="dark"] .header__dropdown-item {
  color: #F5F5F5;
}

.header__dropdown-item:hover {
  background: var(--primary-light);
  color: #1A1A1A;
}

[data-theme="dark"] .header__dropdown-item:hover {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
}

/* Mobile nav: Tours parent + sub-items */
.mobile-nav__link--parent {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 0.25rem;
  margin-top: 0.25rem;
}

.mobile-nav__link--sub {
  font-size: 1.2rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.mobile-nav__link--sub::before {
  content: '— ';
  opacity: 0.5;
}

/* Language Switcher - Dropdown */
.lang-switcher {
  position: relative;
  margin-left: 1rem;
}

.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: background 0.2s;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.lang-switcher__current:hover {
  background: rgba(255,255,255,0.1);
}

.header--scrolled .lang-switcher__current:hover,
.header--solid .lang-switcher__current:hover {
  background: rgba(0,0,0,0.05);
}

[data-theme="dark"] .lang-switcher__current:hover {
  background: rgba(255,255,255,0.1);
}

.lang-switcher__current img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.lang-switcher__arrow {
  width: 12px;
  height: 12px;
  color: rgba(255,255,255,0.7);
  transition: transform 0.2s;
}

.header--scrolled .lang-switcher__arrow,
.header--solid .lang-switcher__arrow {
  color: rgba(0,0,0,0.5);
}

[data-theme="dark"] .lang-switcher__arrow {
  color: rgba(255,255,255,0.7);
}

.lang-switcher.open .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 150px;
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 10001;
}

[data-theme="dark"] .lang-switcher__dropdown {
  background: #222;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

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

.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s;
}

[data-theme="dark"] .lang-switcher__item {
  color: #ddd;
}

.lang-switcher__item:hover {
  background: #f5f5f5;
}

[data-theme="dark"] .lang-switcher__item:hover {
  background: #333;
}

.lang-switcher__item--active {
  background: rgba(91,155,213,0.1);
  color: var(--primary);
}

[data-theme="dark"] .lang-switcher__item--active {
  background: rgba(91,155,213,0.15);
}

.lang-switcher__item img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Mobile nav language switcher */
.mobile-nav .lang-switcher {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  margin: 0;
}

.mobile-nav .lang-switcher__current:hover {
  background: rgba(255,255,255,0.15);
}

.mobile-nav .lang-switcher__current img {
  width: 30px;
  height: 22px;
}

.mobile-nav .lang-switcher__arrow {
  color: rgba(255,255,255,0.7);
}

.mobile-nav .lang-switcher__dropdown {
  left: 0;
  right: auto;
  background: #2a2a2a;
}

.mobile-nav .lang-switcher__item {
  color: #ddd;
}

.mobile-nav .lang-switcher__item:hover {
  background: #3a3a3a;
}

.mobile-nav .lang-switcher__item--active {
  background: rgba(91,155,213,0.2);
  color: var(--primary-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  position: relative;
  z-index: 10000;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger__line {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100vh;
  height: 100dvh;
  background: rgba(17,17,17,0.99);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.mobile-nav__close svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

.mobile-nav__close:active {
  background: rgba(255,255,255,0.15);
  border-color: #FFFFFF;
}

.mobile-nav__link {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: color var(--transition);
  padding: 0.75rem 1.5rem;
  text-align: center;
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
  color: #1A1A1A;
  background: var(--primary-light);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero--small {
  min-height: 40vh;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(0);
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.hero-slider__slide.active {
  opacity: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
}

/* Hero yazi katmani — her yazi blogu ayni sirdaki slayt ile birlikte degisir.
   Tum bloklar ayni grid hucresinde yigilir: yukseklik EN UZUN bloga gore sabit
   kalir, boylece yazilar degisirken rezervasyon cubugu asagi/yukari ziplamaz. */
.hero__texts {
  display: grid;
}

.hero__text {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, visibility 1s;
  pointer-events: none;
}

.hero__text.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hareket azaltma tercihi: yazilar kaymadan sadece belirir */
@media (prefers-reduced-motion: reduce) {
  .hero__text {
    transform: none;
    transition: opacity 0.01ms linear, visibility 0.01ms linear;
  }
}

.hero__badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  /* Slayt 1 <h1>, digerleri <p> etiketi kullanir (sayfada tek H1 kalsin).
     <p> global h1 kuralindan font-family/font-weight ALMAZ, bu yuzden
     ikisi de burada acikca tanimlanir — aksi halde <p> ince ve farkli fontta kalir. */
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Booking Bar */
.booking-bar {
  width: 100%;
  margin: 0 auto;
}

.booking-bar__tabs {
  display: flex;
  gap: 0;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}

.booking-bar__tab {
  padding: 1rem 2.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.booking-bar__tab.active {
  background: #FFFFFF;
  color: #1A1A1A;
}

.booking-bar__tab:not(.active):hover {
  background: rgba(255,255,255,0.25);
  color: #FFFFFF;
}

/* Vertical trip toggle (inside form) */
.booking-bar__field--toggle {
  flex: 0 0 auto;
  border-right: none;
  padding: 10px 14px;
}

/* Gidis/Donus anahtari — YATAY (44x24). Etiket ustte, anahtar altta. */
.trip-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.trip-toggle__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  font-family: var(--font-body);
  white-space: nowrap;
}

.trip-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.trip-toggle__switch input {
  display: none;
}

.trip-toggle__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 24px;
  background: #ddd;
  border-radius: 12px;
  transition: background 0.3s;
  cursor: pointer;
}

.trip-toggle__slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.trip-toggle__switch input:checked + .trip-toggle__slider {
  background: var(--primary);
}

.trip-toggle__switch input:checked + .trip-toggle__slider::after {
  transform: translateX(20px);
}

/* Time picker popup */
.time-picker-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.time-picker-overlay.active {
  display: flex;
}

.time-picker {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  max-width: 360px;
  width: 90%;
}

.time-picker__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
  text-align: center;
}

.time-picker__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.time-picker__slot {
  padding: 10px 6px;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.time-picker__slot:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.time-picker__slot.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.booking-bar__form {
  background: #FFFFFF;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  min-height: 92px;
}

.booking-bar__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 10px 18px;
  border-right: 1px solid #E5E5E5;
  min-width: 0;
}

.booking-bar__field--date {
  flex: 1;
}

.booking-bar__field--clickable {
  cursor: pointer;
}

.booking-bar__field--pax {
  flex: 1;
  border-right: none;
  white-space: nowrap;
}

.booking-bar__icon {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.booking-bar__icon svg {
  width: 22px;
  height: 22px;
}

.booking-bar__input-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
  white-space: nowrap;
  gap: 4px;
  text-align: left;
  position: relative;
}

.booking-bar__clear-btn {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
  padding: 0;
  line-height: 1;
}
.booking-bar__clear-btn:hover {
  background: rgba(255, 80, 80, 0.7);
}
[data-theme="dark"] .booking-bar__clear-btn {
  background: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .booking-bar__clear-btn:hover {
  background: rgba(255, 80, 80, 0.6);
}

.booking-bar__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
}

.booking-bar__select,
.booking-bar__datetime {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.booking-bar__datetime:invalid::-webkit-datetime-edit {
  color: transparent;
}

.booking-bar__datetime:invalid::before {
  content: 'Tarih Seçiniz';
  color: #999;
  font-size: 0.95rem;
  position: absolute;
  pointer-events: none;
}

.booking-bar__datetime:invalid {
  position: relative;
}

.booking-bar__select option {
  background: #FFFFFF;
  color: #1A1A1A;
  padding: 10px;
}

.booking-bar__select::placeholder {
  color: #999;
  font-weight: 400;
}

/* Google Places Autocomplete dropdown */
.pac-container {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: none;
  margin-top: 6px;
  font-family: var(--font-body);
  z-index: 10000;
  min-width: 400px !important;
  width: auto !important;
}

.pac-item {
  padding: 14px 18px;
  font-size: 0.95rem;
  cursor: pointer;
  border-top: 1px solid #f0f0f0;
  line-height: 1.5;
}

.pac-item:hover {
  background: #f5f8fb;
}

.pac-item-query {
  font-size: 0.95rem;
  color: #1A1A1A;
}

.pac-icon {
  margin-right: 10px;
}

.booking-bar__swap {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1.5px solid #E5E5E5;
  background: #FFFFFF;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin: 0;
  z-index: 2;
  align-self: center;
}

.booking-bar__swap:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(91,155,213,0.05);
}

.booking-bar__submit {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 18px 28px;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  margin-left: 10px;
}

.booking-bar__submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59,123,191,0.3);
}

.booking-bar__field--error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.4) inset;
  animation: fieldShake 0.4s ease;
}

.booking-bar__field--error .booking-bar__label {
  color: #dc3545 !important;
}

.booking-bar__field--error input,
.booking-bar__field--error select {
  color: #dc3545 !important;
}

.booking-bar__field--error input::placeholder {
  color: rgba(220, 53, 69, 0.6) !important;
}

@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

/* Booking bar responsive */
@media (max-width: 900px) {
  .booking-bar__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .booking-bar__field {
    border-right: none;
    border-bottom: 1px solid #E5E5E5;
  }
  .booking-bar__field:nth-child(1),
  .booking-bar__field:nth-child(2) {
    grid-column: 1 / -1;
  }
  .booking-bar__field--date {
    border-right: 1px solid #E5E5E5;
  }
  .booking-bar__field--date + .booking-bar__field--date {
    border-right: none;
  }
  .booking-bar__field--pax {
    border-bottom: 1px solid #E5E5E5;
  }
  .booking-bar__field--toggle {
    border-bottom: none;
  }
  .booking-bar__swap {
    margin: 0 auto;
    order: -1;
    display: none;
  }
  .booking-bar__submit {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .booking-bar__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0.75rem;
  }

  .booking-bar__field {
    border-right: none;
    border-bottom: 1px solid #E5E5E5;
    padding: 0.65rem 0.5rem;
    text-align: left;
  }

  /* Nereden - tam genişlik */
  .booking-bar__field:nth-child(1) {
    grid-column: 1 / -1;
  }

  /* Nereye - tam genişlik */
  .booking-bar__field:nth-child(2) {
    grid-column: 1 / -1;
  }

  /* Gidiş Tarihi - sol, Kişi Sayısı - sağ (varsayılan) */
  .booking-bar__field--date {
    grid-column: span 1;
    border-right: 1px solid #E5E5E5;
  }

  .booking-bar__field--pax {
    grid-column: span 1;
    border-bottom: 1px solid #E5E5E5;
  }

  /* Gidiş/Dönüş toggle */
  .booking-bar__field--toggle {
    grid-column: span 1;
    border-bottom: none;
  }

  /* Dönüş tarihi göründüğünde: Gidiş + Dönüş yan yana, Kişi + Toggle yan yana */
  .booking-bar__field--date + .booking-bar__field--date {
    border-right: none;
  }

  /* Süre (saatlik mod) */
  .booking-bar__field--duration {
    grid-column: span 1;
  }

  /* Ara butonu - tam genişlik */
  .booking-bar__submit {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  /* Sol hizalama */
  .booking-bar__label {
    text-align: left;
  }

  .booking-bar__input-wrap {
    text-align: left;
    width: 100%;
  }

  .booking-bar__select,
  .booking-bar__datetime {
    text-align: left;
  }

  .booking-bar__tab {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* --- Footer --- */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

[data-theme="dark"] .footer {
  background: #0A0A0A;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  margin-bottom: 1rem;
}

.footer__brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__heading {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__link {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--primary-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer__contact-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}
.footer__credit {
  color: var(--primary, #5B9BD5);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer__credit:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* --- WhatsApp FAB --- */
.whatsapp-fab {
  position: fixed !important;
  bottom: 2.5rem !important;
  right: 2.5rem !important;
  z-index: 99999 !important;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

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

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #ffffff !important;
}

/* --- Scroll Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Page Hero (subpages) --- */
.page-hero {
  background: var(--gray-100, #F5F5F5);
  padding: 14rem 0 5rem;
  text-align: left;
}

[data-theme="dark"] .page-hero {
  background: #0a0a0a;
}

.page-hero__content {
  position: relative;
}

.page-hero__title {
  color: var(--text-heading, #1A1A1A);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

[data-theme="dark"] .page-hero__title {
  color: #fff;
}

.page-hero__subtitle {
  display: none;
}

/* Breadcrumb */
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.page-hero__breadcrumb a {
  color: var(--primary, #5B9BD5);
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero__breadcrumb a:hover {
  color: var(--primary-dark, #3A7BBF);
}

[data-theme="dark"] .page-hero__breadcrumb a {
  color: rgba(255,255,255,0.55);
}

[data-theme="dark"] .page-hero__breadcrumb a:hover {
  color: #fff;
}

.page-hero__breadcrumb-sep {
  color: #bbb;
  font-size: 0.75rem;
}

[data-theme="dark"] .page-hero__breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.page-hero__breadcrumb-current {
  color: #555;
  font-weight: 600;
}

[data-theme="dark"] .page-hero__breadcrumb-current {
  color: rgba(255,255,255,0.85);
}

/* --- Statistics Bar --- */
.stats-bar {
  background: var(--primary);
  padding: 3rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  color: var(--white);
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stats-bar__label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* --- Theme Toggle --- */
.theme-toggle {
  position: fixed !important;
  bottom: 2.5rem !important;
  left: 2.5rem !important;
  z-index: 99998 !important;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  background: var(--card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all var(--transition);
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.theme-toggle__icon--light,
.theme-toggle__icon--dark {
  line-height: 1;
}

/* Light mode: show moon icon */
.theme-toggle__icon--dark { display: none; }
.theme-toggle__icon--light { display: block; }

[data-theme="dark"] .theme-toggle__icon--dark { display: block; }
[data-theme="dark"] .theme-toggle__icon--light { display: none; }

/* --- Dark mode overrides --- */
[data-theme="dark"] .mobile-nav {
  background: rgba(10,10,10,0.99);
}

[data-theme="dark"] .mobile-nav__link {
  color: #FFFFFF;
}

[data-theme="dark"] .mobile-nav__link:hover,
[data-theme="dark"] .mobile-nav__link:active {
  color: #FFFFFF;
  background: var(--primary-dark);
}

[data-theme="dark"] .section-subtitle {
  color: #999;
}


/* ---- Gidis-Donus indirim rozeti (ana sayfa arama cubugu) ----
   Rozet .trip-toggle icinde durur ve ona gore konumlanir; kapsayici
   alan kutusu gorsel anahtarla ayni yerde olmadigi icin field'a
   baglamak rozeti yanlis kolona tasiyordu. */
.trip-toggle { position: relative; }
.trip-toggle__discount-badge {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#D4AF37 0%,#C9A84C 100%);
  color: #1a1a1a;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(201,168,76,0.55);
  letter-spacing: 0.4px;
  white-space: nowrap;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 992px) {
  .trip-toggle__discount-badge { position: static; transform: none; display: inline-block; margin-bottom: 6px; }
}
