/* ==========================================
   LUXURY VIP TRANSFER - MAIN STYLES
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

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

body {
  font-family: 'Play', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ---- HAMBURGER MENU ---- */
.menu-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 90;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 40px;
  height: 2px;
  background: #dc2626;
  transition: width 0.2s;
}
.menu-toggle:hover span:first-child,
.menu-toggle:hover span:last-child { width: 32px; }

/* ---- FULLSCREEN NAV ---- */
.fullscreen-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
.fullscreen-nav.open { transform: translateX(0); }
.nav-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.nav-close:hover { color: #dc2626; }
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Play', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.4em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #f1b05a; }
.nav-links .bayi-link {
  border: 1px solid #f1b05a;
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.2em;
}

/* ---- HOME PAGE ---- */
.home-hero {
  position: relative;
  min-height: 100vh;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
  pointer-events: none;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 2.5rem 1rem;
}
.hero-logo { width: 192px; margin-bottom: 1.5rem; background: transparent; mix-blend-mode: normal; }

/* ---- BOOKING FORM WRAPPER ---- */
.booking-wrapper {
  width: 100%;
  max-width: 64rem;
  border: 1px solid rgba(241,176,90,0.3);
  padding: 4px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}
.booking-inner {
  border: 1px solid rgba(241,176,90,0.5);
  padding: 1.5rem;
}
.lang-switcher {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.2s;
  padding: 0;
}
.lang-btn.active { opacity: 1; transform: scale(1.1); }
.lang-btn img { width: 32px; height: auto; }

/* ---- BOOKING FORM ---- */
.booking-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media(min-width: 768px) {
  .booking-form .form-grid { grid-template-columns: repeat(4, 1fr); }
}
.form-col { display: flex; flex-direction: column; gap: 1rem; }
.form-input, .form-select {
  width: 100%;
  background: transparent;
  border: 1px solid #4b5563;
  padding: 0.75rem;
  color: #fff;
  font-family: 'Play', sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  height: 48px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus { border-color: #f1b05a; }
.form-select option { background: #000; }
.form-input.gold-border { border-color: #f1b05a; }
.form-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}
@media(min-width: 768px) { .form-bottom { grid-template-columns: 9fr 3fr; } }
.form-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #4b5563;
  padding: 0.75rem;
  color: #fff;
  font-family: 'Play', sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  min-height: 100px;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}
.form-textarea:focus { border-color: #f1b05a; }
.submit-btn {
  width: 100%;
  height: 100%;
  background: #f1b05a;
  color: #000;
  font-family: 'Play', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 1.5rem;
  transition: background 0.2s;
  min-height: 60px;
}
.submit-btn:hover { background: #fff; }
.form-success {
  text-align: center;
  padding: 2.5rem;
  border: 1px solid rgba(241,176,90,0.3);
  background: rgba(0,0,0,0.6);
}
.form-success h2 { color: #f1b05a; font-size: 1.25rem; text-transform: uppercase; font-style: italic; }
.form-success p { color: #fff; font-size: 0.75rem; margin-top: 0.5rem; text-transform: uppercase; font-style: italic; }

/* ---- INNER PAGES COMMON ---- */
.page-wrapper {
  min-height: 100vh;
  background: #000;
  color: #fff;
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.page-title {
  font-size: 1.875rem;
  letter-spacing: 0.4em;
  color: #f1b05a;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.gold-line { width: 6rem; height: 4px; background: #f1b05a; margin: 0 auto 3rem; }
.gold-bar { width: 4px; height: auto; background: #f1b05a; }

/* ---- HIZMETLER ---- */
.services-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media(min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(39,39,42,0.3);
  transition: all 0.5s;
}
.service-card:hover { border-color: #f1b05a; }
.service-card h2 {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: #f1b05a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  transition: transform 0.2s;
}
.service-card:hover h2 { transform: translateX(8px); }
.service-card p { color: #9ca3af; font-weight: 300; font-size: 0.875rem; line-height: 1.6; }

/* ---- KURUMSAL ---- */
.kurumsal-grid {
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media(min-width: 768px) { .kurumsal-grid { grid-template-columns: 1fr 1fr; } }
.kurumsal-text { color: #d1d5db; font-weight: 300; line-height: 1.8; font-size: 1.125rem; }
.kurumsal-text p + p { margin-top: 1.5rem; }
.kurumsal-text strong { color: #fff; }
.kurumsal-box {
  background: rgba(39,39,42,0.5);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.kurumsal-box h3 { color: #f1b05a; font-size: 1.25rem; margin-bottom: 1rem; font-style: italic; }
.kurumsal-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.kurumsal-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kurumsal-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #f1b05a;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- ARACLAR ---- */
.vehicles-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media(min-width: 768px) { .vehicles-grid { grid-template-columns: 1fr 1fr; } }
.vehicle-card {
  background: rgba(39,39,42,0.5);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(241,176,90,0.1);
  transition: border-color 0.5s;
}
.vehicle-card:hover { border-color: rgba(241,176,90,0.5); }
.vehicle-card img { width: 100%; height: 18rem; object-fit: cover; opacity: 0.8; transition: transform 1s; }
.vehicle-card:hover img { transform: scale(1.05); }
.vehicle-info { padding: 2.5rem; }
.vehicle-info h3 { font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.vehicle-info p { color: #9ca3af; font-weight: 300; line-height: 1.6; margin-bottom: 2rem; }
.vehicle-btn {
  background: #f1b05a;
  color: #000;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s;
}
.vehicle-btn:hover { transform: scale(1.05); }

/* ---- SSS ---- */
.sss-wrapper { max-width: 48rem; margin: 0 auto; border-left: 1px solid rgba(241,176,90,0.3); padding-left: 2rem; }
.sss-item { margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 2rem; }
.sss-question {
  font-size: 1rem;
  color: #f1b05a;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #f1b05a;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: 'Play', sans-serif;
  font-size: 1rem;
}
.sss-answer { color: #9ca3af; font-size: 0.875rem; line-height: 1.7; margin-top: 1rem; display: none; }
.sss-item.open .sss-answer { display: block; }
.sss-item.open .sss-icon { transform: rotate(45deg); }
.sss-icon { transition: transform 0.2s; font-size: 1.5rem; font-weight: 300; }

/* ---- İLETİŞİM ---- */
.iletisim-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media(min-width: 768px) { .iletisim-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-label { color: #f1b05a; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.05em; min-width: 60px; }
.contact-value { font-size: 1.125rem; }
.contact-form-box {
  background: rgba(39,39,42,0.4);
  padding: 2.5rem;
  border: 1px solid rgba(241,176,90,0.2);
}
.contact-form-box h3 { color: #f1b05a; margin-bottom: 1.5rem; letter-spacing: 0.1em; font-size: 0.875rem; font-style: italic; }
.contact-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 0;
  color: #fff;
  font-family: 'Play', sans-serif;
  outline: none;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
  font-size: 1rem;
}
.contact-input:focus { border-bottom-color: #f1b05a; }
.contact-submit {
  width: 100%;
  background: #f1b05a;
  color: #000;
  font-family: 'Play', sans-serif;
  font-weight: 700;
  padding: 1rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background 0.5s;
  font-size: 0.875rem;
}
.contact-submit:hover { background: #fff; }

/* ---- BAYİ GİRİŞ ---- */
.bayi-login-wrap {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.bayi-login-box {
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
  border: 1px solid rgba(241,176,90,0.3);
  background: rgba(0,0,0,0.8);
}
.bayi-login-box h2 {
  color: #f1b05a;
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: italic;
}
.bayi-input {
  width: 100%;
  background: #000;
  border: 1px solid #374151;
  padding: 0.75rem;
  color: #fff;
  text-align: center;
  outline: none;
  font-family: 'Play', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.bayi-input:focus { border-color: #f1b05a; }
.bayi-submit {
  width: 100%;
  background: #f1b05a;
  color: #000;
  font-weight: 700;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'Play', sans-serif;
  transition: background 0.2s;
}
.bayi-submit:hover { background: #fff; }
.bayi-error { color: #ef4444; font-size: 0.75rem; text-transform: uppercase; text-align: center; margin-bottom: 0.5rem; }

/* ---- BAYİ PANEL ---- */
.bayi-panel {
  min-height: 100vh;
  background: #09090b;
  color: #fff;
  padding: 1.5rem;
  font-family: 'Play', sans-serif;
}
@media(min-width: 768px) { .bayi-panel { padding: 3rem; } }
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(241,176,90,0.3);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}
.panel-header h1 { color: #f1b05a; font-size: 1.5rem; letter-spacing: 0.15em; text-transform: uppercase; font-style: italic; }
.panel-header p { color: #6b7280; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.25rem; }
.logout-btn {
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.3);
  padding: 0.5rem 1rem;
  background: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: 'Play', sans-serif;
  text-transform: uppercase;
  transition: all 0.2s;
}
.logout-btn:hover { background: #ef4444; color: #fff; }
.reservations-table {
  overflow-x: auto;
  border: 1px solid #1f2937;
  background: rgba(0,0,0,0.4);
}
.reservations-table table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.reservations-table thead { background: rgba(241,176,90,0.1); }
.reservations-table th { padding: 1rem; border-bottom: 1px solid #1f2937; color: #f1b05a; text-transform: uppercase; letter-spacing: 0.05em; font-style: italic; text-align: left; }
.reservations-table td { padding: 1rem; border-bottom: 1px solid #111827; vertical-align: top; }
.reservations-table tr:hover td { background: rgba(255,255,255,0.02); }
.td-sub { font-size: 0.625rem; color: #6b7280; }
.btn-onay { background: rgba(22,163,74,0.2); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); padding: 0.25rem 0.5rem; font-size: 0.625rem; text-transform: uppercase; cursor: pointer; font-family: 'Play', sans-serif; }
.btn-sil { background: rgba(220,38,38,0.2); color: #f87171; border: 1px solid rgba(248,113,113,0.3); padding: 0.25rem 0.5rem; font-size: 0.625rem; text-transform: uppercase; cursor: pointer; font-family: 'Play', sans-serif; margin-left: 0.5rem; }
.status-badge { font-size: 0.7rem; padding: 2px 8px; border-radius: 3px; }
.status-beklemede { background: rgba(234,179,8,0.2); color: #fbbf24; }
.status-onaylandi { background: rgba(22,163,74,0.2); color: #4ade80; }
.status-iptal { background: rgba(220,38,38,0.2); color: #f87171; }

/* ---- WHATSAPP BUTTON ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 80;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; fill: #fff; }

/* ---- UPDATED BOOKING FORM ROWS ---- */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media(min-width: 768px) {
  .form-row { grid-template-columns: repeat(4, 1fr); }
}
.return-row {
  border-top: 1px solid #27272a;
  padding-top: 1rem;
}
.form-bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media(min-width: 768px) {
  .form-bottom-row { grid-template-columns: 1fr auto; align-items: stretch; }
}
.form-bottom-row .submit-btn {
  min-width: 220px;
  padding: 1rem 1.5rem;
}

/* ---- SLIDESHOW BACKGROUND ---- */
.hero-slides {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 0.45;
  animation: kenburns 8s ease-out forwards;
}

/* ===== SLIDESHOW FINAL FIX ===== */
.home-hero { position: relative; }
.hero-slides {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  z-index: 0 !important;
  overflow: hidden;
}
.hero-slide {
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 0.42 !important;
  animation: kenburns 8s ease-out forwards;
}
.hero-overlay {
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5) !important;
  z-index: 1 !important;
  pointer-events: none;
}
.hero-content {
  position: relative !important;
  z-index: 2 !important;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.12) translate(-1%,1%); }
}

/* WordPress Editör İçeriği */
.wp-editable-content { color: #d4d4d8; line-height: 1.8; }
.wp-editable-content h1, .wp-editable-content h2, .wp-editable-content h3 { color: #f1b05a; margin: 1.5rem 0 1rem; }
.wp-editable-content h4, .wp-editable-content h5 { color: #fff; margin: 1rem 0 .5rem; }
.wp-editable-content p { margin-bottom: 1rem; }
.wp-editable-content ul, .wp-editable-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.wp-editable-content li { margin-bottom: .4rem; }
.wp-editable-content strong { color: #fff; }
.wp-editable-content a { color: #f1b05a; }
.wp-editable-content img { max-width: 100%; border-radius: .5rem; margin: 1rem 0; }
.wp-editable-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.wp-editable-content td, .wp-editable-content th { padding: .5rem 1rem; border: 1px solid #27272a; }
.wp-editable-content th { background: #18181b; color: #f1b05a; }
