/* ==========================================================
   EXELIX TRAVEL — Premium Lacivert & Altın Tema
   Glassmorphism, mobil öncelikli, tam hizalı grid sistemi
   ========================================================== */

:root {
    --navy-950: #060a1a;
    --navy-900: #0a1128;
    --navy-800: #0d1b3e;
    --navy-700: #13224f;
    --navy-600: #1a2f66;
    --gold-300: #f0d78c;
    --gold-400: #e3c05f;
    --gold-500: #d4af37;
    --gold-600: #c9a227;
    --white: #ffffff;
    --off-white: #f4f6fb;
    --text-muted: #aeb8d6;
    --text-muted-2: #7c88ad;

    --font-heading: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --container-width: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--navy-900);
    color: var(--off-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Utility: ortalı başlıklar & hizalı bölümler ---------- */
.section {
    padding: 100px 0;
    position: relative;
}
.section-eyebrow {
    display: block;
    text-align: center;
    color: var(--gold-500);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 18px;
}
.section-title span { color: var(--gold-500); }
.section-desc {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    font-size: 16px;
}
.text-center { text-align: center; }

/* ---------- Glassmorphism bileşenleri ---------- */
.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-lg);
}

.glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.glass-btn:hover {
    background: rgba(212, 175, 55, 0.16);
    border-color: var(--gold-500);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}
.glass-btn.primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border-color: transparent;
    color: var(--navy-950);
}
.glass-btn.primary:hover {
    box-shadow: 0 10px 34px rgba(212, 175, 55, 0.45);
    transform: translateY(-3px);
}
.glass-btn.block { width: 100%; }
.glass-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 18px 0;
    transition: var(--transition);
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(6, 10, 26, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: var(--transition);
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}
.logo-text span { color: var(--gold-500); }
.site-header.scrolled .logo-img { height: 32px; }
.site-header.scrolled .logo-text { font-size: 20px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-nav a {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    color: var(--off-white);
    font-size: 14.5px;
    font-weight: 500;
    transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
    background: rgba(212, 175, 55, 0.14);
    color: var(--gold-300);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Dil seçici (bayrak linkleri) */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-pill);
    padding: 5px;
}
.lang-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: none;
    border: none;
    font-size: 18px;
    padding: 6px 8px;
    border-radius: var(--radius-pill);
    line-height: 1;
    transition: var(--transition);
    filter: grayscale(40%);
    opacity: 0.75;
}
.lang-switch a:hover,
.lang-switch a.active {
    background: rgba(212, 175, 55, 0.2);
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}
/* Hamburger'ın solunda gösterilen mobil dil seçici (tek ikon, tıklanınca aşağı açılır);
   masaüstünde header-brand'daki asıl seçici zaten görünür olduğu için bu gizli kalır */
.lang-dropdown { position: relative; display: none; perspective: 600px; }
.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}
.lang-dropdown-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
}
.lang-dropdown.open .lang-dropdown-toggle {
    background: rgba(212, 175, 55, 0.22);
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* Her dil kendi cam baloncuğu içinde; menü açılırken baloncuklar farklı gecikme/açı ile
   "derinlikten" süzülerek gelir (parallax hissi veren kademeli açılış). */
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1110;
    pointer-events: none;
}
.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 50%;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    filter: grayscale(40%);
    opacity: 0;
    transform: translateY(-16px) scale(0.35);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, background 0.25s ease, filter 0.25s ease;
}
.lang-dropdown-menu a:nth-child(1) { transform: translateY(-14px) translateX(10px) rotate(-10deg) scale(0.35); }
.lang-dropdown-menu a:nth-child(2) { transform: translateY(-14px) translateX(-10px) rotate(8deg) scale(0.35); }
.lang-dropdown-menu a:nth-child(3) { transform: translateY(-14px) translateX(10px) rotate(-8deg) scale(0.35); }
.lang-dropdown-menu a:nth-child(4) { transform: translateY(-14px) translateX(-10px) rotate(10deg) scale(0.35); }

.lang-dropdown.open .lang-dropdown-menu a {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0) scale(1);
    pointer-events: auto;
}
.lang-dropdown.open .lang-dropdown-menu a:nth-child(1) { transition-delay: 0.02s; }
.lang-dropdown.open .lang-dropdown-menu a:nth-child(2) { transition-delay: 0.07s; }
.lang-dropdown.open .lang-dropdown-menu a:nth-child(3) { transition-delay: 0.12s; }
.lang-dropdown.open .lang-dropdown-menu a:nth-child(4) { transition-delay: 0.17s; }

.lang-dropdown.open .lang-dropdown-menu a:hover,
.lang-dropdown.open .lang-dropdown-menu a.active {
    background: rgba(212, 175, 55, 0.25);
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0) scale(1.14);
}
#google_translate_element { position: absolute; top: -9999px; left: -9999px; visibility: hidden; }

/* Mobil menü (.hamburger, .mobile-nav, .nav-overlay) artık assets/css/mobile.css içinde */

/* ==========================================================
   HERO
   ========================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.14), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(26, 47, 102, 0.6), transparent 55%),
        linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 90px);
    pointer-events: none;
    z-index: 1;
}

/* ---------- Hero slider (arka plan fotoğraf/görsel geçişi) ---------- */
.hero-slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.4s ease;
    transform: scale(1.06);
}
.hero-slide.no-image {
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.14), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(26, 47, 102, 0.6), transparent 55%),
        linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
}
.hero-slide.active { opacity: 1; animation: heroZoom 9s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 10, 26, 0.6) 0%, rgba(6, 10, 26, 0.55) 45%, var(--navy-900) 100%);
}

.hero-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.hero-arrow:hover { background: rgba(212, 175, 55, 0.2); border-color: var(--gold-500); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

.hero-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; position: relative; z-index: 3; }
.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--gold-500); width: 26px; border-radius: 5px; }

.hero-content { text-align: center; max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-300);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.hero h1 {
    font-size: clamp(34px, 6vw, 64px);
    color: var(--white);
    margin-bottom: 22px;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 40px;
}
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-family: var(--font-heading); font-size: 30px; color: var(--gold-400); }
.hero-stats .stat span { font-size: 13px; color: var(--text-muted-2); text-transform: uppercase; letter-spacing: 1px; }

.stats-band {
    padding: 50px 0;
    background: var(--navy-800);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

/* ---------- Rezervasyon kartı (glass) ---------- */
.booking-card {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: 10px auto 0;
    padding: 34px;
}
.booking-card h3 {
    text-align: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 24px;
}
.booking-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.booking-form .field.full { grid-column: 1 / -1; }
.booking-form .field-row-2 { grid-column: span 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.field { min-width: 0; }
.field label {
    display: block;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-300);
    margin-bottom: 8px;
    text-align: center;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    min-width: 0;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 14.5px;
    text-align: center;
    transition: var(--transition);
}
.field textarea { text-align: left; resize: vertical; min-height: 80px; }
.field input[type="date"],
.field input[type="time"] {
    text-align: left;
    padding-right: 10px;
    -webkit-appearance: none;
    appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}
.field select option { background: var(--navy-800); color: var(--white); }
.booking-form .submit-row { grid-column: 1 / -1; text-align: center; margin-top: 6px; }
.form-msg { grid-column: 1 / -1; text-align: center; font-size: 14px; padding: 10px; border-radius: var(--radius-sm); display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: rgba(46, 204, 113, 0.15); color: #6be3a3; border: 1px solid rgba(46, 204, 113, 0.4); }
.form-msg.error { background: rgba(231, 76, 60, 0.15); color: #ff9a8c; border: 1px solid rgba(231, 76, 60, 0.4); }
.whatsapp-followup { display: none; grid-column: 1 / -1; text-align: center; margin-top: 14px; }
.whatsapp-followup.show { display: block; }

/* ==========================================================
   HİZMETLER / NEDEN BİZ GRID
   ========================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
    padding: 38px 28px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, 0.5); box-shadow: var(--shadow-gold); }
.feature-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.06));
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-400);
    font-size: 26px;
}
.feature-card h4 { color: var(--white); font-size: 19px; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; }

.section.alt-bg {
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

/* ---------- Sosyal Medya / Google Yorumları Kartları ---------- */
.social-review-card { display: block; text-decoration: none; }
.social-review-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
}
.social-review-icon.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.social-review-icon.facebook { background: #1877f2; }
.social-review-icon.google { background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853); }

/* ---------- Fiyat Listesi ---------- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}
.price-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-md);
    padding: 26px 20px;
    text-align: center;
    transition: var(--transition);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.5); box-shadow: var(--shadow-gold); }
.price-card-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.06));
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-400);
    font-size: 16px;
}
.price-card-region {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: var(--off-white);
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.4;
    margin-bottom: 14px;
}
.price-card-value {
    font-family: var(--font-heading);
    color: var(--gold-400);
    font-size: 26px;
    font-weight: 700;
}
.price-note {
    text-align: center;
    color: var(--text-muted-2);
    font-size: 13px;
    margin-top: 30px;
}

/* ==========================================================
   FİLO / ARAÇLAR
   ========================================================== */
.fleet-card { overflow: hidden; text-align: center; transition: var(--transition); }
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: rgba(212,175,55,0.5); }
.fleet-image {
    height: 210px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    font-size: 46px;
    position: relative;
    overflow: hidden;
}
.fleet-image img { width: 100%; height: 100%; object-fit: cover; }
.fleet-category {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    background: rgba(6, 10, 26, 0.75);
    backdrop-filter: blur(8px);
    color: var(--gold-400);
    font-size: 11.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 175, 55, 0.4);
}
.fleet-body { padding: 26px 24px 30px; }
.fleet-body h4 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.fleet-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.fleet-specs { display: flex; justify-content: center; gap: 24px; margin-bottom: 18px; font-size: 13.5px; color: var(--gold-300); }
.fleet-specs span { display: flex; align-items: center; gap: 6px; }
.fleet-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 22px; }
.fleet-features li {
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

/* ==========================================================
   YORUMLAR
   ========================================================== */
.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.testimonial-card { padding: 32px 28px; text-align: center; }
.testimonial-stars { color: var(--gold-500); font-size: 15px; margin-bottom: 16px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; margin-bottom: 20px; font-size: 15px; }
.testimonial-name { color: var(--white); font-weight: 600; font-size: 14.5px; }

/* ==========================================================
   CTA / WHATSAPP BANNER
   ========================================================== */
.cta-banner {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(255,255,255,0.03));
}
.cta-banner h3 { color: var(--white); font-size: clamp(22px, 3vw, 32px); margin-bottom: 14px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 30px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 50px;
}
.footer-col h5 { color: var(--gold-500); font-size: 15px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p, .footer-col li { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold-400); }
.footer-logo { height: 110px; width: auto; margin: 0 auto; display: block; }
.footer-brand p { max-width: 300px; margin: 16px auto 0; }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold-400);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); transform: translateY(-3px); }
.footer-bottom {
    text-align: center;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted-2);
    font-size: 13px;
}
.footer-bottom a { color: var(--gold-400); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 900;
    animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- E-posta float ---------- */
.email-float {
    position: fixed;
    bottom: 100px;
    right: 26px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
    z-index: 900;
    animation: pulse-gold 2.4s infinite;
}
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55); }
    70% { box-shadow: 0 0 0 18px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ---------- İç sayfa hero (breadcrumb) ---------- */
.page-hero {
    padding: 170px 0 90px;
    text-align: center;
    background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
    position: relative;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 5vw, 48px); margin-bottom: 14px; }
.page-hero p { color: var(--gold-400); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }

/* ---------- İletişim sayfası ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card { padding: 36px; }
.contact-info-item { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; text-align: left; }
.contact-info-item .icon-box {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: rgba(212,175,55,0.14); border: 1px solid rgba(212,175,55,0.35);
    display: flex; align-items: center; justify-content: center; color: var(--gold-400); font-size: 18px; flex-shrink: 0;
}
.contact-info-item h5 { color: var(--white); font-size: 14.5px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 14px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(212,175,55,0.25); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Hakkımızda ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-visual {
    height: 380px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-500); font-size: 80px;
    border: 1px solid rgba(212,175,55,0.25);
    overflow: hidden;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { text-align: left; }
.about-text .section-eyebrow { text-align: left; }
.about-text p { color: var(--text-muted); margin-bottom: 18px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.about-points li { display: flex; align-items: center; gap: 10px; color: var(--off-white); font-size: 14.5px; }
.about-points li i { color: var(--gold-500); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-visual { height: 280px; }
    .about-text, .about-text h2, .about-text p, .section-eyebrow { text-align: center; }
    .about-points { justify-content: center; }
    .about-points li { justify-content: center; }
}

@media (max-width: 860px) {
    .main-nav { display: none; }
    .lang-switch { display: none; }
    .hamburger { display: flex; }
    .hero-arrow { display: none; }

    .grid-3, .grid-4, .testimonial-track { grid-template-columns: 1fr; }
    .booking-form { grid-template-columns: 1fr; }
    .booking-form .field-row-2 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero-stats { gap: 30px; }
    .section { padding: 70px 0; }
    .booking-card { padding: 24px; }
    .price-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
    .booking-form .field-row-2 { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero { padding: 130px 0 70px; }
    .price-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .price-card { padding: 18px 10px; }
    .price-card-icon { width: 38px; height: 38px; margin-bottom: 10px; font-size: 14px; }
    .price-card-region { font-size: 12.5px; min-height: 34px; margin-bottom: 10px; }
    .price-card-value { font-size: 21px; }
    .whatsapp-float { width: 54px; height: 54px; font-size: 24px; bottom: 18px; right: 18px; }
    .container { padding: 0 18px; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .glass-btn { width: 100%; }
    .logo-img { height: 30px; }
    .logo-text { font-size: 18px; }
    .site-header.scrolled .logo-img { height: 26px; }
    .site-header.scrolled .logo-text { font-size: 16px; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
