
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, Arial, sans-serif;
}

body {
    background: linear-gradient(180deg, #020617, #0b1220);
    color: #e5e7eb;
    overflow-x: hidden;
}

/* =====================
   HEADER
===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(2,6,23,.55);
    backdrop-filter: blur(16px);
    z-index: 2000;
    transition: .4s;
}

body {
  padding-top: 90px;
}

.header.scrolled {
    background: rgba(2,6,23,.95);
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #f8fafc;
    text-decoration: none;
}

/* =====================
   HAMBURGER
===================== */
.menu-btn {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-btn span {
    height: 3px;
    background: #f8fafc;
    border-radius: 3px;
}


/* =====================
   HERO – VIDEO
===================== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2,6,23,.85),
        rgba(2,6,23,.45),
        rgba(2,6,23,.9)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 120px 40px 0;
    animation: fadeUp 1.3s ease forwards;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 86px);
    line-height: 1.1;
    text-shadow: 0 25px 80px rgba(0,0,0,.9);
}

.hero-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 46px;
    border-radius: 60px;
    background: linear-gradient(135deg,#22c55e,#38bdf8);
    color: #020617;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 30px 90px rgba(34,197,94,.45);
    transition: .4s;
}

.hero-btn:hover {
    transform: translateY(-6px) scale(1.06);
}
.hero-content h3 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}
.hero-slogan {
    display: block;
    margin-top: 15px;
    font-style: italic;
    color: #d4af37;
}
/* =========================
   HERO VIDEO FEEL
========================= */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(56,189,248,0.25),
        transparent 60%
    );
    animation: heroGlow 8s infinite alternate;
}

@keyframes heroGlow {
    from {
        opacity: 0.3;
        transform: scale(1);
    }
    to {
        opacity: 0.7;
        transform: scale(1.1);
    }
}


/* =====================
   TOUR CARDS – CINEMA
===================== */
.tours {
    padding: 100px 25px;
}

.tour-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 40px;
}

.tour-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 40px 120px rgba(0,0,0,.85);
    transition: .45s;
}

.tour-card:hover {
    transform: translateY(-14px) scale(1.03);
}

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-card::after {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.1));
}

.tour-info {
    position:absolute;
    bottom:0;
    padding:26px;
    z-index:2;
}

.tour-info h3 {
    color:#38bdf8;
}

.tour-link {
    color:#f5b301;
    font-weight:600;
    text-decoration:none;
}

/* =========================
   TUR SLIDER PREMIUM
========================= */

.tour-grid {
    display: flex !important;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.tour-grid::-webkit-scrollbar {
    height: 6px;
}

.tour-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #38bdf8, #22c55e);
    border-radius: 10px;
}

.tour-card {
    min-width: 300px;
    scroll-snap-align: center;
}


/* =====================
   REVIEWS – PREMIUM SLIDER
===================== */
.reviews {
    padding: 100px 25px;
}

.review-slider {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

.review-list {
    display: flex;
    gap: 30px;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}

.review-card {
    min-width: 300px;
    background: rgba(15,23,42,.85);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,.7);
    transition: .35s;
}

.review-card:hover {
    transform: translateY(-8px);
}

.stars {
    color:#f5b301;
    font-size: 18px;
}

/* =====================
   REVIEW FORM
===================== */
.review-form-wrapper {
    max-width: 520px;
    margin: 90px auto 0;
    background: rgba(255,255,255,.95);
    padding: 44px;
    border-radius: 30px;
    color:#020617;
    box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.review-form input,
.review-form textarea {
    width:100%;
    padding:14px;
    margin-bottom:14px;
    border-radius:12px;
    border:1px solid #ccc;
}

.review-form button {
    width:100%;
    padding:15px;
    border-radius:40px;
    border:none;
    background: linear-gradient(135deg,#8b0000,#5a0000);
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.review-form button:hover {
    transform: translateY(-3px);
}

/* =====================
   SIDE MENU
===================== */




.menu-list li {
    margin-bottom:18px;
    color:#fff;
}

/* =====================
   FOOTER
===================== */
.footer {
    background:#020617;
    margin-top:120px;
}

.footer-top {
    max-width:1200px;
    margin:auto;
    padding:80px 25px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-col h4 {
    margin-bottom:18px;
    position:relative;
}

.footer-col h4::after {
    content:"";
    width:40px;
    height:2px;
    background:#f5b301;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-col a {
    color:#e5e7eb;
    text-decoration:none;
}

.footer-bottom {
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    padding:16px;
    font-size:13px;
}

/* =====================
   MICRO ANIMATIONS
===================== */
@keyframes fadeUp {
    from { opacity:0; transform:translateY(50px); }
    to { opacity:1; transform:translateY(0); }
}

/* =====================
   MOBILE
===================== */
@media (max-width:768px) {
    .hero-content {
        padding: 110px 24px;
    }
    .review-list {
        gap: 20px;
    }
}
.whatsapp-float {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    width: 56px;
    height: 56px;
    z-index: 99999 !important;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
/* === MENU CLICK FIX === */
 

 

.menu-list li,

.menu-lang li {
    pointer-events: all !important;
    cursor: pointer;
}
.menu-list li:hover {
    color: #ffd700;
    transform: translateX(6px);
    transition: 0.3s;
}
/* =========================
   POPÜLER YORUM TASARIMI
========================= */

.customer-reviews {
    background: linear-gradient(180deg, #020617, #0f172a);
    padding: 100px 20px;
}

.reviews-header h2 {
    color: #fff;
    font-size: 36px;
}

.reviews-header p {
    color: #cbd5f5;
}

/* GRID */
.reviews-grid {
    max-width: 1100px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* KART */
.review-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transition: all .35s ease;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 35px 80px rgba(0,0,0,0.6);
}

/* ÜST */
.review-top strong {
    font-size: 17px;
    letter-spacing: 0.4px;
}

.stars {
    color: #facc15;
    font-size: 18px;
}

/* YORUM METNİ */
.review-text {
    margin: 18px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #e5e7eb;
}

/* TARİH */
.review-time {
    font-size: 12px;
    color: #94a3b8;
}

.star-rating span {
    font-size: 26px;
    color: #ccc;
    cursor: pointer;
    transition: .2s;
}

.star-rating span.active {
    color: #f5b301;
    transform: scale(1.2);
}

/* =========================
   MENU CLOSE RIGHT FIX
========================= */


/* =========================
   MENU ANIMATION PREMIUM
========================= */



.menu-list li {
    opacity: 0;
    transform: translateX(30px);
    animation: menuItem 0.5s forwards;
}

.menu-list li:nth-child(1) { animation-delay: .1s; }
.menu-list li:nth-child(2) { animation-delay: .2s; }
.menu-list li:nth-child(3) { animation-delay: .3s; }
.menu-list li:nth-child(4) { animation-delay: .4s; }
.menu-list li:nth-child(5) { animation-delay: .5s; }

@keyframes menuItem {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-list li:hover {
    color: #38bdf8;
    transform: translateX(6px);
}

/* =========================
   PREMIUM GLOBAL TOUCH
========================= */

body {
    background: linear-gradient(180deg, #020617, #020617);
    color: #e5e7eb;
    overflow-x: hidden;
}

section {
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(56,189,248,0.08),
        transparent 60%
    );
    pointer-events: none;
}
/* =========================
   PREMIUM LANGUAGE SELECTOR
========================= */

.menu-lang {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.menu-lang p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: #e5e7eb;
    opacity: 0.85;
}

.menu-lang ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



/* DİL BUTONU */
.menu-lang li {
    position: relative;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);

    transition: all 0.35s ease;
    overflow: hidden;
}

/* HOVER */
.menu-lang li:hover {
    background: rgba(56,189,248,0.18);
    transform: translateX(6px);
    color: #fff;
}

/* AKTİF DİL */
.menu-lang li.active {
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    color: #020617;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(56,189,248,0.45);
}

/* AKTİF OK İŞARETİ */
.menu-lang li.active::after {
    content: "✓";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

/* DALGA EFEKTİ */
.menu-lang li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at left,
        rgba(255,255,255,0.35),
        transparent 60%
    );
    opacity: 0;
    transition: opacity .4s ease;
}

.menu-lang li:hover::before {
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .menu-lang ul {
        gap: 12px;
    }

    .menu-lang li {
        padding: 12px 16px;
        font-size: 15px;
    }
}
/* PAGE FADE */
body.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body {
    transition: opacity 0.3s ease;
}


html[dir="rtl"] .menu-list li {
    text-align: right;
}

html[dir="rtl"] .menu-lang li {
    text-align: right;
}
/* === ADMIN ONAY BEKLIYOR ETIKETI === */
.pending-badge {
    display: inline-block;
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
    box-shadow: 0 6px 18px rgba(250, 204, 21, 0.5);
    animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: .85; }
    100% { transform: scale(1); opacity: 1; }
}
/* =====================
   RTL (ARAPÇA) MENU FIX
===================== */



/* NORMAL (LTR) */
;

/* =========================
   RTL MENU FIX
========================= */

/* Varsayılan (TR / EN) */
#sideMenu {
    right: -100%;
    left: auto;
}

/* Menü açık */
#sideMenu.open {
    right: 0;
}









/* LOGO RENK */
.logo-t {
    color: #7f1d1d; /* bordo */
    font-weight: 900;
}

.logo-s {
    color: #38bdf8; /* mavi */
    font-weight: 900;
}
/* HEADER IMAGE LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;        /* header yüksekliğine göre ayarla */
    width: auto;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
}

/* Hover premium efekti */
.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
}

/* Mobil */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    visibility: visible;
    opacity: 1;
}
#heroTitle {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo-t {
    color: #8B0000; /* bordo */
}

.logo-s {
    color: #1E90FF; /* mavi */
}
.logo-t {
    text-shadow: 0 0 8px rgba(139,0,0,0.7);
}

.logo-s {
    text-shadow: 0 0 8px rgba(30,144,255,0.7);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #fff;
}



.page-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(90,15,26,0.8), rgba(2,6,23,0.9));
}

.page-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.about-section {
    padding: 80px 20px;
}

.about-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 30px;
}

.about-card h2 {
    color: #fff;
    margin-bottom: 15px;
}

.about-card p,
.about-card li {
    color: #ddd;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.about-values li {
    list-style: none;
    margin-bottom: 8px;
}
/* HAMBURGER */
.hamburger {
    width: 30px;
    cursor: pointer;
    z-index: 10001;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 6px 0;
}









.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;

    z-index: 9000;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}



.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  background: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: transform .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}
/* TUR DETAY SAYFASI GENEL */
.tour-hero {
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  ),
  url('../images/trabzon.webp') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
}

.tour-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.tour-hero p {
  color: #f1f1f1;
  font-size: 20px;
  margin-top: 10px;
}

/* İÇERİK ALANI */
.tour-content {
  background: #fff;
  padding: 80px 20px;
  color: #222;
}

.tour-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

/* BLOKLAR */
.tour-block {
  max-width: 900px;
  margin: 0 auto 45px;
}

.tour-block h2 {
  font-size: 26px;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.tour-block p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* NEDEN BÖLÜMÜ */
.tour-why {
  max-width: 900px;
  margin: 70px auto 0;
  background: #f8f9fb;
  padding: 40px;
  border-radius: 12px;
}

.tour-why h2 {
  text-align: center;
  margin-bottom: 25px;
}

.tour-why ul {
  list-style: none;
  padding: 0;
}

.tour-why li {
  padding: 10px 0;
  font-size: 16px;
}
/* ===== Trabzon Merkez Turu - Neden Bölümü ===== */
.why-tour,
.why-tour * {
  color: #222 !important;
}

.why-tour {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.why-tour h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.why-tour ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-tour li {
  font-size: 17px;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.why-tour li::before {
  content: "✔";
  color: #0d6efd;
  font-weight: bold;
  margin-right: 12px;
}
/* ===== PREMIUM WHY TOUR CARD ===== */
.why-tour {
  background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}

/* hafif cam efekti */
.why-tour::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  z-index: 0;
}

.why-tour * {
  position: relative;
  z-index: 1;
  color: #f1f5f9 !important;
}
.why-tour h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: 0.4px;
}

.why-tour ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-tour li {
  font-size: 18px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-tour li:last-child {
  border-bottom: none;
}

.why-tour li::before {
  content: "✦";
  font-size: 18px;
  color: #38bdf8;
  margin-right: 14px;
}
main {
  padding: 80px 0;
}

section {
  margin-bottom: 90px;
}

.container {
  max-width: 1200px;
}
@media (max-width: 768px) {
  .why-tour {
    padding: 28px 22px;
  }

  .why-tour h3 {
    font-size: 24px;
  }

  .why-tour li {
    font-size: 16px;
  }
}
/* ===============================
   FUTURISTIC LUXURY TOUR
================================ */

/* ================================
   FUTURISTIC TOUR SECTION
================================ */

.futuristic-tour {
  width: 100%;
  padding: 120px 6%;
  background: radial-gradient(circle at top, #020617, #000);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* DURAK */
.f-stop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px;
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* NEON BORDER */
.f-stop::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(59,130,246,0.6),
    rgba(139,92,246,0.6),
    transparent
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* SCAN EFFECT */
.f-stop::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  animation: scanMove 12s linear infinite;
}

@keyframes scanMove {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.f-stop:hover {
  transform: translateY(-18px);
  box-shadow:
    0 50px 140px rgba(59,130,246,0.25),
    0 0 90px rgba(139,92,246,0.18);
}

.f-stop:hover::before {
  opacity: 1;
}

/* NUMARA */
.f-index {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
  min-width: 100px;
}

/* CONTENT */
.f-content h3 {
  font-size: 30px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #fff, #bfdbfe, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.f-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 900px;
}

.tour-hero-wide {
  position: relative;
  width: 100%;
  min-height: 75vh;
  padding: 0 6%;
  display: flex;
  align-items: center;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(59,130,246,0.18),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139,92,246,0.15),
      transparent 60%
    ),
    linear-gradient(180deg, #020617, #000);
  overflow: hidden;
}

/* Animated glow lines */
.tour-hero-wide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  animation: heroScan 8s linear infinite;
}

@keyframes heroScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.contact-page-fx{
  min-height:100vh;
  padding:120px 6vw;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:40px;
  background:
    radial-gradient(circle at top,#0a1a2a,#050b12 70%);
  color:#fff;
}

.glass-card{
  backdrop-filter: blur(20px);
  background:rgba(255,255,255,0.08);
  border-radius:22px;
  padding:32px;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 0 40px rgba(0,255,255,0.08);
  transition:.4s ease;
}

.glass-card:hover{
  transform:translateY(-6px) scale(1.01);
  box-shadow:0 0 60px rgba(0,255,255,0.25);
}

.glass-card.hero{
  grid-column:1/-1;
  text-align:center;
  padding:60px 30px;
}

.glass-card.hero h1{
  font-size:clamp(2.2rem,4vw,3.5rem);
  background:linear-gradient(90deg,#00f0ff,#00ff9c);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.contact-desc{
  margin-top:16px;
  font-size:1.1rem;
  opacity:.85;
}

.contact-info{
  list-style:none;
  padding:0;
  margin-top:20px;
  display:grid;
  gap:14px;
}

.contact-info li{
  font-size:1rem;
  opacity:.9;
}

.map-box a{
  color:#00f0ff;
  text-decoration:none;
}

.neo-whatsapp{
  display:inline-block;
  margin-top:16px;
  padding:14px 28px;
  border-radius:50px;
  background:linear-gradient(90deg,#00ff9c,#00f0ff);
  color:#000;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 0 25px rgba(0,255,180,.6);
  transition:.3s;
}

.neo-whatsapp:hover{
  transform:scale(1.05);
  box-shadow:0 0 45px rgba(0,255,180,.9);
}

.contact-form-fx{
  display:grid;
  gap:16px;
  margin-top:20px;
}

.contact-form-fx input,
.contact-form-fx textarea{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;
  padding:14px;
  color:#fff;
  outline:none;
}

.contact-form-fx input:focus,
.contact-form-fx textarea:focus{
  border-color:#00f0ff;
  box-shadow:0 0 15px rgba(0,240,255,.4);
}

.neo-btn{
  margin-top:10px;
  padding:14px;
  border-radius:50px;
  border:none;
  background:linear-gradient(90deg,#00f0ff,#00ff9c);
  color:#000;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 0 25px rgba(0,255,180,.6);
  transition:.3s;
}

.neo-btn:hover{
  transform:scale(1.04);
  box-shadow:0 0 45px rgba(0,255,180,.9);
}

.kvkk-fx{
  font-size:.85rem;
  opacity:.8;
  display:flex;
  gap:8px;
  align-items:flex-start;
}


/* PORTRAIT HERO CARD */
.contact-page-fx{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1300px;
  margin:0 auto;
  padding:60px 20px;
}

/* ANA İLETİŞİM KUTUSU */
.glass-card.hero{
  grid-column:1/-1;
  min-height:120px;        /* DAHA KISA */
  padding:25px 40px;      /* daha ince */
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  border-radius:22px;
}

.glass-card.hero h1{
  font-size:2.2rem;
  margin-bottom:6px;
}

.glass-card.hero p{
  font-size:.95rem;
  max-width:800px;
  opacity:.85;
}

/* ALT 3 KUTU */
.glass-card.info,
.glass-card.whatsapp,
.glass-card.form-card{
  grid-column:auto;
}

.glass-card{
  opacity:0;
  transform:translateY(40px) scale(0.96);
  filter:blur(6px);
  animation:cardIn .9s cubic-bezier(.2,.8,.2,1) forwards;
}

.glass-card:nth-child(1){animation-delay:.1s;}
.glass-card:nth-child(2){animation-delay:.25s;}
.glass-card:nth-child(3){animation-delay:.4s;}
.glass-card:nth-child(4){animation-delay:.55s;}

@keyframes cardIn{
  to{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}
.glass-card{
  opacity:0;
  transform:translateY(40px) scale(0.96);
  filter:blur(6px);
  animation:cardIn .9s cubic-bezier(.2,.8,.2,1) forwards;
}

.glass-card:nth-child(1){animation-delay:.1s;}
.glass-card:nth-child(2){animation-delay:.25s;}
.glass-card:nth-child(3){animation-delay:.4s;}
.glass-card:nth-child(4){animation-delay:.55s;}

@keyframes cardIn{
  to{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}

.glass-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:
    0 0 40px rgba(0,255,255,0.25),
    0 0 80px rgba(0,255,180,0.15);
}

.neo-btn,
.neo-whatsapp{
  position:relative;
  overflow:hidden;
}

.neo-btn::after,
.neo-whatsapp::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle,rgba(0,255,180,.35),transparent 60%);
  opacity:0;
  animation:pulse 2.5s infinite;
}

@keyframes pulse{
  0%{opacity:0;transform:scale(.8);}
  50%{opacity:.6;transform:scale(1);}
  100%{opacity:0;transform:scale(1.3);}
}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:58px;
  height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:white;
  z-index:9999;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  transition:.3s ease;
}

.whatsapp-float:hover{
  transform:scale(1.08);
  box-shadow:0 15px 35px rgba(0,0,0,.35);
}


.tour-hero-wide{
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#0b1d26,#0f2a36);
  overflow:hidden;
}

.tour-hero-content{
  text-align:center;
  max-width:900px;
  padding:40px;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.06);
  border-radius:28px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.tour-hero-content h1{
  font-size:3rem;
  margin-bottom:10px;
}

.tour-tagline{
  font-size:1.2rem;
  opacity:.85;
}

.why-tour-futuristic{
  margin-top:60px;
  padding:50px;
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  backdrop-filter:blur(14px);
  box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.why-tour-futuristic h2{
  text-align:center;
  font-size:2.2rem;
  margin-bottom:30px;
}

.why-tour-futuristic ul{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  list-style:none;
  padding:0;
}

.why-tour-futuristic li{
  background:rgba(255,255,255,.06);
  padding:18px 22px;
  border-radius:18px;
  font-size:1rem;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  transition:.3s;
}

.why-tour-futuristic li::before{
  content:"✔";
  color:#00ffcc;
  font-weight:bold;
}

.why-tour-futuristic li:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,.45);
}
.iletisim-page-fx{
  position:relative;
  z-index:1;
}




header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}

/* Admin yazısı ortada */
.header-title,
.admin-title,
.header-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  font-weight:600;
  letter-spacing:1px;
}


/* OVERLAY */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 10000;
}

.menu-overlay.is-open{
  opacity: 1;
  pointer-events: all;
}


/* ===== HEADER HARD LOCK ===== */
#mainHeader{
  display:flex !important;
  flex-direction:row !important;
  justify-content:space-between !important;
  align-items:center !important;
  left:0 !important;
  right:0 !important;
}

#mainHeader .header-left{
  flex:1 !important;
  display:flex !important;
  justify-content:flex-start !important;
}

#mainHeader .header-center{
  flex:1 !important;
  display:flex !important;
  justify-content:center !important;
}

#mainHeader .header-right{
  flex:1 !important;
  display:flex !important;
  justify-content:flex-end !important;
}

#mainHeader .hamburger{
  margin-left:auto !important;
  right:0 !important;
}
/* ============================= */
/* PREMIUM CONTACT UI SYSTEM */
/* ============================= */

.contact-premium{
    max-width:1400px;
    margin:0 auto;
    padding:60px 20px 80px;
    display:flex;
    flex-direction:column;
    gap:40px;
}

/* HERO */
.premium-hero{
    text-align:center;
    padding:60px 30px;
    border-radius:28px;
    background:linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(18px);
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
    border:1px solid rgba(255,255,255,0.12);
}

.premium-hero h1{
    font-size:3.2rem;
    font-weight:700;
    letter-spacing:1px;
}

.premium-hero p{
    margin-top:15px;
    font-size:1.2rem;
    opacity:0.85;
}

/* GRID */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

/* CARD */
.premium-card{
    padding:35px 30px;
    border-radius:24px;
    background:rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
    transition:.35s ease;
}

.premium-card:hover{
    transform:translateY(-6px) scale(1.01);
    box-shadow:0 30px 70px rgba(0,0,0,0.35);
}

/* INFO LIST */
.premium-info{
    list-style:none;
    padding:0;
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.premium-info li{
    font-size:1.05rem;
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.premium-info span{
    opacity:0.7;
}

/* MAP */
.premium-map{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-radius:18px;
    background:rgba(0,0,0,0.25);
    transition:.35s;
    text-decoration:none;
    color:#fff;
}

.premium-map:hover{
    background:rgba(0,0,0,0.45);
    transform:scale(1.02);
}

.map-icon{
    font-size:2rem;
}

.map-text{
    line-height:1.5;
}

/* WHATSAPP CTA */
.premium-whatsapp{
    text-align:center;
    padding:45px 25px;
    border-radius:28px;
    background:linear-gradient(145deg, rgba(0,255,170,0.12), rgba(0,0,0,0.15));
    backdrop-filter: blur(18px);
    border:1px solid rgba(0,255,170,0.25);
    box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

.premium-whatsapp h2{
    font-size:2rem;
}

.premium-whatsapp p{
    margin:15px 0 25px;
    opacity:.85;
}

/* BUTTON */
.premium-btn{
    display:inline-block;
    padding:14px 36px;
    border-radius:40px;
    font-weight:600;
    letter-spacing:.5px;
    background:linear-gradient(135deg,#00ffb2,#00c8ff);
    color:#000;
    box-shadow:0 10px 30px rgba(0,255,200,0.45);
    transition:.35s ease;
    text-decoration:none;
}

.premium-btn:hover{
    transform:scale(1.08);
    box-shadow:0 15px 45px rgba(0,255,200,0.7);
}

/* RESPONSIVE */
@media(max-width:900px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .premium-hero h1{
        font-size:2.4rem;
    }
}
/* =========================
   CLEAN MENU SYSTEM FIX
========================= */

/* HAMBURGER */
.hamburger{
  position:relative !important;
  margin-left:auto !important;
  z-index:10002 !important;
  cursor:pointer;
}

/* OVERLAY */
#menuOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:10000;
}

#menuOverlay.active{
  opacity:1;
  pointer-events:auto;
}

/* SIDE MENU */
#sideMenu{
  position:fixed;
  top:0;
  right:0;
  width:320px;
  height:100vh;
  background:#0c1b24;
  z-index:10001;
  transform:translateX(100%);
  transition:.4s ease;
  padding:30px 20px;
}

/* OPEN */
#sideMenu.open{
  transform:translateX(0);
}

/* BODY LOCK */
body.menu-open{
  overflow:hidden;
}

/* HEADER STRUCTURE */
#mainHeader{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  position:fixed !important;
  top:0;
  left:0;
  right:0;
  z-index:2000;
}

#mainHeader .header-left{
  display:flex;
  justify-content:flex-start;
  flex:1;
}

#mainHeader .header-center{
  display:flex;
  justify-content:center;
  flex:1;
  position:relative !important;
  left:auto !important;
  transform:none !important;
}

#mainHeader .header-right{
  display:flex;
  justify-content:flex-end;
  flex:1;
}

/* ADMIN CENTER */
.admin-title{
  position:static !important;
  transform:none !important;
}

/* MENU LIST */
.menu-list li{
  pointer-events:auto !important;
}
#sideMenu{
  transform:translateX(100%) !important;
}

#sideMenu.open{
  transform:translateX(0) !important;
}
/* FORCE LTR SYSTEM */
body{
  direction:ltr !important;
  text-align:left !important;
}

/* RTL sadece ARAPÇA aktifken */
body.rtl{
  direction:rtl !important;
  text-align:right !important;
}
#sideMenu{
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background:#0c1b24;
  z-index:10002;
  transform: translateX(100%);
  transition: .4s ease;
}

#sideMenu.open{
  transform: translateX(0);
}

/* OVERLAY */
#menuOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:10000;
}

#menuOverlay.active{
  opacity:1;
  pointer-events:auto;
}


.floating-whatsapp{
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

.floating-whatsapp img{
    width: 32px;
    height: 32px;
}

.floating-whatsapp:hover{
    transform: scale(1.12);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

/* موبил */
@media(max-width:768px){
    .floating-whatsapp{
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp img{
        width: 28px;
        height: 28px;
    }
}
.whatsapp-fixed{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.whatsapp-fixed img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.whatsapp-fixed:hover img{
    transform: scale(1.08);
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}
.tour-list-premium{
    padding:120px 6%;
    background:#0b0f17;
}

.tour-page-title{
    text-align:center;
    color:#fff;
    font-size:42px;
    margin-bottom:60px;
}

.tour-row{
    display:flex;
    gap:35px;
    background:rgba(255,255,255,0.03);
    border-radius:22px;
    padding:22px;
    margin-bottom:35px;
    align-items:center;
    cursor:pointer;
    transition:0.4s ease;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.05);
}

.tour-row:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 70px rgba(0,0,0,0.6);
    background:rgba(255,255,255,0.06);
}

.tour-row img{
    width:280px;
    height:190px;
    object-fit:cover;
    border-radius:16px;
    flex-shrink:0;
}

.tour-text h2{
    color:#fff;
    margin-bottom:10px;
    font-size:24px;
}

.tour-text p{
    color:#ccc;
    line-height:1.7;
    font-size:15px;
    max-width:800px;
}

@media(max-width:900px){
    .tour-row{
        flex-direction:column;
        text-align:center;
    }

    .tour-row img{
        width:100%;
        height:220px;
    }
}
/* ===== LUXURY ANIMATION SYSTEM ===== */

.tour-row{
    position:relative;
    overflow:hidden;
}

/* glow border */
.tour-row::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity:0;
    transition:0.6s;
}

.tour-row:hover::before{
    opacity:1;
}

/* spotlight */
.tour-row::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
    top:var(--y);
    left:var(--x);
    transform:translate(-50%,-50%);
    opacity:0;
    pointer-events:none;
}

.tour-row:hover::after{
    opacity:1;
}

/* image cinematic */
.tour-row img{
    transition:0.6s ease;
}

.tour-row:hover img{
    transform:scale(1.06);
    filter:brightness(1.1);
}

/* text motion */
.tour-text{
    transition:0.5s ease;
}

.tour-row:hover .tour-text{
    transform:translateX(8px);
}

/* reveal animation */
.tour-row{
    opacity:0;
    transform:translateY(40px);
}

.tour-row.show{
    opacity:1;
    transform:translateY(0);
    transition:1s cubic-bezier(.19,1,.22,1);
}


/* ============================= */
/* FUTURISTIC TOUR SYSTEM */
/* ============================= */

.futuristic-tour{
  position:relative;
  padding:120px 8%;
  background:
    radial-gradient(circle at 10% 10%, #0a2a3f55, transparent 40%),
    linear-gradient(180deg,#050b12,#02070c);
  color:#fff;
  overflow:hidden;
}

/* GLOW LINE */
.futuristic-tour::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:2px;
  height:100%;
  background:linear-gradient(to bottom,transparent,#00f0ff,transparent);
  opacity:.25;
}

/* STOP CARD */
.f-stop{
  position:relative;
  width:100%;
  max-width:900px;
  margin:80px auto;
  display:flex;
  gap:30px;
  align-items:flex-start;
  opacity:0;
  transform:translateY(60px);
  transition:1s cubic-bezier(.2,.8,.2,1);
}

.f-stop.show{
  opacity:1;
  transform:translateY(0);
}

/* INDEX */
.f-index{
  min-width:70px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,#00f0ff,#0077ff);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:20px;
  color:#000;
  box-shadow:0 0 30px #00f0ff80;
}

/* CONTENT */
.f-content{
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:18px;
  padding:28px 32px;
  position:relative;
  overflow:hidden;
  transition:.6s;
}

.f-content::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at var(--x,50%) var(--y,50%),rgba(0,255,255,.15),transparent 60%);
  opacity:0;
  transition:.4s;
}

.f-content:hover::before{opacity:1;}
.f-content:hover{transform:translateY(-6px) scale(1.01); box-shadow:0 20px 60px #00f0ff30;}

.f-content h3{
  font-size:22px;
  margin-bottom:10px;
  color:#00f0ff;
}

.f-content p{
  font-size:15px;
  line-height:1.7;
  color:#ddd;
}

/* WHY AREA */
.why-tour-futuristic{
  max-width:900px;
  margin:140px auto 0;
  text-align:center;
  padding:60px 50px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  backdrop-filter:blur(14px);
  box-shadow:0 0 80px #00f0ff20;
}

.why-tour-futuristic h2{
  color:#00f0ff;
  margin-bottom:30px;
  font-size:32px;
}

.why-tour-futuristic ul{
  list-style:none;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.why-tour-futuristic li{
  background:rgba(0,255,255,.05);
  padding:18px 22px;
  border-radius:12px;
  border:1px solid rgba(0,255,255,.2);
  transition:.4s;
}

.why-tour-futuristic li:hover{
  background:rgba(0,255,255,.12);
  transform:translateY(-4px);
  box-shadow:0 0 30px #00f0ff40;
}
/* ============================= */
/* TOUR TRUST SYSTEM */
/* ============================= */

.tour-trust{
  margin:120px auto 0;
  max-width:1100px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding:0 6%;
}

.tour-trust div{
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(14px);
  border:1px solid rgba(0,255,255,.18);
  border-radius:16px;
  padding:26px 20px;
  text-align:center;
  font-weight:600;
  color:#eafcff;
  box-shadow:0 0 40px rgba(0,255,255,.15);
  transition:.5s;
  position:relative;
  overflow:hidden;
}

.tour-trust div::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at var(--x,50%) var(--y,50%),rgba(0,255,255,.2),transparent 60%);
  opacity:0;
  transition:.4s;
}

.tour-trust div:hover::before{opacity:1;}
.tour-trust div:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:0 0 70px rgba(0,255,255,.45);
}


/* ============================= */
/* TOUR INFO CARDS */
/* ============================= */

.tour-info-cards{
  margin:80px auto 0;
  max-width:1000px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
  padding:0 6%;
}

.info-card{
  background:linear-gradient(145deg,#071821,#0a2b3b);
  border-radius:18px;
  padding:34px 22px;
  text-align:center;
  color:#00f0ff;
  font-weight:600;
  font-size:18px;
  box-shadow:0 0 40px #00f0ff25;
  transition:.5s cubic-bezier(.2,.8,.2,1);
  position:relative;
  overflow:hidden;
}

.info-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at var(--x,50%) var(--y,50%),rgba(0,255,255,.25),transparent 60%);
  opacity:0;
  transition:.4s;
}

.info-card:hover::before{opacity:1;}

.info-card:hover{
  transform:translateY(-10px) scale(1.04);
  box-shadow:0 0 80px #00f0ff60;
  color:#fff;
}
/* ============================= */
/* ABOUT HERO */
/* ============================= */

.about-hero{
  position:relative;
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(120deg,#020d14,#041c2b,#062a3d);
  overflow:hidden;
}

.page-hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 50%,rgba(0,255,255,.12),transparent 65%);
  backdrop-filter:blur(6px);
}

.page-hero-content{
  position:relative;
  z-index:2;
}

.page-hero-content h1{
  font-size:clamp(2.8rem,5vw,4rem);
  background:linear-gradient(90deg,#00f0ff,#00ffe1,#00f0ff);
  -webkit-background-clip:text;
  color:transparent;
  text-shadow:0 0 40px rgba(0,255,255,.6);
}

.page-hero-content p{
  margin-top:15px;
  color:#c9f9ff;
  font-size:1.1rem;
  opacity:.9;
}


/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-section{
  padding:120px 0;
  background:radial-gradient(circle at top,#031a25,#020c14 60%);
}

.about-section .container{
  max-width:1200px;
  margin:auto;
  padding:0 6%;
  display:grid;
  gap:40px;
}


/* ============================= */
/* ABOUT CARDS */
/* ============================= */

.about-card{
  background:rgba(255,255,255,0.035);
  border:1px solid rgba(0,255,255,.18);
  border-radius:22px;
  padding:45px 40px;
  backdrop-filter:blur(16px);
  box-shadow:0 0 50px rgba(0,255,255,.12);
  transition:.6s cubic-bezier(.2,.8,.2,1);
  position:relative;
  overflow:hidden;
}

.about-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at var(--x,50%) var(--y,50%),rgba(0,255,255,.18),transparent 60%);
  opacity:0;
  transition:.4s;
}

.about-card:hover::before{opacity:1;}

.about-card:hover{
  transform:translateY(-10px) scale(1.01);
  box-shadow:0 0 90px rgba(0,255,255,.35);
}

.about-card h2{
  color:#00f0ff;
  margin-bottom:20px;
  font-size:1.7rem;
}

.about-card p{
  color:#e7fdff;
  line-height:1.8;
  opacity:.95;
}


/* ============================= */
/* DOCS */
/* ============================= */

.about-docs ul{
  display:grid;
  gap:12px;
}

.about-docs li{
  padding:10px 15px;
  background:rgba(0,255,255,.05);
  border-radius:10px;
  color:#cfffff;
  border:1px solid rgba(0,255,255,.15);
}


/* ============================= */
/* GRID */
/* ============================= */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}


/* ============================= */
/* VALUES */
/* ============================= */

.about-values{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.about-values li{
  background:rgba(0,255,255,.06);
  border:1px solid rgba(0,255,255,.15);
  padding:14px 18px;
  border-radius:12px;
  color:#cfffff;
  transition:.4s;
}

.about-values li:hover{
  transform:translateX(8px);
  box-shadow:0 0 25px rgba(0,255,255,.4);
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
  }
  .about-values{
    grid-template-columns:1fr;
  }
}
.hero-slider { height:100vh; position:relative; overflow:hidden }
.slide { position:absolute; inset:0; opacity:0; transition:1s; background-size:cover; background-position:center }
.slide.active { opacity:1 }
.overlay { position:absolute; inset:0; background:rgba(0,0,0,.55) }

.hero-content {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  text-align:center; color:#fff; max-width:700px
}

.btn-primary {
  display:inline-block; margin-top:20px;
  padding:14px 34px; background:#25D366;
  color:#fff; border-radius:40px; font-weight:600
}

.trust-bar {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  background:#0f0f0f; color:#fff; padding:25px; text-align:center
}

.popular-tours { padding:80px 10%; background:#111; color:#fff }
.tour-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px }

.tour-card {
  background:rgba(255,255,255,.05);
  padding:40px; border-radius:20px;
  transition:.3s; cursor:pointer
}
.tour-card:hover { transform:translateY(-10px); background:rgba(255,255,255,.1) }

.reviews { padding:80px 10%; background:#0b0b0b; color:#fff }
.review-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:25px }

.review-card {
  background:rgba(255,255,255,.06);
  padding:30px; border-radius:20px
}

.final-cta {
  padding:90px 10%; background:#000; color:#fff; text-align:center
}
.hero-cta {
  background:#000;
  text-align:center;
  padding:40px 0;
}

.trust-strip {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  padding:30px 10%;
  background:rgba(255,255,255,.03);
  color:#fff;
  text-align:center;
}

.tour-card img {
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:20px 20px 0 0;
}

.tour-info {
  padding:25px;
}

.tour-info span {
  display:inline-block;
  margin-top:15px;
  color:#25D366;
  font-weight:600;
}

.review-card span {
  display:block;
  margin-top:10px;
  opacity:.7;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 50px 10%;
  background: #0f0f0f;
}

.trust-strip div {
  background: rgba(255,255,255,0.04);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.trust-strip div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: .4s;
}

.trust-strip div:hover {
  transform: translateY(-8px);
}

.trust-strip div:hover::after {
  opacity: 1;
}
.premium-whatsapp {
  text-align: center;
  padding: 90px 20px;
  background: radial-gradient(circle at top, #25D36622, #000);
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 45px;
  font-size: 18px;
  background: #25D366;
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  transition: .3s;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}
.hero {
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1,
.hero-content h3,
.hero-content p,
.hero-slogan {
  text-align: center;
}
.hero-statement {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #000, #0b0b0b);
}

.hero-statement h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-statement p {
  opacity: .8;
  font-size: 18px;
}
.hero-desc {
  margin-top: 35px;
  font-size: 16px;
  opacity: 0.75;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero {
  position: relative;
  height: 100vh;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 15px;
  opacity: 0.9;
}

.hero-slogan {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  font-style: italic;
  opacity: 0.85;
}
.hero-buttons {
  margin-top: 35px;
}

.hero-buttons a {
  padding: 14px 40px;
  font-size: 16px;
}
.hero-desc {
  margin-top: 45px;
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.7;
}
.hero-center {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;

  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  z-index: 5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}
.hero-center {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 48px 56px;
  border-radius: 22px;

  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}
.hero-center h1,
.hero-center h3,
.hero-center p,
.hero-center span {
  color: #fff;
  text-shadow:
    0 3px 10px rgba(0,0,0,0.6);
}
.hero-slider .slide {
  filter: contrast(0.95) brightness(0.9);
}
.reveal > * {
  opacity: 0;
  transform: translateY(30px);
  animation: revealText 0.9s ease forwards;
}

.reveal > *:nth-child(1) { animation-delay: 0.2s; }
.reveal > *:nth-child(2) { animation-delay: 0.4s; }
.reveal > *:nth-child(3) { animation-delay: 0.6s; }
.reveal > *:nth-child(4) { animation-delay: 0.8s; }
.reveal > *:nth-child(5) { animation-delay: 1s; }

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary,
.hero-btn {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.btn-primary:hover,
.hero-btn:hover {
  transform: translateY(-2px) scale(1.02);
  transition: 0.3s ease;
}
.hero-logo {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: 200px;
  max-width: 80%;
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.4));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero h3, .hero p {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.9s ease forwards;
}
.hero p { animation-delay: .2s }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.arab-vip-strip {
  background: linear-gradient(90deg, #0c1224, #121a3a);
  padding: 40px 20px;
  text-align: center;
}

.vip-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
}

.vip-content p {
  font-size: 15px;
  opacity: 0.85;
}

.vip-whatsapp {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 36px;
  border-radius: 40px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(37,211,102,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 25px rgba(37,211,102,0.9); }
  100% { box-shadow: 0 0 0 rgba(37,211,102,0.6); }
}
.arab-trust-home {
  background: radial-gradient(circle at top, #111836, #060914);
  padding: 70px 20px;
  text-align: center;
}

.arab-trust-inner {
  max-width: 900px;
  margin: auto;
}

.arab-badge {
  display: inline-block;
  background: gold;
  color: #000;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.arab-trust-home h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.arab-trust-home p {
  font-size: 16px;
  opacity: 0.85;
}

.arab-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.arab-icons div {
  background: rgba(255,255,255,0.08);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
}
.footer {
  background: linear-gradient(180deg, #0d0d0d, #141414);
  color: #d6d6d6;
  padding: 70px 8% 30px;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h4 {
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-item span {
  font-size: 13px;
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}

.footer-item strong {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.footer a {
  color: #d6d6d6;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  opacity: 0.85;
}

/* Menü listesi */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  opacity: 0.75;
}

/* Adres */
.footer-address {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
  opacity: 0.8;
}

/* Sosyal ikonlar */
.footer-social-mini {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-social-mini img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: 0.3s;
}

.footer-social-mini img:hover {
  opacity: 1;
}

/* TÜRSAB */
.tursab {
  margin-top: 10px;
  opacity: 0.85;
  filter: grayscale(100%);
}

/* Alt bar */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* Mobil */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social-mini {
    justify-content: center;
  }
}
.tursab {
  filter: none !important;
  opacity: 1;
}
.footer-social-mini {
  display: flex;
  gap: 18px;
}

.footer-social-mini a {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  transition: 0.35s ease;
}

.footer-social-mini img {
  width: 20px;
  height: 20px;
  z-index: 2;
}

/* ALT PARLAKLIK ŞERİDİ */
.footer-social-mini a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: currentColor;
  transition: 0.35s ease;
  opacity: 0;
}

/* HOVER */
.footer-social-mini a:hover {
  transform: translateY(-4px);
}

.footer-social-mini a:hover::after {
  width: 70%;
  opacity: 1;
}
/* Instagram */
.footer-social-mini a:nth-child(1) {
  color: #e1306c;
}

/* X */
.footer-social-mini a:nth-child(2) {
  color: #ffffff;
}

/* Facebook */
.footer-social-mini a:nth-child(3) {
  color: #1877f2;
}
.footer-social-mini a:nth-child(2) {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}
.tursab {
  filter: none;
  opacity: 0.95;
  transition: 0.3s;
}

.tursab:hover {
  opacity: 1;
  transform: scale(1.03);
}
.footer {
  background-image:
    linear-gradient(180deg, #0e0f12, #14161b),
    url("assets/images/noise.png");
}
.footer {
  background: linear-gradient(180deg, #6b0f1a 0%, #0a1a2f 100%);
  color: #eaeaea;
  padding: 80px 0 30px;
}
.footer h4 {
  color: #d4b06a;
  font-size: 17px;
  margin-bottom: 20px;
  letter-spacing: 0.6px;
}
.footer a,
.footer span,
.footer p,
.footer strong {
  color: #eaeaea;
  opacity: 0.9;
}

.footer a:hover {
  color: #d4b06a;
}
.footer-address {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 12px;
  transition: 0.3s;
}

.footer-address:hover {
  background: rgba(212,176,106,0.15);
}
.footer-social-mini img {
  width: 34px;
  height: 34px;
  padding: 6px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social-mini img:hover {
  background: #d4b06a;
  transform: translateY(-4px);
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 14px;
  color: #ccc;
}
.footer {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.footer {
  background: linear-gradient(180deg, #061a23, #0a2a36);
  color: #e0f4ff;
}

/* ===========================
   VIP FLEET PAGE
=========================== */

.fleet-page {
  padding: 80px 20px;
  background: #f9fafc;
}

.fleet-hero {
  text-align: center;
  margin-bottom: 60px;
}

.fleet-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #0a1d3a;
}

.fleet-hero p {
  font-size: 18px;
  color: #555;
}

/* Kart */
.fleet-wrapper {
  display: flex;
  justify-content: center;
}

.fleet-card {
  width: min(900px, 95%);
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
}

/* Foto */
.main-car {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* İçerik */
.fleet-info {
  padding: 28px;
}

.fleet-info h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0a1d3a;
}

.fleet-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 22px;
}

/* Butonlar */
.fleet-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.fleet-btn {
  padding: 12px 18px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(135deg,#0a1d3a,#123d7a);
  color: white;
  transition: 0.3s;
}

.fleet-btn:hover {
  opacity: 0.9;
}

.fleet-wa {
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #25d366;
  color: white;
  transition: 0.3s;
}

.fleet-wa:hover {
  background: #1ebe57;
}

/* ===========================
   MODAL GALERİ
=========================== */

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gallery-box img {
  width: 100%;
  max-height: 460px;

  object-fit: contain;   /* ✅ tam gösterir */
  background: #000;
  padding: 10px;

  border-radius: 18px;
}

.gallery-box img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 18px;
}

/* Thumb */
.gallery-thumbs {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: center;
}

.gallery-thumbs img {
  width: 95px;
  height: 75px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.75;
  transition: 0.25s;
}

.gallery-thumbs img:hover {
  opacity: 1;
  transform: scale(1.06);
}

/* Kapat */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 34px;
  cursor: pointer;
  color: white;
}
.main-car:hover {
  transform: scale(1.02);
  transition: 0.35s ease;
}
/* ========================= */
/* VIP ARAÇ SAYFASI PREMIUM */
/* ========================= */

.cars-page {
  padding: 60px 20px;
  color: #fff;
}

.cars-hero {
  text-align: center;
  margin-bottom: 60px;
}

.cars-hero h1 {
  font-size: 46px;
  font-weight: 800;
}

.cars-hero p {
  opacity: 0.85;
  margin-top: 12px;
}

/* GALERİ */
.car-gallery {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

.car-gallery h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.car-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.car-img-box {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
}

.car-img-box img {
  width: 100%;
  height: 260px;
  object-fit: contain; /* 🔥 kırpılmaz */
  border-radius: 16px;
  background: #00000022;
}

.car-img-box span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  opacity: 0.85;
}

/* ÖZELLİKLER + SERVİSLER */
.car-features,
.vip-services,
.car-cta {
  margin: 70px auto;
  max-width: 1100px;
  padding: 50px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
}

.car-features h2,
.vip-services h2,
.car-cta h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

.car-features ul {
  list-style: none;
  padding: 0;
}

.car-features li {
  padding: 10px 0;
  font-size: 17px;
  opacity: 0.9;
}

/* VIP BOX GRID */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.vip-box {
  padding: 18px;
  border-radius: 16px;
  background: rgba(0,255,200,0.07);
  border: 1px solid rgba(0,255,200,0.18);
  font-weight: 600;
  transition: 0.3s;
}

.vip-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0,255,200,0.25);
}

/* TRUST STRIP */
.car-trust {
  margin: 50px auto;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.car-trust div {
  flex: 1;
  min-width: 220px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  text-align: center;
  font-weight: 600;
}

/* CTA */
.car-cta {
  text-align: center;
}

.btn-whatsapp {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 18px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(37,211,102,0.6);
}
.car-card {
  max-width: 1100px;
  margin: 40px auto;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  transition: 0.3s;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,255,200,0.15);
}

.car-card img {
  width: 340px;
  height: 230px;
  object-fit: contain;
  background: #00000022;
}

.car-card-text {
  padding: 25px;
}

.car-card-text h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.car-card-text p {
  opacity: 0.85;
}

.open-text {
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
  color: #00ffd5;
}

/* DETAY AÇILMA */
.car-details {
  max-width: 1100px;
  margin: auto;
  padding: 50px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);

  display: none;
  animation: fadeIn 0.5s ease;
}

.car-details.active {
  display: block;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}

/* GALERİ */
.car-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.car-img-box img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 16px;
  background: #00000022;
}
/* ARAÇ DETAY AÇILMA */
.car-details {
  display: none;
  margin: 20px auto 60px;
  padding: 40px;
  max-width: 1100px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
}

.car-details.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* FOTO GALERİ */
.car-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.car-img-box img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: rgba(0,0,0,0.25);
  border-radius: 16px;
  cursor: zoom-in;
  transition: 0.3s;
}

.car-img-box img:hover {
  transform: scale(1.05);
}

/* ===================== */
/* ZOOM LIGHTBOX */
/* ===================== */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-overlay.active {
  display: flex;
}

.zoom-overlay img {
  max-width: 92%;
  max-height: 90%;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0,255,200,0.25);
  animation: zoomPop 0.3s ease;
}

@keyframes zoomPop {
  from {transform: scale(0.8); opacity: 0;}
  to   {transform: scale(1); opacity: 1;}
}
/* ========================= */
/* VIP CARDS PREMIUM */
/* ========================= */

.vip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.vip-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 25px 18px;
  text-align: center;
  transition: 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.vip-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0,200,255,0.5);
}

.vip-icon {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 12px;
}

.vip-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.vip-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.4;
}

/* ========================= */
/* CAR CARD PREMIUM */
/* ========================= */

.car-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 18px;
  margin: 35px auto;
  max-width: 1100px;
  cursor: pointer;
  transition: 0.35s;
  overflow: hidden;
}

.car-card:hover {
  transform: scale(1.015);
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.car-card img {
  width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
}

.car-card-text h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.car-card-text p {
  opacity: 0.85;
  margin-bottom: 10px;
}

.open-text {
  font-weight: 700;
  color: #00d4ff;
}

/* ========================= */
/* DETAILS SECTION */
/* ========================= */

.car-details {
  display: none;
  max-width: 1100px;
  margin: auto;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.car-details h2 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}

/* ========================= */
/* IMAGE GRID */
/* ========================= */

.car-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.car-img-box {
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  background: rgba(0,0,0,0.25);
  transition: 0.3s;
}

.car-img-box:hover {
  transform: translateY(-6px);
}

.car-img-box img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: black;
  cursor: zoom-in;
}

.car-img-box span {
  display: block;
  padding: 10px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ========================= */
/* ZOOM LIGHTBOX */
/* ========================= */

.zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 18px;
}

/* موبilde kart alt alta */
@media(max-width: 850px) {
  .car-card {
    flex-direction: column;
    text-align: center;
  }

  .car-card img {
    width: 100%;
    height: 220px;
  }
}
.bungalow-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 25px;
}

.bung-img-box img {
  width: 100%;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
  object-fit: contain;
  background: #000;
}

.bung-img-box img:hover {
  transform: scale(1.05);
}

/* Details toggle */
.bungalow-details {
  display: none;
  margin-top: 25px;
}

.bungalow-details.active {
  display: block;
}

/* Zoom */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 18px;
}
.bungalow-card-premium {
  max-width: 900px;
  margin: 50px auto;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transition: 0.4s ease;
}

.bungalow-card-premium:hover {
  transform: translateY(-8px);
}

/* Görsel */
.bungalow-img-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.bungalow-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.bungalow-card-premium:hover img {
  transform: scale(1.08);
}

/* Premium Badge */
.bung-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: white;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 16px;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Glass Panel */
.bungalow-info-glass {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;

  padding: 28px;
  border-radius: 22px;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);

  color: white;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.bungalow-info-glass h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.bungalow-info-glass p {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.5;
}

/* Button CTA */
.bung-btn {
  margin-top: 18px;
  background: white;
  color: #111;
  border: none;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.bung-btn:hover {
  background: #0ea5e9;
  color: white;
  transform: scale(1.05);
}
/* Mobil Durak Kartları Fix */
@media (max-width: 768px) {

  .stop-card,
  .tour-stop,
  .tour-place-card {
    width: 100% !important;
    padding: 15px !important;
    margin-bottom: 15px;
  }

  .stop-card h3 {
    font-size: 18px !important;
    line-height: 1.3;
  }

  .stop-card p {
    font-size: 14px !important;
    line-height: 1.6;
   
  }

}
@media (max-width: 768px) {
  body {
    padding-top: 75px;
  }
}
/* RTL MODE (ARAPÇA) */
body.rtl{
  direction: rtl;
}

/* Header yön değişimi */
body.rtl .header{
  direction: rtl;
}

body.rtl .header-left{
  order: 2; /* logo sağa gider */
}

body.rtl .header-right{
  order: 1; /* hamburger sola gider */
}

/* Logo yazısı bozulmasın */
body.rtl .logo{
  direction: ltr;
}


/* TRUST SECTION */
.tour-trust{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tour-trust div{
  background: rgba(255,255,255,0.08);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
}

/* INFO CARDS */
.tour-info-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-card{
  background: rgba(255,255,255,0.06);
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
}

/* 📱 MOBİL */
@media (max-width: 768px){

  .tour-trust{
    flex-direction: column;
    align-items: stretch;
  }

  .tour-trust div{
    text-align: center;
    font-size: 15px;
  }

  .tour-info-cards{
    grid-template-columns: repeat(2, 1fr);
  }

}

/* 📱 EXTRA SMALL */
@media (max-width: 420px){

  .tour-info-cards{
    grid-template-columns: 1fr;
  }

  .info-card{
    font-size: 16px;
  }

}






.footer-item a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.footer-item a:hover{
    text-decoration:underline;
}

@media(max-width:768px){
    .footer-item{
        text-align:center;
        margin-bottom:15px;
    }

    .footer-item strong{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .footer-item a{
        font-size:18px;
        padding:8px;
        background:rgba(255,255,255,0.08);
        border-radius:8px;
    }
}

.footer-col ul li{
    cursor:pointer;
    transition:all 0.3s ease;
    position:relative;
    padding-left:5px;
}

/* Hover efekti */
.footer-col ul li:hover{
    color:#00c2ff; /* tema rengine göre ayarla */
    transform:translateX(6px);
    font-weight:600;
}

/* Sol çizgi efekti */
.footer-col ul li::before{
    content:"";
    position:absolute;
    left:-8px;
    top:50%;
    transform:translateY(-50%);
    width:0;
    height:2px;
    background:#00c2ff;
    transition:0.3s;
}

.footer-col ul li:hover::before{
    width:6px;
}
.tursab-no{
    margin-top:10px;
    font-size:13px;
    color:#ccc;
    letter-spacing:1px;
    text-align:center;
}

.tursab-no strong{
    color:#00c2ff; /* tema rengi */
    font-weight:600;
}
.footer-official {
  font-size: 14px;
  line-height: 1.7;
  color: #dfe6e9;
}

.footer-official h4 {
  color: #00bcd4;
  margin-bottom: 12px;
  font-size: 16px;
}

.official-item {
  margin-bottom: 6px;
  opacity: 0.9;
}


@media (max-width: 768px) {

  .hero{
    min-height:100vh;
    height:auto;
    padding:60px 15px 80px 15px;  /* üst-alt boşluk */
  }

  .hero-content{
    position:relative;
    transform:none;
    top:auto;
    left:auto;
    padding-top:40px;
    padding-bottom:40px;
  }

  .hero-logo img{
    width:120px;
    max-width:60%;
    margin-bottom:15px;
  }

  .hero-desc{
    font-size:14px;
    line-height:1.5;
  }

  .hero-buttons{
    flex-direction:column;
    gap:12px;
    margin-top:15px;
  }

  .hero-btn,
  .btn-outline{
    width:100%;
    text-align:center;
    padding:14px 0;
  }

}

@media (max-width: 768px){

  .futuristic-tour{
    padding:40px 12px;
  }

  .f-stop{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:22px;
  }

  .f-index{
    min-width:42px;
    height:42px;
    font-size:16px;
    line-height:42px;
    flex-shrink:0;
  }

  .f-content{
    width:100%;
    padding-right:6px;
  }

  .f-content h3{
    font-size:17px;
    line-height:1.4;
    margin-bottom:6px;
  }

  .f-content p{
    font-size:14px;
    line-height:1.7;
    overflow:visible;
    word-break:break-word;
  }

}
.futuristic-tour,
.f-stop,
.f-content,
.f-content p{
  overflow:visible !important;
}

@media (max-width: 768px){

  .tour-intro p,
  .tour-tagline,
  .tour-hero h1{
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
  }

}
@media (max-width: 768px){
  .tour-intro p{
    max-width: 95%;
    margin: 0 auto;
  }
}
@media (max-width: 768px){

  .tour-hero{
    padding:40px 14px 28px;
    height:auto !important;
  }

  .tour-hero h1{
    font-size:22px;
    line-height:1.35;
    text-align:center;
    padding:0 6px;
    margin-bottom:10px;
  }

  .tour-tagline{
    font-size:15px;
    line-height:1.5;
    text-align:center;
    padding:0 10px;
    margin-bottom:18px;
  }

  .tour-intro{
    padding:0 14px 24px;
  }

  .tour-intro p{
    font-size:14.5px;
    line-height:1.7;
    text-align:center;
    overflow:visible;
    word-break:break-word;
  }

}
/* ZOOM SLIDER */
.zoom-overlay{
  position:fixed;
  top:0;left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.zoom-overlay img{
  max-width:92%;
  max-height:90%;
  object-fit:contain;
  border-radius:12px;
}

/* Butonlar */
.zoom-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.2);
  color:#fff;
  border:none;
  width:50px;
  height:50px;
  border-radius:50%;
  font-size:26px;
  cursor:pointer;
}

.zoom-btn.left{ left:20px; }
.zoom-btn.right{ right:20px; }

/* Kapat */
.zoom-close{
  position:absolute;
  top:20px;
  right:20px;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

/* Mobil */
@media(max-width:768px){
  .zoom-btn{
    width:40px;
    height:40px;
    font-size:22px;
  }
}

.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.zoom-overlay.active {
  display: flex;
}

.zoom-overlay img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 12px;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.zoom-prev,
.zoom-next {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.zoom-prev { left: 20px; }
.zoom-next { right: 20px; }

/* Mobilde daha rahat */
@media (max-width: 768px) {
  .zoom-prev,
  .zoom-next {
    font-size: 40px;
  }
}
