:root {
  --bg: #0a0a0a;
  --bg-soft: #101010;
  --bg-card: #141414;
  --bg-card-2: #171717;
  --gold: #caa84f;
  --gold-2: #ebd28b;
  --gold-3: #8b6b22;
  --text: #ffffff;
  --text-soft: #bdbdbd;
  --text-muted: #919191;
  --border: rgba(202, 168, 79, 0.18);
  --border-strong: rgba(202, 168, 79, 0.3);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --container: 1180px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(202, 168, 79, 0.08), transparent 26%),
    radial-gradient(circle at top left, rgba(202, 168, 79, 0.05), transparent 18%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 74px;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: #050505;
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 12px;
  overflow: hidden;
}

.topbar-text {
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-phone {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.logo-mark {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.logo-text {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #fff;
  white-space: nowrap;
}

.logo-subtext {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.8px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  text-decoration: none;
  color: #d5d5d5;
  font-size: 15px;
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.header-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.25s ease;
}

.header-btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #000;
  box-shadow: var(--shadow);
}

.header-btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border);
  background: #111;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 0 14px;
  border-top: 1px solid var(--border);
  background: #0d0d0d;
}

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

.mobile-menu a {
  text-decoration: none;
  color: #f1f1f1;
  padding: 14px 4%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  padding: 14px 4% 0;
}

.mobile-menu-call,
.mobile-menu-wa {
  text-align: center;
  border-radius: 999px;
  padding: 13px 18px !important;
  border: none !important;
}

.mobile-menu-call {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #000 !important;
  font-weight: 800;
}

.mobile-menu-wa {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-2) !important;
  border: 1px solid var(--border) !important;
  font-weight: 700;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 20px;
}

.hero-only-slider {
  background: transparent;
}

.hero-slider-wrap {
  position: relative;
  z-index: 1;
}

.hero-double-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.hero-image-card {
  position: relative;
  width: 100%;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #111;
}

.hero-auto-slider {
  overflow: hidden;
}

.hero-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide-item.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-auto-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* INTRO */
.intro-strip {
  padding: 10px 0 0;
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.intro-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  color: #f5f5f5;
  border-radius: 16px;
  padding: 15px 16px;
  text-align: center;
  font-weight: 600;
}

/* SECTION */
.section {
  padding: 76px 0;
}

.dark-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.025));
}

.section-head {
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
}

.section-mini-title {
  display: inline-block;
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 44px);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-head p {
  color: var(--text-soft);
  max-width: 760px;
}

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

/* QUICK AIRPORT NAV */
./* QUICK AIRPORT NAV - YATAY ŞERİT */

.airport-quick-card {
  flex: 0 0 auto;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(202, 168, 79, 0.07), transparent 35%),
    var(--bg-card);
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.airport-quick-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.airport-quick-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
}

.airport-quick-inline-text {
  color: var(--gold-2);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* mobilde de aynı mantık devam etsin */
@media (max-width: 767px) {
  .airport-quick-strip-wrap {
    margin: 0 -4%;
    padding: 0 4% 8px;
  }

  .airport-quick-grid {
    gap: 10px;
  }

  .airport-quick-card {
    padding: 11px 15px;
  }

  .airport-quick-inline-text {
    font-size: 16px;
  }
}

/* VEHICLES */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.vehicle-card {
  background:
    linear-gradient(180deg, rgba(202, 168, 79, 0.07), transparent 28%),
    #131313;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.vehicle-image-box {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(202, 168, 79, 0.11), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(202,168,79,0.03));
  border: 1px solid rgba(202, 168, 79, 0.14);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 20px;
}

.vehicle-image-box img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.vehicle-card-content h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.vehicle-card-content p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 14px;
}

.vehicle-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--gold-2);
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.vehicle-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  background: rgba(202, 168, 79, 0.08);
  border: 1px solid rgba(202, 168, 79, 0.18);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
}

.vehicle-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width:768px){

  .vehicle-actions::after{
    content: attr(data-price) " €";
    
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:52px;

    border-radius:14px;
    margin-top:6px;

    background:linear-gradient(135deg,#ebd28b,#caa84f);
    color:#111;

    font-size:18px;
    font-weight:900;
    letter-spacing:0.5px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);
  }

}

/* AIRPORT LIST SECTION */
.airport-list-section {
  margin-bottom: 36px;
  scroll-margin-top: 105px;
}

.airport-box {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  gap: 20px;
  padding: 34px 24px;
  border: 1px solid rgba(202, 168, 79, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(202, 168, 79, 0.05), transparent 35%),
    rgba(255,255,255,0.01);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  margin-bottom: 20px;
}

.airport-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(202,168,79,0.04), transparent);
}

.airport-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.airport-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.airport-line {
  width: 70px;
  height: 3px;
  border-radius: 999px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

.airport-content p {
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 16px;
}

.airport-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.airport-note {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  border-radius: 16px;
  padding: 14px;
}

.airport-note h4 {
  color: var(--gold-2);
  font-size: 14px;
  margin-bottom: 6px;
}

.airport-note p {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

.airport-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.airport-decor img {
  max-width: 100%;
  width: 64px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
  opacity: 0.95;
}

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

.transfer-card {
  border: 1px solid rgba(202, 168, 79, 0.3);
  background:
    linear-gradient(180deg, rgba(202, 168, 79, 0.05), transparent 40%),
    #0f0f0f;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.transfer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 168, 79, 0.5);
}

.transfer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.transfer-route small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.transfer-route h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
}

.transfer-price {
  min-width: 72px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.1);
}

.transfer-price strong {
  font-size: 18px;
  line-height: 1;
}

.transfer-price span {
  font-size: 11px;
  line-height: 1;
  margin-top: 4px;
}

.transfer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.transfer-actions a {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.transfer-wa {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #000;
}

.transfer-call {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--gold-2);
}

/* CONTENT GRIDS */
.about-grid,
.service-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-card,
.service-card,
.feature-card,
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-card:hover,
.service-card:hover,
.feature-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.about-card h3,
.service-card h3,
.feature-card h3,
.contact-card h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 20px;
}

.about-card p,
.service-card p,
.feature-card p,
.contact-card p {
  color: var(--text-soft);
  font-size: 14px;
}

.about-card-large {
  background:
    linear-gradient(135deg, rgba(202, 168, 79, 0.08), transparent 50%),
    var(--bg-card-2);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(202, 168, 79, 0.12);
  color: var(--gold-2);
  font-weight: 800;
  border: 1px solid var(--border);
}

/* CTA */
.cta-section {
  padding: 0 0 76px;
}

.cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(202, 168, 79, 0.09), transparent 45%),
    #101010;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px 18px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 5vw, 36px);
  color: #fff;
  margin: 8px 0;
  line-height: 1.2;
}

.cta-box p {
  color: var(--text-soft);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* CONTACT */
.contact-card a {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 10px;
}

/* FOOTER */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 38px 0 90px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 24px;
}

.footer-brand p {
  color: var(--text-soft);
  max-width: 420px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #e8e8e8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: var(--gold-2);
  font-weight: 700;
}

/* MOBILE FIXED BAR */
.mobile-fixed-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 999;
  border-top: 1px solid rgba(0,0,0,0.35);
}

.mobile-fixed-bar a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.mobile-fixed-bar a:first-child {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #000;
}

.mobile-fixed-bar a:last-child {
  background: #121212;
  color: var(--gold-2);
  border-left: 1px solid var(--border);
}

/* TABLET */
@media (min-width: 576px) {
  .hero-buttons,
  .cta-actions,
  .vehicle-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .intro-strip-inner,
  .service-grid,
  .feature-grid,
  .contact-grid,
  .transfer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TABLET+ */
@media (min-width: 768px) {
  .hero-double-visual {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .hero-image-card {
    min-height: 360px;
  }

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

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

  .about-card-large {
    grid-column: span 2;
  }

  .airport-box {
    grid-template-columns: 90px 1fr 90px;
  }
}

/* DESKTOP */
@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }

  .menu-toggle,
  .mobile-menu,
  .mobile-fixed-bar {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .hero {
    padding: 22px 0 28px;
  }

  .hero-image-card {
    min-height: 440px;
  }

  .intro-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 34px 32px;
  }

  .cta-actions {
    width: auto;
    flex-shrink: 0;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
  }
}

/* SMALL MOBILE */
@media (max-width: 767px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-text {
    max-width: 58%;
  }

  .topbar-phone {
    font-size: 11px;
  }


  .vehicle-image-box {
    min-height: 200px;
  }

  .vehicle-image-box img {
    max-height: 190px;
  }

  .section {
    padding: 64px 0;
  }

  .airport-box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 18px;
    border-radius: 20px;
    text-align: center;
  }

  .airport-content {
    order: 2;
  }

  .airport-decor.left {
    order: 1;
  }

  .airport-decor.right {
    order: 3;
  }

  .airport-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .airport-line {
    width: 56px;
    margin-bottom: 16px;
  }

  .airport-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .airport-decor img {
    width: 58px;
  }

  .airport-notes {
    grid-template-columns: 1fr;
  }

  .transfer-card-top {
    align-items: flex-start;
  }

  .transfer-price {
    min-width: 66px;
    height: 52px;
  }

  .hero-image-card {
    min-height: 240px;
  }
}
/* QUICK AIRPORT NAV - YATAY ŞERİT */
.airport-quick-nav {
  overflow: hidden;
}

.airport-quick-strip-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.airport-quick-strip-wrap.dragging {
  cursor: grabbing;
}

.airport-quick-strip-wrap::-webkit-scrollbar {
  display: none;
}

.airport-quick-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
}

.airport-quick-card {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(202, 168, 79, 0.24);
  background:
    linear-gradient(180deg, rgba(202, 168, 79, 0.06), transparent 35%),
    rgba(18, 18, 18, 0.96);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

.airport-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 168, 79, 0.45);
}

.airport-quick-inline-icon {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  pointer-events: none;
}

.airport-quick-inline-text {
  color: #f3c96a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 767px) {
  .airport-quick-strip-wrap {
    margin: 0 -4%;
    padding: 0 4% 10px;
  }

  .airport-quick-card {
    min-height: 50px;
    padding: 0 16px;
  }

  .airport-quick-inline-text {
    font-size: 15px;
  }
}
/* =========================
   REFERANSLAR (DARK THEME)
========================= */

.references-section{
  padding: 70px 0;

  /* SİTEYLE UYUMLU KOYU GRADIENT */
  background: radial-gradient(
    circle at top,
    #0b1622 0%,
    #03060b 60%,
    #000000 100%
  );

  overflow: hidden;
}

/* Başlık alanı */
.references-section .section-mini-title{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #d1d5db;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 12px;
}

.references-section h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  color: #ffffff;
  font-weight: 800;
}

.references-section p{
  margin: 0 auto;
  max-width: 700px;
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
}

/* Slider */
.references-slider{
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;

  /* Kenar fade efekti */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

/* Track */
.references-track{
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: referencesScrollRight 28s linear infinite;
}

/* Logo kartları */
.reference-logo{
  flex: 0 0 auto;
  width: 210px;
  height: 110px;
  border-radius: 16px;

  /* KOYU CAM EFEKT */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(6px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.5);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;

  transition: all .25s ease;
}

.reference-logo:hover{
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Logo görselleri */
.reference-logo img{
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  display: block;
}

/* Animasyon (sağa doğru akış) */
@keyframes referencesScrollRight{
  0%{
    transform: translateX(-50%);
  }
  100%{
    transform: translateX(0);
  }
}

/* Hover olunca dur */
.references-slider:hover .references-track{
  animation-play-state: paused;
}

/* Tablet */
@media (max-width: 991px){
  .reference-logo{
    width: 180px;
    height: 95px;
  }

  .reference-logo img{
    max-height: 50px;
  }

  .references-track{
    animation-duration: 24s;
  }
}

/* Mobil */
@media (max-width: 576px){
  .references-section{
    padding: 50px 0;
  }

  .reference-logo{
    width: 150px;
    height: 80px;
    padding: 12px;
  }

  .reference-logo img{
    max-height: 40px;
  }

  .references-track{
    gap: 12px;
    animation-duration: 20s;
  }
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* LOGO RESİM */
.logo-mark img{
  height: 42px;
  width: auto;
  display: block;
}

/* Mobil */
@media (max-width: 768px){
  .logo-mark img{
    height: 34px;
  }
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.logo-mark img{
  height:42px;
  width:auto;
  display:block;
}

.logo-text-wrap{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

@media (max-width: 768px){
  .logo-mark img{
    height:60px;
  }
}
.transfer-card-clickable {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
}

.transfer-card-clickable .transfer-card-inner {
  min-height: 132px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    radial-gradient(circle at top right, rgba(214, 174, 72, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(214, 174, 72, 0.34);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  transition: all 0.25s ease;
}

.transfer-card-clickable:hover .transfer-card-inner {
  transform: translateY(-4px);
  border-color: rgba(246, 210, 107, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
}

.transfer-card-clickable .transfer-route small {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.2px;
}

.transfer-card-clickable .transfer-route h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.transfer-select-text {
  display: inline-flex;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #eac45c;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.transfer-price-clean {
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #d6ae48, #f3d775);
  color: #111;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.clean-price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.clean-price-item span {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.72);
}

.clean-price-item strong {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  white-space: nowrap;
}

.clean-price-line {
  height: 1px;
  margin: 8px 0;
  background: rgba(0, 0, 0, 0.18);
}

.transfer-actions,
.transfer-wa,
.transfer-call {
  display: none !important;
}

@media (max-width: 768px) {
  .transfer-card-clickable .transfer-card-inner {
    min-height: auto;
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .transfer-card-clickable .transfer-route h3 {
    font-size: 24px;
  }

  .transfer-price-clean {
    width: 100%;
    min-width: 0;
  }

  .clean-price-item strong {
    font-size: 17px;
  }
}
.route-block-force-hidden {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

#routeMainTitle,
#routeIntroText,
#routeFromText,
#routeToText,
#routePriceText {
  display: none !important;
}

#vehiclesSection {
  padding-top: 35px !important;
  margin-top: 0 !important;
}

#mapSection,
#routeMapSection,
.route-map-section,
.map-section {
  margin-top: 35px !important;
}

#reservationSection {
  margin-top: 35px !important;
}

.vehicle-row {
  cursor: pointer;
}
/* FİYAT KUTUSU TAM FIX */
.price-fixed {
  border-radius: 16px !important;
  padding: 10px 14px !important;

  background: linear-gradient(145deg, #f3d775, #caa84f) !important;
  border: 1px solid rgba(255, 220, 120, 0.6) !important;

  box-shadow:
    0 12px 28px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4) !important;

  animation: priceBeat 1.6s ease-in-out infinite !important;
}

/* SAYI */
.price-fixed span {
  font-size: 26px !important;
  font-weight: 900 !important;
  color: #111 !important;
}

/* € ALT YAZI */
.price-fixed::after {
  content: "€";
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0,0,0,0.7);
  margin-top: 2px;
}

/* KALP ATIŞI ANİMASYON */
@keyframes priceBeat {
  0% { transform: scale(1); }
  20% { transform: scale(1.08); }
  40% { transform: scale(1); }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* MOBİL */
@media (max-width:768px){
  .price-fixed span {
    font-size: 22px !important;
  }
}
@keyframes priceHeartbeatInline {
  0% { transform: scale(1); }
  16% { transform: scale(1.08); }
  32% { transform: scale(1); }
  48% { transform: scale(1.045); }
  70% { transform: scale(1); }
  100% { transform: scale(1); }
}
/* ONLINE ÖDEME FINAL - ID ÜZERİNDEN KESİN FIX */
#onlinePaymentRequest {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}

label[for="onlinePaymentRequest"] {
  width: 100% !important;
  min-height: 92px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 22px 24px !important;
  margin: 22px 0 !important;
  border-radius: 22px !important;
  border: 1px solid rgba(202, 168, 79, 0.45) !important;
  background:
    radial-gradient(circle at top right, rgba(202,168,79,.22), transparent 35%),
    linear-gradient(145deg, rgba(20,20,20,.98), rgba(10,10,10,.98)) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;
  cursor: pointer !important;
}

label[for="onlinePaymentRequest"] .op-left {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

label[for="onlinePaymentRequest"] .op-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #ebd28b, #caa84f) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
}

label[for="onlinePaymentRequest"] .op-text strong {
  display: block !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

label[for="onlinePaymentRequest"] .op-text span {
  display: block !important;
  margin-top: 5px !important;
  color: #bdbdbd !important;
  font-size: 13px !important;
}

label[for="onlinePaymentRequest"] .op-right span {
  min-width: 86px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(202,168,79,.5) !important;
  color: #ebd28b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 900 !important;
}

#onlinePaymentRequest:checked + label[for="onlinePaymentRequest"] {
  border-color: #ebd28b !important;
  box-shadow: 0 0 24px rgba(202,168,79,.32) !important;
}

#onlinePaymentRequest:checked + label[for="onlinePaymentRequest"] .op-right span {
  background: linear-gradient(135deg, #ebd28b, #caa84f) !important;
  color: #111 !important;
  font-size: 0 !important;
}

#onlinePaymentRequest:checked + label[for="onlinePaymentRequest"] .op-right span::after {
  content: "Seçildi ✓";
  font-size: 13px !important;
}

@media (max-width: 768px) {
  label[for="onlinePaymentRequest"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  label[for="onlinePaymentRequest"] .op-right,
  label[for="onlinePaymentRequest"] .op-right span {
    width: 100% !important;
  }
}
/* MOBİL ARAÇ KARTI PREMIUM FIX */
@media (max-width: 768px) {
  .vehicles-section {
    padding-top: 38px !important;
  }

  .vehicles-list {
    display: grid;
    gap: 22px;
  }

  .vehicle-row {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px;
    padding: 20px !important;
    border-radius: 24px !important;
    background:
      radial-gradient(circle at top right, rgba(202,168,79,.12), transparent 35%),
      linear-gradient(145deg, #181818, #101010) !important;
    border: 1px solid rgba(202,168,79,.28) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.38) !important;
  }

  .vehicle-image-col,
  .vehicle-content-col,
  .vehicle-price-col {
    width: 100% !important;
  }

  .vehicle-image-box {
    min-height: 220px !important;
    margin-bottom: 0 !important;
    border-radius: 18px !important;
    background:
      radial-gradient(circle at center, rgba(202,168,79,.10), transparent 55%),
      #0b0b0b !important;
  }

  .vehicle-image-box img {
    max-height: 205px !important;
    margin: 0 auto;
  }

  .vehicle-badge {
    margin-top: 4px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(202,168,79,.10);
    border: 1px solid rgba(202,168,79,.28);
    color: #ebd28b !important;
    font-size: 10px !important;
  }

  .vehicle-content-col h3 {
    font-size: 24px !important;
    line-height: 1.15 !important;
    color: #f3c96a !important;
    margin: 10px 0 12px !important;
  }

  .vehicle-features {
    display: grid;
    gap: 8px;
    margin-bottom: 18px !important;
  }

  .vehicle-features li {
    font-size: 14px !important;
    color: #f4f4f4;
    line-height: 1.45;
  }

  .vehicle-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .vehicle-select-btn,
  .vehicle-wa-btn {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
  }

  .vehicle-price-col {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: -6px;
  }

  .price-bubble {
    width: 96px !important;
    height: 68px !important;
    min-width: 96px !important;
    border-radius: 18px !important;
    background: linear-gradient(145deg, #ebd28b, #caa84f) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.4) !important;
  }

  .price-bubble span {
    font-size: 26px !important;
    font-weight: 950 !important;
    color: #111 !important;
  }

  .price-bubble small {
    color: #111 !important;
    font-weight: 900 !important;
  }
}
@media (max-width:768px){
  .vehicle-price-col{
    display:none !important;
  }
}
/* MOBİL ARAÇ KARTI FINAL FIX */
@media (max-width: 768px) {
  .vehicles-section {
    padding-top: 38px !important;
  }

  .vehicles-list {
    display: grid;
    gap: 22px;
  }

  .vehicle-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px;
    padding: 20px !important;
    border-radius: 24px !important;
    background:
      radial-gradient(circle at top right, rgba(202,168,79,.12), transparent 35%),
      linear-gradient(145deg, #181818, #101010) !important;
    border: 1px solid rgba(202,168,79,.28) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.38) !important;
  }

  .vehicle-image-col,
  .vehicle-content-col,
  .vehicle-price-col {
    width: 100% !important;
  }

  .vehicle-image-box {
    min-height: 220px !important;
    margin-bottom: 0 !important;
    border-radius: 18px !important;
    background:
      radial-gradient(circle at center, rgba(202,168,79,.10), transparent 55%),
      #0b0b0b !important;
  }

  .vehicle-image-box img {
    max-height: 205px !important;
    margin: 0 auto;
  }

  .vehicle-badge {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(202,168,79,.10);
    border: 1px solid rgba(202,168,79,.28);
    color: #ebd28b !important;
    font-size: 10px !important;
  }

  .vehicle-content-col h3 {
    font-size: 24px !important;
    color: #f3c96a !important;
    margin: 10px 0 12px !important;
  }

  .vehicle-features {
    display: grid;
    gap: 8px;
    margin-bottom: 18px !important;
  }

  .vehicle-features li {
    font-size: 14px !important;
    color: #f4f4f4;
  }

  .vehicle-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .vehicle-select-btn,
  .vehicle-wa-btn {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
  }

  .vehicle-price-col {
    display: block !important;
    margin-top: -4px !important;
  }

  .price-bubble {
    width: 100% !important;
    height: 52px !important;
    min-width: 100% !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #ebd28b, #caa84f) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,.35) !important;
  }

  .price-bubble::before {
    content: "Başlangıç Fiyatı";
    font-size: 13px;
    font-weight: 800;
    color: rgba(0,0,0,.72);
    margin-right: 8px;
  }

  .price-bubble span {
    font-size: 22px !important;
    font-weight: 950 !important;
    color: #111 !important;
  }

  .price-bubble small {
    color: #111 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
  }
}
/* HAVALİMANI BUTONLARI OTOMATİK KAYMA */
.airport-quick-grid {
  animation: airportAutoScroll 25s linear infinite;
}

/* SAĞA DOĞRU AKIŞ */
@keyframes airportAutoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ÜZERİNE GELİNCE DURSUN */
.airport-quick-strip-wrap:hover .airport-quick-grid {
  animation-play-state: paused;
}
/* HAVALİMANI BİLGİ KUTUSU - KURUMSAL PREMIUM */
.airport-box {
  padding: 52px 44px !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at top center, rgba(202,168,79,.14), transparent 34%),
    linear-gradient(145deg, rgba(28,25,18,.96), rgba(10,10,10,.98)) !important;
  border: 1px solid rgba(202,168,79,.28) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.45) !important;
}

.airport-content h2 {
  font-size: clamp(30px, 4vw, 50px) !important;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.airport-content p {
  max-width: 820px !important;
  font-size: 17px !important;
  line-height: 1.9 !important;
  color: #f1f1f1 !important;
}

.airport-line {
  width: 90px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ebd28b, transparent) !important;
}

.airport-note {
  padding: 22px 24px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.035) !important;
  border: 1px solid rgba(202,168,79,.24) !important;
}

.airport-note h4 {
  color: #ebd28b !important;
  font-size: 16px !important;
}

.airport-note p {
  font-size: 14px !important;
  color: #d8d8d8 !important;
}

.airport-decor img {
  width: 78px !important;
  opacity: .9;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.55));
}

@media (max-width: 768px) {
  .airport-box {
    padding: 34px 20px !important;
    border-radius: 24px !important;
  }

  .airport-content h2 {
    font-size: 26px !important;
  }

  .airport-content p {
    font-size: 15px !important;
  }
}
.references-slider,
.references-track {
  animation: none !important;
  transform: none !important;
  width: 100% !important;
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.references-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.references-gallery .reference-logo {
  width: 100% !important;
  height: 120px !important;
  padding: 20px !important;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    #10141d;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

.references-gallery .reference-logo img {
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .references-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .references-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .references-gallery .reference-logo {
    height: 96px !important;
    padding: 14px !important;
  }

  .references-gallery .reference-logo img {
    max-height: 50px;
  }
}

/* LANGUAGE SWITCHER */
.lang-switcher{display:inline-flex;align-items:center;gap:6px;padding:5px;border:1px solid rgba(202,168,79,.24);background:rgba(255,255,255,.035);border-radius:999px;flex-shrink:0;}
.lang-btn{min-width:38px;height:32px;border:0;border-radius:999px;background:transparent;color:#f5f5f5;font-size:12px;font-weight:900;letter-spacing:.04em;cursor:pointer;transition:.2s ease;}
.lang-btn:hover,.lang-btn.active{background:linear-gradient(135deg,#ebd28b,#caa84f);color:#111;}
.mobile-menu-actions .lang-switcher{width:max-content;margin:0 auto 4px;}
@media (max-width:767px){.header-actions .lang-switcher{display:none;}.site-header .header-inner > .lang-switcher{margin-left:auto;}}
