/* =========================================
   BUĞRA POLAT TURİZM - HİZMETLERİMİZ Ö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;
  /* Arkada Kıbrıs Manzarası */
  background: url("/Frontend/photo/yenifoto3.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-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 {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
}
.topbar-phone-link:hover {
  color: var(--accent) !important;
}
.top-whatsapp-btn {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
}
.top-whatsapp-btn:hover {
  color: var(--accent) !important;
  opacity: 0.8;
}

/* 3. Header & Navigation (Ortak Yapı) */
.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ü 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;
  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. Hizmetler Hero Alanı */
.services-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}
.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 61, 122, 0.8), rgba(15, 61, 122, 0.9));
}
.services-hero .container {
  position: relative;
  z-index: 2;
}
.services-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
}
.breadcrumb {
  font-size: 14px;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--accent) !important;
}
.breadcrumb span {
  color: #ccc;
  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. Hizmet Detay Satırları */
.service-detail-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
.service-detail-row.reverse {
  flex-direction: row-reverse;
}

.service-detail-img {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-detail-row:hover .service-detail-img img {
  transform: scale(1.05);
}

.img-overlay-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 20px;
  font-weight: 800;
  font-size: 12px;
  border-radius: 5px;
  z-index: 2;
}

.service-detail-content {
  flex: 1;
}
.content-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.content-header .number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(15, 61, 122, 0.1);
  line-height: 1;
}
.content-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.service-detail-content p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary) !important;
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 700;
  transition: 0.3s;
}
.btn-primary:hover {
  background-color: var(--accent) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
}

/* 6. 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-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #a0aec0;
}

/* 7. 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);
}
.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);
}

/* 8. Mobil Menü & Responsive (Eksiksiz) */
.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;
  }

  .service-detail-row,
  .service-detail-row.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
  .service-detail-img img {
    height: 300px;
  }
  .services-hero h1 {
    font-size: 34px;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .content-header h2 {
    font-size: 24px;
  }
  .content-header .number {
    font-size: 36px;
  }
  .section-padding {
    padding: 50px 0;
  }
}
/* =======================================================
   MOBİL İÇİN HİZMETLER RESİM DÜZELTMESİ (KESİLMEYİ ÖNLER)
======================================================= */
@media (max-width: 768px) {
  .service-detail-img {
    height: 240px !important; /* Yüksekliği düşürerek resmi yatay dikdörtgen formuna sokar */
    width: 100%;
    border-radius: 12px; /* Köşelerin yumuşaklığını korur */
    overflow: hidden;
  }

  .service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Boşluk kalmamasını sağlar */
    object-position: center; /* Odağı her zaman fotoğrafın tam merkezine (araca) sabitler */
  }

  /* Turuncu bilgilendirme etiketini mobilde biraz küçülterek aracı kapatmasını engelleriz */
  .img-overlay-info {
    padding: 8px 16px !important;
    font-size: 12px !important;
    bottom: 15px !important;
    left: 15px !important;
  }
}
/* =======================================================
   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; /* Butonu dikeyde ve yatayda dolgunlaştırır */
    font-size: 16px !important; /* Mobilde yazının rahat okunmasını sağlar */
    font-weight: 800 !important;
    border-radius: 10px !important; /* Köşeleri modern ve yumuşak yapar */
    height: auto !important; /* Eğer başka yerde sabit yükseklik verildiyse onu ezer */
    line-height: normal !important; /* Metnin tam ortalanmasını sağlar */
    width: 100% !important; /* Ekrana tam yayılmasını sağlar */
  }
}

/* =======================================================
   9. 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%;
  }
}
