/* =========================================
   BUĞRA POLAT TURİZM - TURLAR ÖZEL CSS
   (MENÜ & FOOTER DAHİL TAM BAĞIMSIZ DOSYA)
========================================= */
/* =========================================
   BUZLU CAM (GLASSMORPHISM) VIP PRELOADER
========================================= */
#bp-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("/Frontend/photo/yenifoto1.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;
}

#bp-preloader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 61, 122, 0.7);
}

.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;
}

.bp-spinner {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #d4af37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.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);
}

.bp-sub {
  color: #d4af37;
  font-family: "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.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);
}

/* 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;
  text-decoration: none;
  font-weight: 600;
}

.topbar-phone-link:hover {
  color: var(--accent) !important;
}

.top-whatsapp-btn,
.top-whatsapp-btn:visited {
  color: #fff !important;
  text-decoration: none;
  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;
  text-decoration: none;
  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;
  transition: 0.3s;
  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ü */
.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. Turlar Hero Alanı */
.tours-hero {
  height: 400px;
  background:
    linear-gradient(rgba(15, 61, 122, 0.8), rgba(15, 61, 122, 0.8)),
    url("/Frontend/photo/buyukhanYeni.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.tours-hero h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tours-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.breadcrumb-container {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-container a {
  color: #fff !important;
}

.breadcrumb-container a:hover {
  color: var(--accent) !important;
}

.breadcrumb-container span {
  color: var(--accent);
  margin: 0 5px;
}

.offer-tag {
  color: var(--accent);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.offer-tag span:last-child {
  height: 2px;
  width: 40px;
  background: var(--accent);
  display: inline-block;
}

/* 5. Turlar Grid & Kart Yapısı */
.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);
  text-transform: uppercase;
}

.subtitle span:first-child,
.subtitle span:last-child {
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.tours-vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.tour-v-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  height: 100%;
}

.tour-v-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(15, 61, 122, 0.1);
}

.tour-v-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-v-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.tour-v-card:hover .tour-v-img img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  z-index: 2;
}

.tour-v-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 80px;
}

.tour-v-body h3 {
  font-size: 20px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.tour-v-body p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.tag {
  font-size: 11px;
  color: #888;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* 6. Tur Sekmeleri */
.tour-v-tabs {
  background: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 20px;
}

.t-v-tab-header {
  display: flex;
  border-bottom: 1px solid #eee;
}

.tv-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: #eee;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  color: #888;
  transition: 0.3s;
}

.tv-btn.active {
  background: #fff;
  color: var(--primary);
}

.tv-tab-content {
  padding: 15px;
  display: none;
}

.tv-tab-content.active {
  display: block;
  animation: fadeIn 0.4s;
}

.v-tour-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v-tour-list li {
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.v-tour-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 8px;
}

.v-mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.v-mini-gallery img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
}

.btn-tour-v {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: var(--primary) !important;
  color: #fff !important;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  transition: 0.3s;
}

.btn-tour-v:hover {
  background: var(--accent) !important;
  transform: translateY(-2px);
}

/* 7. 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;
}

/* 8. 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);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 9. Mobil Menü & Responsive */
.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;
}

@media (max-width: 992px) {
  body {
    padding-top: 72px;
  }
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
  }
  .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;
  }
  .nav-cta {
    border-radius: 8px !important;
    margin-top: 15px;
    text-align: center;
  }
  .tours-vertical-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .tours-vertical-grid {
    grid-template-columns: 1fr;
  }
  .tours-hero {
    height: 300px;
  }
  .tours-hero h1 {
    font-size: 32px;
  }
  .section-padding {
    padding: 50px 0;
  }
}

/* =======================================================
   10. VIP ÇEREZ (COOKIE) ONAY BANNER - MODERN TASARIM
======================================================= */
.cookie-consent-banner {
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  background: rgba(15, 61, 122, 0.95);
  backdrop-filter: blur(10px);
  -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;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 20px;
}

.cookie-consent-banner.show {
  bottom: 30px;
}

.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;
  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;
  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;
    width: 100%;
    max-width: 100%;
  }
  .cookie-consent-banner.show {
    bottom: 0;
  }
  .cookie-consent-banner .cookie-text {
    text-align: center;
  }
  .cookie-consent-banner button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-booking-form button,
  .btn-primary,
  .btn-offer,
  .btn-tour-v {
    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;
  }
}
