/* ==========================================================================
   PROJECT GLOBAL STYLE - style.css
   - Temiz, scoped ve conflict-minimized CSS
   - Not: HTML'de aynı selector'ları (inline veya başka CSS) kullanmayın.
   ========================================================================== */
/* ------------- RESET / BASE ------------- */
* { box-sizing: border-box; }
html,body {
     background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f7fb 40%,
    #eef2f7 100%
  ) !important;

  color: #1f2937 !important;
 }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(
    180deg,
    #eef2f7 0%,
    #e5eaf1 40%,
    #dde3ec 100%
  ) !important;

  color: rgb(105,105,105) !important;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ---------- UTILITIES (non-breaking helpers) ---------- */
/* Use these to avoid global selectors clashing */
.u-center { display:flex; justify-content:center; align-items:center; }
.u-no-select { user-select:none; -webkit-user-select:none; }

/* ========== VIDEO BANNER (scoped) ========== */
/* Use .video-banner exactly as in your HTML */

/**/
.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0f172a,
    #111827
  ) !important;        /* fallback bg while video loads */
  margin-top: var(--navbar-height);  /* artık navbar ile çarpışmaz */
  height: calc(100vh - var(--navbar-height)); 
}

/* Video element styling (cover, centered) */
.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* keep aspect, cover area */
  transform: translate(-50%, -50%);
  pointer-events: none;    /* prevent accidental clicks on video */
  position: relative;
  z-index: 1 !important;

}

/* Watermark (centered horizontally, above video) */
.video-banner .watermark {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff !important;
  text-shadow: 0 6px 25px rgba(48,137,215,0.5);
  font-weight: 700;
  opacity: 0.45;           /* subtle watermark */
  z-index: 2;              /* above video */
  width: calc(100% - 60px);
  text-align: center;
  pointer-events: none;    /* doesn't block clicks */
}

/* Smaller, responsive watermark text */
.video-banner .watermark h1 {
  margin: 0;
  font-size: clamp(18px, 3.6vw, 48px); /* responsive sizing */
  letter-spacing: 2px;
  line-height: 1.05;
}

/* If you have an overlay (darken the video for readability) */
.video-banner .overlay {
  position:absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(48,137,215,0.25),
    rgba(15,23,42,0.55)
  ) !important;
  z-index:1;
  pointer-events:none;
}

/* ========== BRANDS SECTION (scoped to #brands) ========== */
/* Using a specific scope prevents affecting other .container/.row */
/* ======================================================
   ULTRA VIP BRAND LOGO PACKAGE (ALL EFFECTS)
====================================================== */

.brand-image.ultra-vip {
    width: 100%;
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    cursor: pointer;
    transition: 
        transform 0.35s cubic-bezier(.23,1.5,.32,1),
        filter 0.35s ease,
        box-shadow 0.35s ease;

    position: relative;
    z-index: 2;

    /* Base look */
    filter: brightness(1) saturate(1.2);
}

/* 🔥 Apple Dock Bounce + Tilt Follow Cursor */
.brand-image.ultra-vip:hover {
    transform: scale(1.22) rotateX(6deg) rotateY(-6deg);
    filter: brightness(1.25);
}

/* 🔥 Soft breathing glow */
.brand-image.ultra-vip {
    animation: breatheGlow 4s ease-in-out infinite;
}

@keyframes breatheGlow {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.25); }
}

/* 💎 Diamond Dust Particles */
.brand-image.ultra-vip::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;

    background-image:
        radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 2px);

    background-size: 22px 22px, 30px 30px;
    opacity: 0;
    transition: .35s ease;
}

.brand-image.ultra-vip:hover::before {
    opacity: .9;
    animation: dustFloat 8s linear infinite;
}

@keyframes dustFloat {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 140px 120px, -100px 160px; }
}

/* 🔥 Dual Shine Sweep */
.brand-image.ultra-vip::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -50%;
    width: 80%;
    height: 300%;
    transform: rotate(20deg);

    background: linear-gradient(
        125deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.4) 35%,
        transparent 70%
    );

    opacity: 0;
    transition: opacity .3s ease-in-out;
    pointer-events: none;
}

.brand-image.ultra-vip:hover::after {
    opacity: 1;
    animation: shineSweep 1.15s ease-out;
}

@keyframes shineSweep {
    0%   { transform: translateX(-220%) rotate(20deg); }
    100% { transform: translateX(220%) rotate(20deg); }
}

/* 🔵 Neon Ultra Glow */
.brand-image.ultra-vip:hover {
    box-shadow:
        0 0 14px rgba(0,153,255,0.55),
        0 0 22px rgba(0,153,255,0.35),
        0 0 40px rgba(0,153,255,0.25);
}

/* 🪞 Glass Reflection */
.brand-image.ultra-vip + .reflection {
    content: "";
    display: block;
    max-width: 140px;
    max-height: 70px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    opacity: 0.25;
    transform: scaleY(-1);
    filter: blur(3px);
    object-fit: contain;
}

/* 🌀 Click Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
    z-index: 999;
}

@keyframes rippleAnim {
    to {
        transform: scale(5);
        opacity: 0;
    }
}


/* ================================
   VIP BRAND MODAL SYSTEM
================================ */

/* Arka plan */
.brand-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;

    z-index: 999999;
}

/* Açık modal */
.brand-modal-bg.active {
    opacity: 1;
    visibility: visible;
}

/* Resim */
.brand-modal {
    max-width: 80%;
    max-height: 80%;
    transition: transform .25s ease;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255,255,255,0.35);
    position: relative;
    z-index: 5;
}

/* Kapatma butonu */
.brand-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 1000000;
    transition: .3s;
    font-weight: 200;
}

.brand-close:hover {
    transform: scale(1.2) rotate(12deg);
    color: #00c8ff;
}

/* Sağ–sol oklar */
.brand-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 70px;
    cursor: pointer;
    padding: 18px;
    user-select: none;
    transition: .25s;
    z-index: 10;
    opacity: .75;
}

.brand-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.brand-arrow.left { left: 40px; }
.brand-arrow.right { right: 40px; }

/* LENS FLARE */
.lens-flare {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), transparent 70%);
    mix-blend-mode: screen;
    opacity: 0;
    pointer-events: none;
    animation: flarePop .6s cubic-bezier(.2,.9,.3,1);
    z-index: 2;
}

@keyframes flarePop {
    0% { opacity: 0; transform: scale(.3); }
    40% { opacity: .95; transform: scale(1.4); }
    100% { opacity: 0; transform: scale(1); }
}

/* GLOSSY SHINE */
.glossy-shine {
    position: absolute;
    width: 160px;
    height: 140%;
    top: -20%;
    left: -200%;
    background: linear-gradient(115deg,
        rgba(255,255,255,0.9) 0%,
        rgba(255,255,255,0.5) 30%,
        rgba(255,255,255,0.1) 60%,
        transparent 100%
    );
    mix-blend-mode: screen;
    opacity: 0;
    z-index: 3;
    border-radius: 8px;
}

.brand-modal-bg.active .glossy-shine {
    animation: glossySweep 1.4s ease-out forwards;
    opacity: 1;
}

@keyframes glossySweep {
    0% { left: -200%; opacity: .6; }
    60% { left: 160%; opacity: .4; }
    100% { left: 220%; opacity: 0; }
}


/* ========== LIGHTBOX / POPUP (scoped to #imagePopup) ========== */
/* Keep names specific to avoid clashing */
#imagePopup {
  display: none;              /* toggled to flex when open */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* show class for convenience (use JS to add/remove) */
#imagePopup.open { display:flex; }

/* image styling */
#imagePopup .popup-image {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  transform-origin: center center;
}

/* close button */
#imagePopup .popup-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 44px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  z-index: 100000;
}

/* arrows (left/right) */
#imagePopup .popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 56px;
  cursor: pointer;
  user-select: none;
  z-index: 100000;
  padding: 8px 12px;
  transition: color .15s;
}
#imagePopup .popup-arrow:hover { color: #ddd; }
#imagePopup .popup-arrow.left { left: 18px; }
#imagePopup .popup-arrow.right { right: 18px; }

/* hide arrows on very small screens if needed */
@media (max-width:480px) {
  #imagePopup .popup-arrow { display:none; }
  #imagePopup .popup-close { font-size:36px; right:14px; top:14px; }
}

/* ========== LAYOUT HELPERS / A11Y ========== */
.visually-hidden { 
  position: absolute!important; 
  height:1px; width:1px; 
  overflow:hidden; clip:rect(1px,1px,1px,1px);
}

/* prevent global styles accidentally affecting video/banner */
.video-banner, #brands, #imagePopup {
  /* isolating common properties */
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}




/* =========================================================
   ARDA NAVBAR - FULL TEMİZ KURUMSAL CSS
   ========================================================= */

/* --------------------
   NAVBAR ARKA PLAN (DÜZELTİLMİŞ)
-------------------- */
#primary-header,
.header-bottom,
.header-top,
.navbar,
.offcanvas,
.topbar-vip {
    background: #3089d7 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    overflow: visible !important;
    position: relative;
    z-index: 9999 !important;
}

/* Shrink efekti */
#header.shrink #primary-header {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

/* ===============================
   3D TILT HOVER + SHRINK LOGO
=============================== */

/* Varsayılan logo / navbar ayarları */
.navbar-brand .logo-top {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease, height 0.3s ease;
    transform-style: preserve-3d;
    transform-origin: center center;
}

/* 3D Tilt hover efekti */
.navbar-brand .logo-top:hover {
    transform: perspective(600px) rotateX(5deg) rotateY(-5deg) scale(1.08);
    filter: brightness(1.4) drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

/* Eğer navbar shrink olursa (scroll sonrası) — logo küçülüp animasyon */
#header.shrink .navbar-brand .logo-top {
    height: 65px;
    transition: height 0.25s ease, transform 0.25s ease;
}

/* Navbar / üst bar premium tasarım — “frosted glass / blur + yarı saydam & gölgeli” */
#primary-header,
.header-bottom,
.header-top,
.navbar {
    background: rgba(48, 137, 215, 0.95) !important;
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
}

/* Navbar padding / hizalama temizliği */
#primary-header .navbar {
    padding: 0.75rem 1rem;
}

/* --------------------
   MENÜ YAZILARI
-------------------- */
@media (min-width: 992px) {

    #primary-header .navbar-nav {
        display: flex;
        justify-content: center;   /* ✔ menü ortalandı */
        gap: 32px;
        margin: 0 auto !important;
    }

    #primary-header .navbar-nav .nav-item {
        margin: 0 14px;
        transition: transform .25s ease;
    }

    #primary-header .navbar-nav .nav-link {
        padding: 8px 0 !important;
        font-size: 17px;
        color: #ffffff !important;
        font-weight: 500;
    }
}

/* Apple Dock Hover – optimize */
#primary-header .nav-item:hover {
    transform: scale(1.24);
}

#primary-header .nav-item:hover + .nav-item,
#primary-header .nav-item:has(+ .nav-item:hover) {
    transform: scale(1.12);
}

/* --------------------
   HR ÇİZGİSİ
-------------------- */


/* --------------------
   ÜST BAR RENK (saat & telefon)
-------------------- */
.header-top {
    background: #3089d7 !important;
}

.header-top .info li {
    color: #ffffff !important;
}

.header-top svg {
    fill: #ffffff !important;
}

/* GENEL ICON STIL */
/* VIP INFO - fixed, premium */
.vip-info { display:flex; gap:14px; align-items:center; margin:0; padding:0; list-style:none; }
.vip-item { display:flex; gap:10px; align-items:center; color:#fff; }

/* icon container */
.vip-icon { width:40px; height:40px; min-width:40px; border-radius:10px; display:flex; align-items:center; justify-content:center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18), inset 0 1px 2px rgba(255,255,255,0.03); transition: transform .18s ease, box-shadow .18s ease; }

/* text */
.vip-text { color:#fffff; font-weight:600; font-size:14px; }

/* hover lift */
.vip-item:hover .vip-icon { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.45); }

/* phone bg */
.vip-phone-bg { background: #3089D7; }

/* clock bg */
.vip-clock-bg .vip-phone-bg { background: #3089D7; }

/* calendar bg */
.vip-calendar-bg .vip-phone-bg { background: #3089D7; }

/* subtle svg sizing */
.vip-icon svg { width:22px; height:22px; display:block; }

/* Calendar flip class handled by JS (no infinite CSS animation) */
.calendar-wrap.flip { transform-style: preserve-3d; transition: transform .7s cubic-bezier(.22,.9,.3,1); transform-origin: center; transform: rotateX(-160deg) scale(.99); box-shadow: 0 18px 40px rgba(48,137,215,0.12); }

/* =========================================================
   GRAPHITE BLACK — Premium Metal + Chrome + Noise + Sparkle
========================================================= */

.vip-icon.blue {
    position: relative;
    overflow: hidden;
}

/* 1) METAL GRADIENT (Apple tarzı) */
.vip-icon.blue svg {
    color: #242424 !important;
    stroke: #242424 !important;

    /* Sofistike metal aura */
    filter:
        drop-shadow(0 0 4px rgba(255,255,255,0.35))
        drop-shadow(0 0 12px rgba(0,0,0,0.7))
        drop-shadow(0 0 18px rgba(50,50,50,0.45));
    
    /* Apple tarzı metalik yüzey */
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15) 0%,
        rgba(0,0,0,0) 40%,
        rgba(255,255,255,0.08) 100%
    );
}

/* 2) METAL NOISE (çelik dokusu) */
.vip-icon.blue::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQIW2NgYGD4DwABAwEAffA9YQAAAABJRU5ErkJggg==");
    opacity: 0.25;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* 3) CHROME LIGHT SWEEP (yan ışık süpürme) */
.vip-icon.blue::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.65) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: chromeMove 3s linear infinite;
    opacity: 0.55;
}

@keyframes chromeMove {
    0% { left: -100%; }
    70% { left: 120%; }
    100% { left: 120%; }
}

/* 4) HOVER "GLINT SPARKLE" EFFECT */
.vip-item:hover .vip-icon.blue svg {
    color: #333333 !important;
    stroke: #333333 !important;

    filter:
        drop-shadow(0 0 6px rgba(255,255,255,0.9))
        drop-shadow(0 0 16px rgba(0,0,0,0.7))
        drop-shadow(0 0 24px rgba(65,65,65,0.5));
}

.vip-item:hover .vip-icon.blue::after {
    opacity: 0.9;
    animation-duration: 1.4s;
}


/* Yazı */
.vip-text {
    color: white;
    font-weight: 600;
    letter-spacing: 0.65px;
    font-size: 17px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    margin-left: 10px;     /* İkon ile yazı arasına boşluk */
    padding-left: 4px;     /* Ekstra nefes alanı */
    display: inline-block;
}

/* --------------------
   OFFCANVAS (Mobil Menü)
-------------------- */

/* Cam blur */
.glass-menu {
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255,255,255,0.25);
    animation: slideFade .35s ease;
}

@keyframes slideFade {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.mini-logo {
    height: 48px;
    background: white;
    padding: 6px;
    border-radius: 10px;
}

/* Mobil menü spacing */
.offcanvas-body .nav-item {
    margin-bottom: 14px;
}

.offcanvas-body .nav-link {
    font-size: 18px;
    padding: 6px 0 !important;
}

/* =====================================================
   VIP DROPDOWN – SAFE ADD-ON
   (Mevcut CSS’in ÜZERİNE eklenir)
   ===================================================== */

/* =========================
   ANA DROPDOWN
========================= */
.vip-dropdown {
    position: relative;
}

/* Kapalı hali */
.vip-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 9999;

    display: flex;
    flex-direction: column; /* alt alta */
    align-items: center;    /* yatay ortalama */
    text-align: center;     /* yazıları ortala */
}
}

/* JS ile açılan state */
.vip-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Desktop hover */
@media (min-width: 992px) {
    .vip-dropdown:hover > .vip-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* =========================
   SUB MENU – SAĞA AÇILMA
========================= */
.vip-sub {
    position: relative;
}

/* Submenu container */
.vip-submenu {
    position: absolute;
    top: 0;
    left: 100%;           /* Sağa açılması için */
    margin-left: 8px;

    background: #fff;
    border-radius: 16px;
    padding: 12px;

    display: flex;
    flex-wrap: nowrap;       /* Kartları yan yana dizmek için */
    gap: 12px;

    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity .3s ease, transform .3s ease;
    z-index: 10000;
    min-width: auto; /* genişlik içeriğe göre */
}

/* Hover ile aç */
@media (min-width: 992px) {
    .vip-sub:hover > .vip-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

/* =========================
   KART / BG ITEM
========================= */
.bg-item {
    position: relative;
    flex: 0 0 220px; /* sabit genişlik, yan yana dizilir */
    min-height: 280px;

    border-radius: 14px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center; /* yatay ortalama */
    text-align: left;

    color: #fff;
    font-weight: bold;
    padding: 0;

    box-shadow:
        0 10px 26px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.5);

    transition: transform 0.35s cubic-bezier(.22,.9,.3,1),
                box-shadow 0.35s ease;
    transform: scale(1); /* varsayılan hali */
}

.bg-item .bg-title {
    position: relative;
    z-index: 2;
    padding: 8px;
}

/* Hover efekt */
.bg-item:hover {
    transform: scale(1.03); /* sadece büyüme, oynama yok */
    box-shadow:
        0 18px 40px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.bg-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;               /* Beyaz katman yüksekliği (gerekirse artırabilirsiniz) */
    background: rgba(255, 255, 255, 0.7); /* yarı saydam beyaz */
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 1;                /* yazının altında, resmin üstünde */
}
/* =========================
   MOBİL / OFFCANVAS
========================= */
@media (max-width: 991px) {
    .vip-dropdown-menu,
    .vip-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        flex-wrap: wrap;
    }
    .bg-item {
        flex: 1 1 100%; /* mobilde alt alta */
        min-height: 200px;
    }
}


/* =====================================
   PREMIUM CONTACT MAPS
===================================== */

.contact-maps{
    width:100%;
    padding:100px 0;
    background:linear-gradient(180deg,#f8fafc,#eef2f7);
    display:flex;
    justify-content:center;   /* Tam ortalama */
}

.maps-container{
     width:100%;
    max-width:1300px;   /* Çok dar değil, premium geniş */
    padding:0 40px;
    margin:0 auto;
}

/* Grid */
.maps-grid{
     display:grid;
    grid-template-columns:repeat(3,1fr);
    width:100%;
    gap:0; /* boşluk*/
}

.map-card{
    padding:0;
    border-radius:0;
    box-shadow:none;
}

/* Harita */
.map-frame{
    width:100%;
    height:420px;   /* büyük ve premium */
    border-radius:0;
}

.map-frame iframe{
    width:100%;
    height:100%;
    border:0;
}

.city-icon{
    font-size:20px;
}


/* Overlay Buton */
.map-route-btn{
    position:absolute;
    bottom:18px;
    left:50%;
    transform:translateX(-50%);
    padding:10px 22px;
    background:rgba(48,137,215,0.85);
    backdrop-filter:blur(6px);
    color:#ffffff;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
    border-radius:30px;
    transition:.3s ease;
    box-shadow:0 6px 18px rgba(48,137,215,0.35);
}

.map-route-btn:hover{
    background:#3089d7;
    transform:translateX(-50%) scale(1.05);
}

/* Responsive */
@media(max-width:992px){
    .maps-grid{
        grid-template-columns:1fr;
    }
}
/* ==========================================================
   iOS 18 PREMIUM GLASS DROPDOWN
========================================================== */

.vip-dropdown {
    position: relative;
    z-index: 50;
}

/* --- NAVBAR KARARTMA + BLUR --- */
.navbar-dim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.22);
    backdrop-filter: blur(3px);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.navbar-dim.active {
    opacity: 1;
    pointer-events: all;
}

/* --- DROPDOWN BUTTON --- */
.vip-drop-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: opacity .15s ease;
}

.vip-drop-btn:hover {
    opacity: .75;
}

/* --- DROPDOWN MENU (iOS control panel gibi) --- */
.vip-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;

    width: 240px;
    padding: 12px;
    border-radius: 20px;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(22px) saturate(170%);
    border: 1px solid rgba(255,255,255,0.60);
    outline: 1px solid rgba(0,0,0,0.04);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.07),
        0 10px 20px rgba(0,0,0,0.04);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.96);

    transition:
        opacity .25s cubic-bezier(.16,.9,.32,1),
        transform .25s cubic-bezier(.16,.9,.32,1),
        visibility .25s;
}

/* Açık state */
.vip-dropdown.open .vip-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* --- LİSTE ELEMANLARI --- */
.vip-dropdown-menu li {
    list-style: none;
}

/* --- LİNKLER (ICON + YAZI) --- */
.vip-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px;
    border-radius: 14px;
    color: #0b1b2b;
    font-weight: 600;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: background .25s ease, transform .15s ease;
}

/* --- HOVER SHINE EFFECT --- */
.vip-dropdown-menu li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.0) 0%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.0) 100%
    );
    transform: skewX(-20deg);
    transition: left .4s ease;
}

.vip-dropdown-menu li a:hover::after {
    left: 120%;
}

.vip-dropdown-menu li a:hover {
    background: rgba(255,255,255,0.55);
    transform: translateY(-2px);
}

/* ICON STILLERI */
.vip-dropdown-menu li a i {
    font-size: 18px;
    width: 22px;
    text-align: center;
    opacity: .9;
}



/* Mobile / offcanvas: make submenu flow inside menu (prevents cut-off) */
@media (max-width: 991px) {
  /* inside offcanvas, let submenu be static stacked item */
  .offcanvas .vip-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 20px;
    pointer-events: auto;
  }

  /* links look like list items on mobile */
  .offcanvas .vip-dropdown-menu li a {
    padding: 12px 8px;
    display:block;
    color: #fff;

}

/* small accessibility nicety: caret rotate when open */
.vip-drop-btn .caret {
  display:inline-block;
  margin-left:8px;
  transition: transform .18s ease;
}
.vip-dropdown.open .vip-drop-btn .caret {
  transform: rotate(180deg);
}

/* ensure very high stacking so it won't be hidden by other elements */
.vip-dropdown-menu { z-index: 9999999; }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    background: #0d1117;
}

.service-inner {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;  
    align-items: center;         

    text-align: center;

    padding: 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}


.service-inner p {
    margin: 6px 0 12px 0;
    padding: 0 10px;
    font-size: 15px;
    color: #e6e6e6;
    line-height: 1.4;
    text-align: center;
    max-width: 260px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);

    opacity: 1; /* ✔ direkt görünür */
    transform: translateY(0);
    transition: .35s ease;
}
.service-item:hover .service-inner p {
    transform: translateY(-3px);
}


@media(min-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================================================
   VIP DETAY BUTTON
=================================================== */
/* ===================================================
   VIP NEON DETAIL BUTTON
=================================================== */
.vip-btn {
    margin-top: 14px;
    padding: 11px 22px;
    background: #0a1324;
    border: 1px solid rgba(48,137,215,0.65);
    border-radius: 10px;
    color: #dff3ff;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 0 6px rgba(48,137,215,0.5),
        inset 0 0 12px rgba(48,137,215,0.25);
}

.vip-btn .vip-icon {
    font-size: 17px;
}

.vip-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.4s;
}

.vip-btn:hover::before {
    left: 120%;
}

.vip-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 10px rgba(48,137,215,0.7),
        0 0 18px rgba(48,137,215,0.5),
        inset 0 0 14px rgba(48,137,215,0.35);
    border-color: rgba(48,137,215,0.9);
}



.pro-services{display:flex;flex-wrap:wrap;gap:18px;align-items:flex-start}
    .pro-card{width:260px;background:linear-gradient(180deg,#0b1b2b,#08121a);border-radius:12px;padding:12px;position:relative;cursor:pointer;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.6)}
    .pro-card .thumb{width:100%;height:160px;object-fit:cover;border-radius:8px;display:block}
    .pro-info{padding:10px 6px}

    /* fade */
    .fade{opacity:0;transform:translateY(20px);transition:all .6s ease}
    .fade.show{opacity:1;transform:none}

    /* modal */
    .vip-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.8);backdrop-filter:blur(6px);visibility:hidden;opacity:0;transition:opacity .28s,visibility .28s;z-index:9999}
    .vip-modal.show{visibility:visible;opacity:1}
    .vip-modal-content{background:linear-gradient(180deg,rgba(10,10,10,.9),rgba(5,5,5,.85));padding:18px;border-radius:12px;max-width:920px;width:92%;box-shadow:0 20px 60px rgba(0,0,0,.7);position:relative}
    .vip-modal img{width:100%;height:auto;display:block;border-radius:8px}
    .vip-close{position:absolute;right:12px;top:8px;font-size:28px;cursor:pointer;color:#fff;padding:6px}
    .vip-arrows{display:flex;justify-content:space-between;margin-top:12px}
    .vip-arrows div{background:rgba(255,255,255,.06);padding:8px 12px;border-radius:8px;cursor:pointer;color:#fff}
    /* magnifier */
    #magnifier{position:absolute;width:160px;height:160px;border-radius:50%;border:3px solid rgba(255,255,255,.6);backdrop-filter:blur(6px);background-repeat:no-repeat;display:none;pointer-events:none;z-index:50}
    /* debug notice */
    .note{opacity:.8;font-size:13px;margin-bottom:12px;color:#bcd}

/* ======================================
   ANA BUTON
====================================== */
.lang-main {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(15,20,30,0.85);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    background .3s ease;
}

.lang-main:hover {
  background: #3089d7;
  transform: scale(1.05);
}

/* Açılınca döner */
.lang-fab.open .lang-main {
  transform: rotate(135deg) scale(1.05);
  animation: fabGlow 2.5s ease-in-out infinite;
}

/* Halo ışık */
.lang-main::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(48,137,215,0.45) 0%,
    rgba(48,137,215,0.18) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.lang-fab.open .lang-main::before {
  opacity: 1;
}

/* Glow animasyonu */
@keyframes fabGlow {
  0%,100% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      0 0 0 rgba(48,137,215,0);
  }
  50% {
    box-shadow:
      0 12px 36px rgba(0,0,0,0.4),
      0 0 18px rgba(48,137,215,0.45);
  }
}

/* ======================================
   MENÜ MERKEZİ
====================================== */
.lang-options {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lang-fab.open .lang-options {
  pointer-events: auto;
}


