/* ===== VARIABLES ===== */
:root {
  --red: #111111;
  --red-dark: #000000;
  --red-light: #2a2a2a;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --gray: #6b7280;
  --gray-light: #f4f4f4;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 10px;
  --font: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font); }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER (Shuttle Port ile birebir — solid, tek satır) ===== */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 2000;
    background: #fff;
    box-shadow: 0 1px 0 #e8e8e8, 0 4px 16px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { background: #d0142d; color: #fff; width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.logo-text { font-size: 19px; font-weight: 900; color: #111; letter-spacing: -0.5px; }
.logo-text strong { color: #d0142d; }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center; }
.nav-menu > li > a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    border-radius: 6px;
    transition: .15s;
    text-decoration: none;
    display: flex; align-items: center; gap: 4px;
    white-space: nowrap;
}
.nav-menu > li > a:hover { color: #d0142d; background: #fef2f2; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: #fff; border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 6px; min-width: 180px; z-index: 999;
    border-top: 3px solid #d0142d;
}
.dropdown li a { display: block; padding: 9px 14px; font-size: 14px; border-radius: 6px; color: #222; font-weight: 600; transition: .15s; }
.dropdown li a:hover { background: #fef2f2; color: #d0142d; }
.has-dropdown:hover .dropdown { display: block; }

/* Right side */
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Lang switcher */
.lang-switcher { position: relative; }
.current-lang { color: #333; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 5px; font-weight: 700; padding: 6px 10px; border-radius: 6px; border: 1px solid #e0e0e0; }
.current-lang:hover { background: #f5f5f5; }
.lang-dropdown {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    background: #fff; padding: 6px; border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12); min-width: 72px; z-index: 999;
}
.lang-switcher:hover .lang-dropdown { display: block; }
.lang-dropdown a { color: #333; display: block; padding: 5px 10px; border-radius: 4px; font-size: 13px; font-weight: 600; text-align: center; }
.lang-dropdown a:hover, .lang-dropdown a.active { background: #fef2f2; color: #d0142d; }

/* Buttons */
.btn-register {
    background: transparent; border: 1.5px solid #d0142d; color: #d0142d;
    padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: .15s; white-space: nowrap;
}
.btn-register:hover { background: #fef2f2; }
.btn-login {
    background: #d0142d; color: #fff; border: none;
    padding: 7px 18px; border-radius: 20px; font-size: 13px; font-weight: 800;
    cursor: pointer; transition: .15s; white-space: nowrap;
}
.btn-login:hover { background: #b01025; }

/* User menu */
.user-menu { position: relative; }
.user-menu > span { color: #222; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 5px; font-weight: 600; padding: 6px 10px; border: 1px solid #e0e0e0; border-radius: 6px; }
.user-dropdown { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: #fff; border-radius: 10px; box-shadow: 0 8px 20px rgba(0,0,0,0.12); padding: 6px; z-index: 999; min-width: 170px; }
.user-dropdown a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; font-size: 13px; border-radius: 6px; color: #222; font-weight: 600; }
.user-dropdown a:hover { background: #fef2f2; color: #d0142d; }
.user-menu:hover .user-dropdown { display: block; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #333; border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    margin-top: 72px; /* header yüksekliği kadar */
}

.hero-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-swiper { width: 100%; height: 100%; }
.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%; height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.18) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    left: 8%;
    width: 55%;
    z-index: 5;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* ===== BOOKING WIDGET ===== */
.booking-widget {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    max-width: 1160px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 24px 22px;
    z-index: 10;
    box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.widget-tabs {
    display: flex;
    gap: 28px;
    margin-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.widget-tab {
    background: none; border: none;
    padding: 4px 0;
    font-size: 0.88rem; font-weight: 800;
    color: #aaa; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    transition: .2s; position: relative;
}
.widget-tab.active { color: #111; }
.widget-tab.active::after {
    content: ''; position: absolute;
    bottom: -12px; left: 0; width: 100%;
    height: 3px; background: #d0142d; border-radius: 3px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.widget-row {
    display: flex; align-items: center; gap: 10px;
}

.widget-field {
    flex: 1;
    background: #f5f5f5; border-radius: 12px;
    padding: 10px 14px;
    display: flex; flex-direction: column;
    position: relative; transition: .15s;
}
.widget-field:hover { background: #fff; box-shadow: 0 0 0 2px #d0142d; }

.widget-field label {
    font-size: 0.65rem; font-weight: 900; color: #111;
    margin-bottom: 3px;
    display: flex; align-items: center; gap: 7px;
    text-transform: uppercase; letter-spacing: 0.3px;
}
.widget-field label i { color: #d0142d; font-size: 0.85rem; }

.widget-field input, .widget-field select {
    border: none; background: none;
    font-size: 0.9rem; font-weight: 700; color: #222;
    width: 100%; outline: none; cursor: pointer;
}

.return-toggle-wrap {
    display: flex; flex-direction: column;
    align-items: center; gap: 5px;
    flex-shrink: 0; padding: 0 4px;
}
.return-toggle-wrap > span {
    font-size: 0.6rem; font-weight: 900; color: #111;
    text-transform: uppercase; white-space: nowrap;
}
.return-toggle { display: flex; align-items: center; }
.return-toggle input[type=checkbox] { display: none; }

.toggle-slider {
    width: 42px; height: 22px; background: #ddd;
    border-radius: 20px; position: relative;
    cursor: pointer; transition: .3s; display: block;
}
.toggle-slider::after {
    content: ''; position: absolute;
    top: 3px; left: 3px; width: 16px; height: 16px;
    background: #fff; border-radius: 50%; transition: .3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
#return-check:checked ~ .toggle-slider { background: #d0142d; }
#return-check:checked ~ .toggle-slider::after { left: 23px; }

.btn-search {
    width: 66px; height: 66px;
    background: #d0142d; color: #fff;
    border: none; border-radius: 50%;
    font-size: 1rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: .2s; flex-shrink: 0;
    letter-spacing: -0.5px;
}
.btn-search:hover { background: #b01025; transform: scale(1.06); box-shadow: 0 6px 18px rgba(208,20,45,0.35); }

/* Autocomplete */
.autocomplete-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid #e8e8e8; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); z-index: 100; max-height: 240px; overflow-y: auto; display: none; }
.autocomplete-dropdown.open { display: block; }
.autocomplete-item { padding: 10px 14px; font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #f0f0f0; }
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: #fef2f2; color: #d0142d; }

/* Mobile */
@media (max-width: 1024px) {
    .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px; }
    .nav-menu.open { display: flex; }
    .hamburger { display: flex; }
    .hero-section { height: calc(100svh - 72px); min-height: 600px; }
    .hero-content { left: 5%; width: 90%; top: 40%; }
    .booking-widget { position: relative; bottom: auto; left: auto; transform: none; width: 100%; border-radius: 0; padding: 16px; }
    .widget-row { flex-wrap: wrap; gap: 8px; }
    .widget-field { flex: 1 1 calc(50% - 8px); }
    .btn-search { width: 100%; border-radius: 12px; height: 52px; }
    .return-toggle-wrap { flex-direction: row; gap: 10px; }
    .header-right .btn-register { display: none; }
}
@media (max-width: 600px) {
    .widget-field { flex: 1 1 100%; }
}







/* ===== HERO ===== */
.hero-section {
    position: relative;
    height: calc(100vh - 72px);
    min-height: 640px;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.10) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-text {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    left: 6%;
    z-index: 5;
    max-width: 580px;
}

.hero-text p {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

.hero-text h1 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
}

/* ===== BOOKING WIDGET ===== */
.booking-widget {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px 22px;
    z-index: 10;
    box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.swap-btn {
    background: #f0f0f0; border: none; border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; cursor: pointer; color: #555; font-size: 13px; transition: .2s;
}
.swap-btn:hover { background: #d0142d; color: #fff; }
.discount-hint { font-size: 0.65rem; color: #22c55e; font-weight: 700; margin-top: 2px; }
.widget-field-sm { flex: 0 0 auto; min-width: 110px; }



.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.15) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
}

.hero-content {
    max-width: 680px;
}

/* Metin slider */
.hero-text-wrap { margin-bottom: 32px; }

.hero-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.hero-text-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-text-swiper { flex: 1; overflow: hidden; }
.hero-text-swiper .swiper-wrapper { align-items: center; }
.hero-text-swiper h1 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
}

.htnav-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: .2s;
}
.htnav-btn:hover { background: rgba(255,255,255,0.25); border-color: #fff; }


/* ===== BOOKING WIDGET ===== */
.booking-widget {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px 22px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
    width: 100%;
}

.swap-btn {
    background: #f0f0f0; border: none; border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; cursor: pointer; color: #555; font-size: 13px; transition: .2s;
}
.swap-btn:hover { background: #d0142d; color: #fff; }
.discount-hint { font-size: 0.65rem; color: #22c55e; font-weight: 700; margin-top: 2px; }
.widget-field-sm { flex: 0 0 auto; min-width: 110px; }

.widget-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
}

.widget-tab {
    background: none;
    border: none;
    padding: 6px 0;
    font-size: 0.9rem;
    font-weight: 800;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    position: relative;
}

.widget-tab.active { color: #111; }
.widget-tab.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d0142d;
    border-radius: 3px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.widget-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-field {
    flex: 1;
    background: #f5f5f5;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.2s;
}

.widget-field:hover {
    background: #fff;
    box-shadow: 0 0 0 2px #d0142d;
}

.widget-field label {
    font-size: 0.68rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.widget-field label i {
    color: #d0142d;
    font-size: 0.9rem;
}

.widget-field input,
.widget-field select {
    border: none;
    background: none;
    font-size: 0.92rem;
    font-weight: 700;
    color: #333;
    width: 100%;
    outline: none;
    cursor: pointer;
}

.return-toggle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 0 8px;
}

.return-toggle-wrap > span {
    font-size: 0.62rem;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.return-toggle { display: flex; align-items: center; }
.return-toggle input[type=checkbox] { display: none; }

.toggle-slider {
    width: 44px;
    height: 24px;
    background: #ddd;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    display: block;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

#return-check:checked ~ .toggle-slider { background: #d0142d; }
#return-check:checked ~ .toggle-slider::after { left: 23px; }

.btn-search {
    width: 72px;
    height: 72px;
    background: #d0142d;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.btn-search:hover {
    background: #b01025;
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(208,20,45,0.4);
}

@media (max-width: 1024px) {
    .hero-section { height: 100svh; min-height: 700px; }
    .hero-content { top: 35%; left: 5%; width: 90%; }
    .hero-text h1 { font-size: 2.4rem; letter-spacing: -1px; }
    .hero-text p { font-size: 1.1rem; }
    .booking-widget { position: relative; bottom: auto; left: auto; transform: none; width: 100%; border-radius: 0; padding: 20px 16px; box-shadow: 0 -10px 30px rgba(0,0,0,0.1); }
    .widget-row { flex-wrap: wrap; gap: 10px; }
    .widget-field { flex: 1 1 calc(50% - 10px); }
    .btn-search { width: 100%; border-radius: 14px; height: 56px; }
    .return-toggle-wrap { flex-direction: row; gap: 10px; }
}

@media (max-width: 600px) {
    .widget-field { flex: 1 1 100%; }
    .hero-text h1 { font-size: 2rem; }
}

/* Autocomplete */
.autocomplete-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-lg); z-index: 100; max-height: 240px; overflow-y: auto; display: none; }
.autocomplete-dropdown.open { display: block; }
.autocomplete-item { padding: 10px 14px; font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: var(--gray-light); color: var(--red); }
.widget-field { position: relative; }

/* ===== SECTIONS COMMON ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--dark); position: relative; display: inline-block; }
.section-header h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--red); margin: 12px auto 0; border-radius: 2px; }
.section-header p { color: var(--gray); margin-top: 16px; font-size: 15px; }

/* ===== POPULAR LOCATIONS ===== */
.locations-section { background: var(--gray-light); }
.location-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.loc-tab { padding: 10px 22px; border: 2px solid var(--border); border-radius: 30px; background: var(--white); font-size: 14px; font-weight: 600; cursor: pointer; transition: .2s; display: flex; align-items: center; gap: 6px; color: var(--gray); }
.loc-tab:hover, .loc-tab.active { background: var(--red); color: var(--white); border-color: var(--red); }

.location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.location-card { display: flex; align-items: center; gap: 16px; background: var(--white); border-radius: var(--radius); padding: 18px 20px; border: 1.5px solid var(--border); transition: .25s; cursor: pointer; }
.location-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-2px); }
.loc-card-icon { width: 48px; height: 48px; background: rgba(17,17,17,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 20px; flex-shrink: 0; }
.loc-card-info { flex: 1; }
.loc-card-info h3 { font-size: 14px; font-weight: 700; color: var(--dark); }
.loc-route { font-size: 12px; color: var(--gray); }
.loc-card-price { text-align: right; }
.loc-card-price span { font-size: 11px; color: var(--gray); display: block; }
.loc-card-price strong { font-size: 18px; font-weight: 800; color: var(--red); }

/* Flatpickr Customization */
.flatpickr-calendar.hasTime.noCalendar { width: 140px !important; border-radius: 12px !important; box-shadow: var(--shadow-lg) !important; border: 1.5px solid var(--border) !important; }
.flatpickr-time { height: 40px !important; line-height: 40px !important; border-top: none !important; }
.flatpickr-time input { font-size: 16px !important; font-weight: 700 !important; color: var(--dark) !important; }
.flatpickr-time .flatpickr-time-separator { font-weight: 700 !important; }
.flatpickr-am-pm { font-weight: 700 !important; }
.flatpickr-calendar.arrowTop:after, .flatpickr-calendar.arrowTop:before { display: none !important; }

#distance-info { font-size: 13px; font-weight: 700; color: var(--red); margin-left: 10px; display: none; background: rgba(161,20,34,0.1); padding: 4px 10px; border-radius: 6px; vertical-align: middle; }

/* ===== TOURS ===== */
.tours-section { background: var(--white); }
.section-header .btn-outline { display: inline-block; margin-top: 12px; padding: 10px 28px; border: 2px solid var(--red); color: var(--red); border-radius: 30px; font-weight: 600; font-size: 14px; transition: .2s; }
.section-header .btn-outline:hover { background: var(--red); color: var(--white); }

.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.tour-card { border-radius: 14px; overflow: hidden; border: 1.5px solid var(--border); transition: .25s; display: block; }
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--red); }
.tour-image { position: relative; height: 200px; overflow: hidden; }
.tour-image img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.tour-card:hover .tour-image img { transform: scale(1.06); }
.tour-badge { position: absolute; top: 12px; right: 12px; background: var(--red); color: var(--white); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.tour-info { padding: 18px; }
.tour-info h3 { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
.tour-meta { display: flex; gap: 12px; font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.tour-meta span { display: flex; align-items: center; gap: 4px; }
.tour-price { display: flex; align-items: center; justify-content: space-between; }
.price-label { font-size: 11px; color: var(--gray); }
.tour-price strong { font-size: 20px; font-weight: 800; color: var(--red); }

/* ===== VIP ===== */
.vip-section { background: var(--dark); }
.vip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vip-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.vip-text p { color: rgba(255,255,255,.7); margin-bottom: 24px; line-height: 1.8; }
.vip-features { margin-bottom: 32px; }
.vip-features li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); padding: 8px 0; font-size: 15px; }
.vip-features li i { color: var(--red); font-size: 18px; }
.vip-contact { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-whatsapp { background: #25D366; color: var(--white); padding: 12px 24px; border-radius: 8px; font-weight: 700; display: flex; align-items: center; gap: 8px; font-size: 15px; transition: .2s; flex: 1; justify-content: center; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-phone { background: rgba(255,255,255,.1); color: var(--white); padding: 12px 24px; border-radius: 8px; font-weight: 700; display: flex; align-items: center; gap: 8px; font-size: 15px; border: 1px solid rgba(255,255,255,.2); transition: .2s; flex: 1; justify-content: center; }
.btn-phone:hover { background: rgba(255,255,255,.2); }
.vip-images { overflow: hidden; border-radius: 14px; }
.vip-images .swiper-slide img { border-radius: 14px; width: 100%; height: 380px; object-fit: cover; }

/* ===== VIPTRANSFER DESIGN SYSTEM VARIABLES (Original Navy/Yellow) ===== */
:root {
  --vt-yellow: #FFD100;
  --vt-yellow-dark: #E6BC00;
  --vt-yellow-light: #FFF9D6;
  --vt-black: #002661;
  --vt-white: #ffffff;
  --vt-gray-50: #f9fafb;
  --vt-gray-100: #f3f4f6;
  --vt-gray-200: #e5e7eb;
  --vt-gray-500: #6b7280;
  --vt-gray-600: #4b5563;
  --vt-tr: all .3s cubic-bezier(.4, 0, .2, 1);
  --vt-trf: all .15s ease;
  --vt-shl: 0 16px 40px rgba(0, 0, 0, .15);
  --vt-shm: 0 8px 24px rgba(0, 0, 0, .12);
}

/* ===== SECTION COMMON HEADERS ===== */
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-tag { 
    display: inline-block; background: var(--vt-yellow-light); color: #8a6e00; 
    font-size: 0.72rem; font-weight: 800; padding: 5px 15px; border-radius: 50px; 
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; 
}
.sec-title { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--vt-black); font-weight: 900; margin-bottom: 12px; }
.sec-sub { font-size: 1rem; color: var(--vt-gray-600); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* ===== WHY US ===== */
.why-us-section { background: var(--vt-gray-50); padding: 100px 0; }
/* ===== TRUST STRIP (REMOVED BY USER) ===== */
.trust-strip { display: none; }

/* ===== VIP SERVICES (VIP Hizmetlerimiz) ===== */
.special-solutions { padding: 100px 0; background: #fff; }
.solutions-container { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: stretch; }
.sol-large-card { 
    position: relative; border-radius: 32px; overflow: hidden; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); background: #000; 
    height: 100%; display: flex; align-items: stretch; padding: 4px; min-height: 500px;
}
@media (max-width: 1100px) {
    .solutions-container { grid-template-columns: 1fr; }
    .sol-large-card { min-height: 380px; height: 380px; }
}
.sol-large-card::before {
    content: ''; position: absolute; top: -25%; left: -25%; width: 150%; height: 150%;
    background: conic-gradient(from 0deg, transparent, var(--vt-yellow), transparent 25%);
    animation: rotateNeon 3s linear infinite; z-index: 0;
}
.sol-large-card::after { content: ''; position: absolute; inset: 4px; background: #000; border-radius: 28px; z-index: 1; }
.sol-large-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.85; transition: 0.5s; position: relative; z-index: 10; border-radius: 28px; }
.sol-large-card:hover img { transform: scale(1.05); opacity: 0.7; }
.sol-large-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.4) 50%, transparent 100%); z-index: 11; border-radius: 0 0 28px 28px; }
.sol-large-tag { display: inline-block; border-bottom: 3px solid var(--vt-yellow); color: var(--vt-yellow); font-weight: 900; text-transform: uppercase; font-size: 1.1rem; margin-bottom: 10px; }
.sol-large-desc { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.6; }
.sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; flex: 1; }
.sol-item { background: #f8f9fa; padding: 30px; border-radius: 24px; border: 1px solid #eee; transition: 0.3s; display: flex; flex-direction: column; gap: 15px; text-decoration: none; height: 100%; }
.sol-item:hover { background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--vt-yellow); transform: translateY(-5px); }
.sol-icon { width: 62px; height: 62px; background: var(--vt-yellow); color: var(--vt-black); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; box-shadow: 0 8px 15px rgba(255,209,0,0.2); transition: 0.3s; z-index: 1; }
.sol-item:hover .sol-icon { transform: scale(1.1) rotate(-5deg); background: var(--vt-black); color: var(--vt-yellow); }
.sol-info h4 { font-size: 1.15rem; font-weight: 800; color: #000; margin-bottom: 6px; letter-spacing: -0.4px; }
.sol-info p { font-size: 0.88rem; color: #666; line-height: 1.5; margin-bottom: 12px; }
.sol-link { margin-top: auto; color: var(--vt-yellow); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }

@media (max-width: 768px) {
    .sol-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sol-item { padding: 20px; gap: 10px; }
    .sol-icon { width: 45px; height: 45px; font-size: 1.2rem; }
    .sol-info h4 { font-size: 0.95rem; }
    .sol-info p { font-size: 0.75rem; }
}

/* ===== CTA SECTION ===== */
.cta-sec { padding: 96px 0; background: #000; text-align: center; border: none; }
.cta-sec h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 14px; font-weight: 900; letter-spacing: normal; }
.cta-sec p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
    .cta-sec { padding: 60px 0; }
    .cta-sec h2 { font-size: 1.6rem; }
    .cta-sec p { font-size: 0.9rem; margin-bottom: 25px; }
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-bigwa { background: #25D366; color: #fff; padding: 16px 35px; border-radius: 14px; font-size: 1rem; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; border: 2px solid #25D366; text-decoration: none; }
.btn-bigwa:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37,211,102,0.2); }
.btn-bigphone { background: transparent; color: var(--vt-yellow); padding: 16px 35px; border-radius: 14px; font-size: 1rem; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; border: 2px solid var(--vt-yellow); text-decoration: none; }
.btn-bigphone:hover { background: var(--vt-yellow); color: #000; transform: translateY(-3px); }

@media (max-width: 768px) {
    .btn-bigwa, .btn-bigphone { width: 100%; padding: 14px 20px; font-size: 0.9rem; }
}

/* ===== KURUMSAL (Sectoral) ===== */
.sectoral-sec { padding: 90px 0; background: #fff; border-top: 1px solid #f0f0f0; color: var(--vt-black); }
.sector-main { display: flex; gap: 40px; align-items: stretch; }
.sector-grid-wrap { flex: 1; }
.sectors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sector-card { background: #f9fafb; border: 1px solid #e5e7eb; padding: 32px; border-radius: 20px; display: flex; align-items: flex-start; gap: 20px; transition: 0.3s; }
.sector-card:hover { background: #fff; border-color: var(--vt-yellow); box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-5px); }
.sector-icon { width: 60px; height: 60px; background: var(--vt-black); color: var(--vt-yellow); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; transition: 0.3s; }
.sector-card:hover .sector-icon { transform: scale(1.1) rotate(-5deg); background: var(--vt-yellow); color: var(--vt-black); }
.sector-info h3 { font-size: 1.15rem; font-weight: 800; color: #000; margin-bottom: 6px; }
.sector-info p { font-size: 0.875rem; color: #666; line-height: 1.6; }

@media (max-width: 992px) {
    .sector-main { flex-direction: column-reverse; }
    .sectors-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sector-card { padding: 20px 10px; flex-direction: column; align-items: center; text-align: center; }
    .sector-banner { flex: unset; min-height: 250px; margin-bottom: 20px; }
    .sector-banner-content h3 { font-size: 1.2rem; }
    .sector-banner-content p { font-size: 0.8rem; }
}
.sector-banner { flex: 0 0 380px; position: relative; border-radius: 24px; overflow: hidden; padding: 3px; background: #000; display: flex; min-height: 450px; }
.sector-banner::before { content: ''; position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background: conic-gradient(from 0deg, transparent, var(--vt-yellow), transparent 25%); animation: rotateNeon 4s linear infinite; z-index: 0; }
.sector-banner-inner { position: relative; z-index: 1; flex: 1; width: 100%; height: 100%; border-radius: 21px; overflow: hidden; background: url('/assets/images/vip1.jpg') center/cover no-repeat; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.sector-banner-inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .8) 100%); z-index: 1; }
.sector-banner-content { position: relative; z-index: 2; color: #fff; }
.sector-banner-content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; color: var(--vt-yellow); }
.sector-banner-content p { font-size: .92rem; opacity: .9; margin: 0; line-height: 1.5; }

.corp-cta { padding: 40px 0; background: #fff; }
.corp-cta-box { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--vt-black); padding: 40px 60px; border-radius: 24px; color: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.15); border: none; }
.corp-cta-content h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; color: var(--vt-yellow); }
.corp-cta-content p { font-size: 1rem; opacity: .9; max-width: 550px; line-height: 1.5; color: #fff; }
.btn-corp-wa { padding: 16px 32px; background: var(--vt-yellow); color: var(--vt-black); border-radius: 14px; font-weight: 700; text-decoration: none; transition: 0.3s; white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; border: none; }
.btn-corp-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,209,0,0.3); background: #fff; }

@keyframes rotateNeon { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== SEO & MARQUEE (Previously Added) ===== */

.why-us-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--vt-white) 0%, var(--vt-gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section .section-header { text-align: center; margin-bottom: 50px; }
.why-us-section .section-header h2 { font-size: 32px; font-weight: 800; color: var(--vt-black); margin-bottom: 12px; }
.why-us-section .section-header p { font-size: 15px; color: var(--vt-gray-600); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

.feature-card {
  background: var(--vt-white);
  padding: 25px 20px;
  border-radius: 24px;
  border: 1px solid var(--vt-gray-200);
  transition: var(--vt-tr);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--vt-yellow);
  opacity: 0;
  z-index: -1;
  transition: var(--vt-tr);
  transform: scale(0.95);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: var(--vt-shl);
}

.feature-card:hover::after {
  opacity: 0.05;
  transform: scale(1);
}

.feature-icon-circle {
  width: 54px;
  height: 54px;
  background: var(--vt-yellow-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  color: var(--vt-black);
  transition: var(--vt-tr);
}

.feature-card:hover .feature-icon-circle {
  background: var(--vt-yellow);
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 16px rgba(255, 209, 0, 0.2);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--vt-black);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.feature-card p {
  font-size: .82rem;
  color: var(--vt-gray-600);
  line-height: 1.5;
}

/* SEO Cloud & Marquee */
.keyword-cloud-wrap { margin-top: 60px; overflow: hidden; padding: 20px 0; }
.keyword-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }
.keyword-item {
  font-size: .78rem;
  color: var(--vt-gray-500);
  background: var(--vt-gray-100);
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--vt-trf);
  border: 1px solid transparent;
  font-weight: 500;
  text-decoration: none;
}
.keyword-item:nth-child(-n+6) { background: var(--vt-yellow); color: var(--vt-black); font-weight: 600; }
.keyword-item:hover { background: var(--vt-white); color: var(--vt-yellow-dark); border-color: var(--vt-yellow); }

.marquee-container { display: flex; gap: 15px; animation: scrollMarquee 150s linear infinite; width: max-content; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.keyword-item-dark {
  background: #f1f3f5;
  color: #555;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.keyword-item-dark:hover { background: var(--vt-yellow) !important; color: #000 !important; border-color: var(--vt-yellow) !important; transform: translateY(-2px); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--white); font-size: 20px; font-weight: 400; }
.footer-logo i { color: var(--red); font-size: 22px; }
.footer-logo strong { font-weight: 800; color: var(--red); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-contact a, .footer-contact p { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.footer-contact i { color: var(--red); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 15px; transition: .2s; }
.social-links a:hover { background: var(--red); color: var(--white); }
.footer-links h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-links h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); border-radius: 2px; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: .2s; word-break: break-word; overflow-wrap: break-word; display: block; }
.footer-links ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }

/* ===== MODERN FOOTER (From VIPTransfer) ===== */
.footer { background: #000; padding: 80px 0 40px; color: #fff; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--vt-yellow), transparent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand-name { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 15px; }
.footer-brand-name em { color: var(--vt-yellow); font-style: normal; }
.footer-desc { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 25px; }
.footer-h { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-h::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--vt-yellow); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--vt-yellow); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-copy { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* TURSAB SECTION */
.tursab-section { margin-bottom: 60px; }
.tursab-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 25px 35px; border-radius: 20px; display: flex; align-items: center; gap: 25px; backdrop-filter: blur(10px); transition: 0.3s ease; }
.tursab-card:hover { border-color: var(--vt-yellow); background: rgba(255,255,255,0.05); }
.tursab-badge-icon { background: var(--vt-yellow); color: var(--vt-black); padding: 12px 18px; border-radius: 12px; font-weight: 900; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(255, 209, 0, 0.2); }
.tursab-content { flex-grow: 1; }
.t-label { font-size: 0.7rem; color: var(--vt-yellow); font-weight: 800; letter-spacing: 2px; margin-bottom: 5px; opacity: 0.8; }
.t-name { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.t-meta { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.t-meta strong { color: #fff; }
.t-sep { margin: 0 10px; color: rgba(255,255,255,0.2); }
.tursab-verify-btn { background: var(--vt-yellow); color: var(--vt-black); border: none; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 0.85rem; transition: 0.3s; white-space: nowrap; }
.tursab-verify-btn:hover { background: #fff; transform: translateX(5px); }

/* FLOATING BUTTONS */
.float-btns { position: fixed; bottom: 30px; right: 30px; z-index: 1000; display: flex; flex-direction: column; gap: 15px; }
.float-wa, .float-phone { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.3); transition: 0.3s; text-decoration: none; }
.float-wa { background: #25D366; }
.float-phone { background: var(--vt-yellow); }
.float-wa:hover, .float-phone:hover { transform: scale(1.1) translateY(-5px); }

/* MEKA BADGE */
.meka-badge { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 12px; cursor: pointer; background: transparent !important; transition: all 0.4s; z-index: 1; }
.badge-logo { height: 22px; width: auto; position: relative; z-index: 3; }
.meka-badge .tooltip { position: absolute; bottom: 120%; left: 50%; transform: translateX(-50%) translateY(10px); background: #111; color: #fff; padding: 7px 12px; border-radius: 8px; font-size: 11px; white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.3s; border: 1px solid var(--vt-yellow); z-index: 150; }
.meka-badge:hover .tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.shine-wrapper { position: absolute; inset: 0; overflow: hidden; border-radius: 12px; z-index: 2; pointer-events: none; }
.shine-wrapper::before { content: ""; position: absolute; top: 0; left: -150%; width: 20%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,209,0,0.4), transparent); transform: skewX(-25deg); animation: siteciShine 4s linear infinite; }
@keyframes siteciShine { 0% { left: -150%; } 100% { left: 150%; } }

@media (max-width: 768px) {
  .footer { padding: 60px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-h::after { left: 50%; transform: translateX(-50%); }
  .footer-links a { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tursab-card { flex-direction: column; text-align: center; padding: 25px 20px; gap: 15px; }
  .t-sep { display: none; }
  .float-btns { bottom: 20px; right: 20px; }
  .float-wa, .float-phone { width: 50px; height: 50px; }
}

/* ===== PAGE HERO ===== */
.page-hero { position: relative; min-height: 240px; background: var(--dark); overflow: hidden; margin-top: 110px; }
@media (max-width: 991px) {
  .page-hero { margin-top: 70px; min-height: 180px; padding: 0 15px; }
}
.page-hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3)); 
    z-index: 1; 
}
@media (max-width: 1024px) {
    .page-hero { margin-top: 70px; }
}
@media (max-width: 768px) {
    .page-hero .container { padding: 40px 20px !important; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 28px; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: .2s; animation: pulse 2s infinite; }
.whatsapp-float:hover { background: #1ebe5a; transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,.7); } }

/* ===== MODALS ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 16px; padding: 40px; width: 100%; max-width: 420px; position: relative; animation: modalIn .3s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 18px; color: var(--gray); cursor: pointer; }
.modal-header { margin-bottom: 28px; }
.modal-header h3 { font-size: 22px; font-weight: 800; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.modal-header h3 i { color: var(--red); }
.modal-header p { font-size: 14px; color: var(--gray); margin-top: 6px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); display: block; margin-bottom: 6px; }
.form-group input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; outline: none; transition: .2s; }
.form-group input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(17,17,17,.08); }
.form-row-between { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray); cursor: pointer; }
.link-red { font-size: 13px; color: var(--red); font-weight: 600; }
.btn-primary { background: var(--red); color: var(--white); border: none; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: .2s; }
.btn-primary:hover { background: var(--red-dark); }
.btn-primary.full { width: 100%; }
.modal-switch { text-align: center; font-size: 13px; color: var(--gray); margin-top: 16px; }
.modal-switch a { color: var(--red); font-weight: 600; }

/* ===== SCROLL HEADER ===== */
.site-header.scrolled .main-nav { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .why-us-section .section-header h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .vip-grid { grid-template-columns: 1fr; gap: 32px; }
  .vip-images .swiper-slide img { height: 280px; }
  .widget-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 48px 0; }
  .header-top { display: none; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 12px 0 24px;
    flex-direction: column;
    gap: 0;
    border-top: 3px solid var(--red);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
  }
  .has-dropdown .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 32px;
    border-top: none;
    background: var(--gray-light);
  }
  .has-dropdown .dropdown li a {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 0;
  }
  /* Hero & Widget */
  .hero-section { height: auto; min-height: 100svh; padding-bottom: 40px; }
  .hero-content { padding-top: 90px; }
  .booking-widget { border-radius: 12px; margin: 0 4px; }
  .widget-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .widget-field.small { min-width: unset; }
  .widget-row-bottom { flex-wrap: wrap; }
  .btn-search { flex: 1; min-width: 140px; justify-content: center; }
  .return-fields { flex-wrap: wrap; }
  /* Grids — 2 kolon kalır */
  .features-grid { grid-template-columns: 1fr 1fr; }
  .tours-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  /* Locations tek kolon (uzun metin) */
  .location-grid { grid-template-columns: 1fr; }
  /* VIP */
  .vip-grid { grid-template-columns: 1fr; gap: 28px; }
  .vip-images .swiper-slide img { height: 240px; }
  .vip-contact { flex-direction: column; }
  .btn-whatsapp, .btn-phone { flex: unset; width: 100%; }
  /* Modal */
  .modal-box { padding: 28px 20px; margin: 16px; max-width: 100%; }
}
@media (max-width: 480px) {
  section { padding: 36px 0; }
  .container { padding: 0 12px; }
  /* Widget tabs 3 kolon grid olarak kalÄ±r */
  .widget-tabs { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .widget-tab { font-size: 11px; padding: 10px 4px; gap: 4px; flex-direction: column; }
  .widget-tab i { font-size: 16px; }
  /* Widget row tek kolon Ã§ok dar ekranda */
  .widget-row { grid-template-columns: 1fr; }
  .btn-search { width: 100%; margin-left: 0; justify-content: center; }
  /* Tour & feature kartlar 2 kolon kalÄ±r */
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .why-us-section .section-header h2 { font-size: 1.6rem; letter-spacing: -0.5px; }
  .feature-card { padding: 20px 10px; }
  .pill-link { font-size: 11px; padding: 8px 16px; }
  /* Footer tek kolon - uzun link isimleri kaymasın */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { grid-column: 1 / -1; }
  /* Tipler */
  .section-header h2 { font-size: 1.4rem; }
  .hero-text h1 { font-size: 1.75rem; }
  .logo-text { font-size: 16px; }
  .loc-tab { padding: 8px 12px; font-size: 12px; }
}

