/* =========================================
   BUĞRA POLAT TURİZM - ANA SAYFA (INDEX) CSS
   (TAŞMA VE İÇ İÇE GEÇME SORUNU GİDERİLDİ)
========================================= */
/* =========================================
   BUZLU CAM (GLASSMORPHISM) VIP PRELOADER
========================================= */
#bp-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Arkada Kıbrıs Manzarası */
  background: url("/Frontend/photo/yenifoto5.jpg") center/cover no-repeat;
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

/* Manzarayı lacivert tonla karartıp asil bir hava katar */
#bp-preloader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 61, 122, 0.7); /* Kurumsal Lacivert Overlay */
}

/* Lüks Buzlu Cam Paneli */
.bp-glass-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px 60px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Altın Renkli Zarif Spinner */
.bp-spinner {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #d4af37; /* Lüks Altın Sarısı */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

/* Marka İsmi */
.bp-brand {
  color: #ffffff;
  font-family: "Times New Roman", serif;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 6px;
  margin-bottom: 8px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Alt Başlık */
.bp-sub {
  color: #d4af37; /* Altın Sarısı */
  font-family: "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* JS ile tetiklenen gizleme kodu */
.preloader-hide {
  opacity: 0 !important;
  visibility: hidden !important;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@700&display=swap");
:root {
  --primary: #0f3d7a;
  --accent: #f39c12;
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-light: #f4f7fa;
  --bg-white: #ffffff;
  --border-color: #eaeaea;
  --transition: 0.3s ease-in-out;
}

/* 1. Global & Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  outline: none;
  transition: var(--transition);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-padding {
  padding: 80px 0;
}
.bg-light {
  background-color: var(--bg-light);
}
.bg-white {
  background-color: var(--bg-white);
}
.mt-100 {
  margin-top: 100px;
}
.mt-50 {
  margin-top: 50px;
}
.text-center {
  text-align: center;
}

/* 2. Topbar */
.topbar {
  background-color: var(--primary);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.topbar i {
  color: var(--accent);
  margin-right: 5px;
}
.topbar-phone-link,
.topbar-phone-link:visited {
  color: #fff !important;
  font-weight: 600;
}
.topbar-phone-link:hover {
  color: var(--accent) !important;
}
.top-whatsapp-btn,
.top-whatsapp-btn:visited {
  color: #fff !important;
  font-weight: 600;
}
.top-whatsapp-btn:hover {
  color: var(--accent) !important;
  opacity: 0.8;
}

/* 3. Header & Navigation */
.main-header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  list-style: none !important;
  align-items: center;
  gap: 25px;
  margin: 0 !important;
  padding: 0 !important;
}
.nav-header-mobile {
  display: none;
}

.main-nav ul li a {
  color: var(--primary) !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}
.main-nav ul li a:hover {
  color: var(--accent) !important;
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}

.main-nav ul li a.nav-cta {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  padding: 10px 25px !important;
  border-radius: 50px !important;
  display: inline-block;
}
.main-nav ul li a.nav-cta::after {
  display: none !important;
}
.main-nav ul li a.nav-cta:hover {
  background-color: var(--accent) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
}

/* Masaüstü Dil Menüsü Hizalaması */
.lang-item-desktop {
  margin-left: 10px;
}
.lang-menu {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.selected-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 50px;
  background: var(--bg-light);
  transition: 0.3s;
  border: 1px solid var(--border-color);
}
.selected-lang img {
  border-radius: 3px;
  width: 20px;
}
.selected-lang i {
  font-size: 12px;
  transition: 0.3s;
}
.lang-menu:hover .selected-lang i {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 130%;
  right: 0;
  background: #fff;
  list-style: none !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
  z-index: 1000;
}
.lang-menu:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown li {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  color: var(--text-dark);
}
.lang-dropdown li img {
  width: 20px;
  border-radius: 3px;
}
.lang-dropdown li:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 26px;
  color: var(--primary);
  cursor: pointer;
  transition: 0.3s;
}

/* =========================================
   4. HERO BÖLÜMÜ
========================================= */
.hero-section {
  position: relative;
  width: 100%;
  display: block;
}
.heroSwiper {
  height: 80vh;
  min-height: 600px;
  width: 100%;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}
.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}
.slide-content h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.slide-content p {
  font-size: 20px;
  font-weight: 500;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

/* 5. YENİ REZERVASYON FORMU */
.hero-booking-wrapper {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 100;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}
.hero-booking-form {
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.98);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  gap: 12px;
  align-items: center;
}
.form-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0 15px;
  flex: 1 1 calc(16.66% - 12px);
  min-width: 150px;
  position: relative;
  background: #fff;
  transition: 0.3s;
}
.form-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 5px rgba(15, 61, 122, 0.2);
}
.form-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  flex-shrink: 0;
}

.form-group input,
.form-group select {
  border: none;
  outline: none;
  padding: 15px 5px 15px 30px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background: transparent;
}

.form-group select {
  cursor: pointer;
  padding-right: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230f3d7a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 10px auto;
}

.btn-primary {
  flex: 1 1 calc(16.66% - 12px);
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 0;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  height: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

/* 6. Ortak Başlıklar */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.subtitle span:first-child,
.subtitle span:last-child {
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
  flex-shrink: 0;
}
.subtitle span:nth-child(2) {
  width: auto;
  height: auto;
  background: transparent;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  word-break: break-word;
}

.services-carousel-container {
  position: relative;
  padding-bottom: 40px;
}
.services-nav-wrapper {
  position: absolute;
  width: 100%;
  top: 45%;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
.services-carousel-container .swiper-button-prev,
.services-carousel-container .swiper-button-next {
  pointer-events: auto;
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
}
.s-prev {
  left: -60px;
}
.s-next {
  right: -60px;
}

/* 7. Grid ve Kart Yapıları */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card,
.vehicle-card,
.tour-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover,
.vehicle-card:hover,
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.card-img {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 62, 122, 0.8);
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.img-bar.center {
  justify-content: center;
}
.card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
  position: relative;
}
.card-body h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}
.card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 15px;
}
.tag {
  font-size: 11px;
  color: #888;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
.circle-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary) !important;
  background: #fff;
  transition: 0.3s;
  z-index: 5;
}
.circle-icon:hover {
  background-color: var(--primary);
  color: #fff !important;
  transform: scale(1.1);
}
.circle-icon.green {
  border-color: #25d366;
  color: #25d366 !important;
}
.circle-icon.green:hover {
  background-color: #25d366;
  color: #fff !important;
  border-color: #25d366;
}

/* 8. Müşteri Yorumları */
.testimonial-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  margin-top: 30px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonial-card.active {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
  border-color: var(--primary);
  z-index: 5;
}
.testi-box {
  flex-grow: 1;
  margin-bottom: 20px;
}
.author-img {
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.stars {
  color: var(--accent);
  font-size: 12px;
}

/* 9. Teklif Al */
.offer-section {
  background:
    linear-gradient(rgba(15, 61, 122, 0.9), rgba(15, 61, 122, 0.9)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  color: #fff;
}
.offer-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
.offer-left,
.offer-right {
  flex: 1;
  min-width: 0;
}
.offer-left h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  word-break: break-word;
}
.offer-tag {
  color: var(--accent);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.offer-tag span:first-child {
  width: auto;
  height: auto;
  background: transparent;
}
.offer-tag span:last-child {
  height: 2px;
  width: 40px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.offer-form-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.offer-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.offer-form-box input,
.offer-form-box textarea,
.offer-form-box select {
  width: 100%;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-dark);
}
.btn-offer {
  width: 100%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 15px;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-offer:hover {
  transform: scale(1.02);
  background: #fff;
}

/* 10. Footer */
.main-footer {
  background-color: var(--primary);
  color: #fff;
  padding: 80px 0 20px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: #fff !important;
  display: block;
  margin-bottom: 20px;
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-links li a {
  color: #cbd5e0 !important;
  transition: 0.3s;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.footer-links li a:hover {
  color: var(--accent) !important;
  padding-left: 5px;
}
.footer-contact li {
  color: #cbd5e0;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #a0aec0;
}

/* 11. Sabit Butonlar */
.whatsapp-fixed-left {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25d366;
  color: #fff !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.phone-fixed-right {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: #fff !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.whatsapp-fixed-left:hover,
.phone-fixed-right:hover {
  transform: scale(1.1);
}

/* 12. Responsive & Mobil Menü Düzeltmeleri */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* TABLET (1024px) */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-booking-form .form-group,
  .hero-booking-form .btn-primary {
    flex: 1 1 calc(33.33% - 12px);
  }
}

/* BÜYÜK MOBİL VE TABLET DİKEY (992px) */
@media (max-width: 992px) {
  body {
    padding-top: 72px;
  }
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
  }
  .container {
    padding: 0 20px;
  }
  .topbar {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: auto;
  }
  .main-nav.active {
    right: 0;
  }
  .nav-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
  }
  .nav-title {
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
  }
  .close-menu {
    font-size: 22px;
    color: var(--text-gray);
    cursor: pointer;
  }

  .lang-item-desktop {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  .selected-lang {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }
  .lang-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid #eee;
    margin-top: 5px !important;
    display: none;
  }
  .lang-menu:hover .lang-dropdown {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .main-nav ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    width: 100%;
    color: var(--primary) !important;
  }
  .main-nav ul li a::after {
    display: none !important;
  }
  .nav-cta {
    border-radius: 8px !important;
    margin-top: 15px;
    text-align: center;
  }

  .hero-booking-wrapper {
    position: relative;
    bottom: 0;
    margin: -30px auto 30px;
    padding: 0 15px;
  }

  .mt-100 {
    margin-top: 50px;
  }

  .offer-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .offer-form-row {
    flex-direction: column;
    gap: 15px;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer-contact li {
    justify-content: center;
  }

  .s-prev {
    left: 5px;
  }
  .s-next {
    right: 5px;
  }
  .services-carousel-container .swiper-button-prev,
  .services-carousel-container .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}

/* KÜÇÜK MOBİL (768px ve altı) İÇİN MEDİA QUERY'LER */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .heroSwiper {
    height: 50vh;
    min-height: 400px;
  }

  .slide-content h2 {
    font-size: 28px;
  }
  .slide-content p {
    font-size: 16px;
  }
  .section-title h2 {
    font-size: 22px;
  }
  .section-padding {
    padding: 40px 0;
  }
  .offer-left h2 {
    font-size: 28px;
    text-align: center;
  }
  .offer-tag,
  .offer-left p {
    justify-content: center;
    text-align: center;
  }

  .hero-booking-form {
    flex-direction: column;
    padding: 20px;
  }
  .hero-booking-form .form-group,
  .hero-booking-form .btn-primary {
    flex: 1 1 100%;
    width: 100%;
  }

  /* Araç Kartları Mobil Düzeltme */
  .v-content-side h3 {
    font-size: 22px;
  }
  .tab-header {
    flex-direction: column;
  }
  .tab-btn {
    border-bottom: 1px solid #ddd;
    border-left: 3px solid transparent;
    justify-content: flex-start;
    padding: 15px 20px;
  }
  .tab-btn.active {
    border-bottom: 1px solid #ddd;
    border-left: 3px solid var(--primary);
  }
  .inline-rez-form {
    flex-direction: column;
  }
}

/* =======================================================
   MOBİL İÇİN BUTON DÜZELTMESİ (AŞIRI DAR/İNCE GÖRÜNÜMÜ ESNESİR)
======================================================= */
@media (max-width: 768px) {
  .hero-booking-form button,
  .btn-primary,
  .btn-offer {
    padding: 16px 20px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    height: auto !important;
    line-height: normal !important;
    width: 100% !important;
  }
}

/* =======================================================
   SADECE ARAÇLAR VİTRİNİ İÇİN LÜKS HOVER EFEKTLERİ
   (Turlar kısmını veya sayfanın hiçbir yerini etkilemez)
======================================================= */
.hover-arac-kart {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #eaeaea;
}
.hover-arac-kart:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(15, 61, 122, 0.15) !important;
  border-color: rgba(15, 61, 122, 0.2);
}
.hover-arac-img {
  transition: transform 0.6s ease;
}
.hover-arac-kart:hover .hover-arac-img {
  transform: scale(1.08);
}
.hover-arac-btn {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-weight: 700 !important;
}
.hover-arac-btn:hover {
  background: transparent !important;
  color: #0f3d7a !important;
  border-color: #0f3d7a !important;
}

/* =======================================================
   13. VIP ÇEREZ (COOKIE) ONAY BANNER - YENİ MODERN TASARIM
======================================================= */
.cookie-consent-banner {
  position: fixed;
  bottom: -150px; /* Başlangıçta gizli tutar */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px; /* Ekranı boydan boya kaplamaz, şık bir kart gibi durur */
  background: rgba(
    15,
    61,
    122,
    0.95
  ); /* Marka renginin çok hafif şeffaf hali */
  backdrop-filter: blur(10px); /* Lüks buzlu cam efekti */
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999999;
  transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 16px; /* Köşeleri yuvarlak */
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 20px;
}

.cookie-consent-banner.show {
  bottom: 30px; /* Ekranda zarifçe yüzer */
}

.cookie-consent-banner .cookie-text {
  font-size: 14px;
  text-align: left;
  line-height: 1.5;
  flex-grow: 1;
}

.cookie-consent-banner .cookie-text a {
  color: #f39c12; /* Turuncu vurgu */
  text-decoration: none;
  margin-left: 5px;
  font-weight: 700;
  border-bottom: 1px dashed #f39c12;
  transition: 0.3s;
}

.cookie-consent-banner .cookie-text a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.cookie-consent-banner button {
  background-color: #f39c12;
  color: #0f3d7a;
  border: none;
  padding: 10px 30px;
  font-weight: 800;
  border-radius: 50px; /* Hap (pill) şeklinde lüks buton */
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cookie-consent-banner button:hover {
  background-color: #fff;
  color: #0f3d7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    bottom: -200px;
    border-radius: 16px 16px 0 0; /* Mobilde sadece üst köşeler yuvarlak */
    width: 100%;
    max-width: 100%;
  }
  .cookie-consent-banner.show {
    bottom: 0; /* Mobilde en alta tam oturur (Bottom Sheet mantığı) */
  }
  .cookie-consent-banner .cookie-text {
    text-align: center;
  }
  .cookie-consent-banner button {
    width: 100%;
  }
}
