/* ============================================
   KEMER WATERSPORTS - Ana CSS
   Tema: Güneş, Deniz & Hız — Lacivert + Turuncu + Altın
   ============================================ */

:root {
    --ocean-deep:    #1A3A6B;
    --ocean-mid:     #1565C0;
    --ocean-light:   #1976D2;
    --ocean-bright:  #29B6F6;
    --wave-teal:     #4FC3F7;
    --wave-cyan:     #81D4FA;
    --gold:          #FFA726;
    --gold-light:    #FFB74D;
    --sand:          #FFF3E0;
    --coral:         #FF7043;
    --white:         #ffffff;
    --off-white:     #EEF4FF;
    --text-dark:     #1A3A6B;
    --text-mid:      #2C5F9C;
    --text-light:    #5B8FC5;
    --bg-body:       #EEF4FF;
    --bg-section2:   #E3EDFF;
    --border:        rgba(21,101,192,0.15);
    --shadow-sm:     0 2px 12px rgba(26,58,107,0.08);
    --shadow-md:     0 8px 32px rgba(26,58,107,0.15);
    --shadow-lg:     0 20px 60px rgba(26,58,107,0.22);
    --radius:        16px;
    --radius-sm:     8px;
    --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
    /* Motorsport Font Sistemi — TR/EN/RU/DE tam desteği
       Russo One: kalın, atletik, motorsport hissi (banner/başlık)
       Oswald:    condensed, hareketli (menü/alt başlık)
       Inter:     yüksek okunabilirlik (gövde metni) */
    --font-display:  'Russo One', 'Oswald', 'Arial Narrow', sans-serif;
    --font-nav:      'Oswald', 'Arial Narrow', sans-serif;
    --font-body:     'Inter', 'Segoe UI', 'Roboto', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--coral));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,158,11,0.55);
    filter: brightness(1.08);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--coral));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--ocean-deep);
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.1;
}
.section-title.left { text-align: left; }

.section-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== NAVBAR =====
   AÇIK ZEMİN: Logomuz koyu renkli olduğu için navbar arka planı her zaman
   açık (yarı saydam beyaz). Hem sayfa en üstündeyken hem aşağı kaydırıldığında. */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    overflow: hidden;
}

.navbar {
    padding: 14px 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(21,101,192,0.10);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    padding: 10px 0;
    box-shadow: 0 4px 18px rgba(21,101,192,0.10);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}
.logo-img {
    height: var(--logo-h, 52px);
    width: auto;
    max-width: 220px;
    display: block;
    transition: height 0.3s ease;
    /* Logo koyu renkli — açık navbar üstünde gölgeye gerek yok */
    filter: drop-shadow(0 1px 2px rgba(21,101,192,0.18));
}
.navbar.scrolled .logo-img { height: var(--logo-h-scrolled, 42px); }
/* Footer logosu — koyu zemin üstünde okunabilirlik için beyaza çevrilir + büyütülür */
.footer-logo img {
    height: var(--logo-h-footer, 90px);
    width: auto;
    max-width: 280px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* ── Logo metin (geçici — PNG logo gelene kadar) ── */
.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-shadow: 0 2px 14px rgba(0,0,0,0.35), 0 0 28px rgba(251,191,36,0.2);
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: font-size 0.3s ease, color 0.3s ease;
}
.navbar.scrolled .logo-text {
    font-size: 1.5rem;
}
.logo-text-footer {
    font-size: 1.6rem;
    color: var(--wave-teal);
    text-shadow: 0 0 24px rgba(0,207,232,0.25);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap; /* Hiçbir zaman alt satıra geçmesin */
    flex-shrink: 0;
}
.nav-link {
    color: var(--ocean-deep);
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 7px 11px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap; /* Kelime kırılmasın */
    flex-shrink: 0;
}
.nav-link:hover { color: var(--coral); background: rgba(21,101,192,0.08); }

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap; /* Rusça "Бронирование" kırılmasın */
    flex-shrink: 0;
}
.nav-whatsapp:hover { background: #1ebe5c; }
.nav-reservation-btn { border: none; cursor: pointer; font-family: inherit; line-height: 1; }
.nav-viber    { display:flex;align-items:center;gap:6px;background:#7360F2;color:white;padding:8px 14px;border-radius:50px;font-size:0.8rem;font-weight:700;white-space:nowrap;flex-shrink:0; }
.nav-viber:hover    { background: #5f4dcc; }
.nav-telegram { display:flex;align-items:center;gap:6px;background:#2CA5E0;color:white;padding:8px 14px;border-radius:50px;font-size:0.8rem;font-weight:700;white-space:nowrap;flex-shrink:0; }
.nav-telegram:hover { background: #229ed9; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ocean-deep);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ocean-deep);
    /* Navbar artık opak/açık — hero'yu navbar yüksekliği kadar aşağıdan başlat */
    margin-top: 0;
}

/* Video arka planı */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(160deg, #1A3A6B 0%, #1565C0 40%, #1976D2 70%, #29B6F6 100%);
}
.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;   /* 16:9 oran */
    min-height: 100vh;
    min-width: 177.78vh;
    border: none;
    pointer-events: none;
}
/* Koyu overlay — video üzerinde yazı okunsun */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 50, 78, 0.52);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(245,158,11,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 25%, rgba(0,207,232,0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 85%, rgba(0,180,216,0.25) 0%, transparent 50%),
        linear-gradient(160deg, #1A3A6B 0%, #1565C0 40%, #1976D2 70%, #29B6F6 100%);
    animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
    0%   { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(12deg) brightness(1.06); }
}

/* Güneş parlaması — hero arka planı üzerinde yüzen animasyonlu ışık */
.hero-sun {
    position: absolute;
    top: -80px;
    right: 8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, rgba(249,115,22,0.06) 45%, transparent 70%);
    animation: sunPulse 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7; /* sadeleştirme — daha az dikkat dağıtıcı */
}
@keyframes sunPulse {
    0%,100% { transform: scale(1); opacity: 0.9; }
    50%      { transform: scale(1.12); opacity: 1; }
}

/* Dalgalanan yüzen parçacıklar */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: floatDot 10s ease-in-out infinite;
}
.hero-particles::before {
    width: 200px; height: 200px;
    bottom: 20%; left: 5%;
    animation-delay: -3s;
}
.hero-particles::after {
    width: 120px; height: 120px;
    top: 30%; left: 20%;
    animation-delay: -6s;
}
@keyframes floatDot {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-20px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Eski tek-kolon hero-content (artık kullanılmıyor, uyumluluk için bırakıldı) */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 20px 80px;
    animation: fadeInUp 1s ease forwards;
}

/* ===== YENİ ÖZGÜN HERO — Merkezi başlık + altta dairesel aktivite ikonları (Azzem'den FARKLI) ===== */
.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 130px 24px 80px;
    text-align: center;
}

/* MERKEZİ İÇERİK — başlık, alt yazı, CTA */
.hero-left {
    width: 100%;
    max-width: 880px;
    text-align: center;
}
.hero-left .hero-title    { animation: fadeInUp 1s ease 0.15s both; }
.hero-left .hero-subtitle { animation: fadeInUp 1s ease 0.25s both; }
.hero-left .hero-cta      { justify-content: center; animation: fadeInUp 1s ease 0.35s both; }
.hero-left .hero-stats    { display: inline-flex; animation: fadeInUp 1s ease 0.45s both; }

/* ALT ŞERİT — yatay kaydırmalı dairesel aktivite kartları */
.hero-showcase {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 1s ease 0.55s both;
}

.hero-act-cards {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-act-card {
    width: 130px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.35s ease;
}
.hero-act-card:hover {
    transform: translateY(-6px) scale(1.05);
}
.hero-act-card:hover img {
    border-color: var(--gold);
    box-shadow: 0 18px 44px rgba(0,0,0,0.55), inset 0 0 0 4px rgba(255,255,255,0.28);
}
.hero-act-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: 0 10px 28px rgba(0,0,0,0.4), inset 0 0 0 4px rgba(255,255,255,0.18);
    background: linear-gradient(145deg, var(--ocean-light), var(--wave-teal));
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-act-ph {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--ocean-light), var(--wave-teal));
    border: 3px solid rgba(255,255,255,0.5);
}

.hero-act-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 1px;
    line-height: 1.15;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 1px 2px rgba(0,0,0,0.9);
    text-transform: uppercase;
    font-weight: 700;
    max-width: 130px;
    pointer-events: none;
}

.hero-showcase-cta {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold), var(--coral));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 2px;
    padding: 18px 44px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(245,158,11,0.55), 0 0 0 4px rgba(245,158,11,0.10);
    transition: var(--transition);
    max-width: 400px;
    white-space: nowrap;
    margin-top: 8px; /* showcase ile nefes payı */
}
.hero-showcase-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(245,158,11,0.65);
    filter: brightness(1.08);
    color: var(--white);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.18);
    border: 1px solid rgba(251,191,36,0.5);
    color: var(--gold-light);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.1s both;
    box-shadow: 0 0 24px rgba(245,158,11,0.18);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 7rem);
    color: var(--white);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.4s both;
}

/* CTA + İstatistik (tek satır - masaüstü) */
.hero-cta-with-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}
.hero-cta-with-stats .hero-main-cta {
    flex: 0 0 auto;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: fadeInUp 1s ease 0.5s both;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px 40px;
    display: inline-flex;
}

/* CTA satırı içinde stats — daha kompakt + ikincil ağırlık (CTA odakta kalsın) */
.hero-stats.hero-stats-inline {
    gap: 14px;
    padding: 8px 16px;
    border-radius: 12px;
    margin: 0;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
}
.hero-stats.hero-stats-inline .stat-num {
    font-size: 1rem;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.92); /* gold yerine beyaza yakın → ikincil */
}
.hero-stats.hero-stats-inline .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.55);
}
.hero-stats.hero-stats-inline .stat-divider {
    height: 22px;
}

.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* "Aşağı Kaydır" göstergesi KALDIRILDI — banner'da "Keşfet" butonuyla çakışıyordu
   ve modern UX'te gereksiz (kullanıcı zaten scroll yapacağını biliyor). HTML'den
   silindi; CSS burada güvenlik için display:none. */
.hero-scroll,
.scroll-arrow {
    display: none !important;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2; /* içeriğin (hero-inner z-index:3) ALTINDA — dalga grafiği buton üstünü KAPATMASIN */
    pointer-events: none;
}
.hero-waves svg { width: 100%; display: block; }
.hero-waves path { animation: waveSway 8s ease-in-out infinite; transform-origin: center; }
@keyframes waveSway {
    0%,100% { d: path("M0,60 C360,120 720,0 1080,60 C1260,90 1380,45 1440,60 L1440,120 L0,120 Z"); }
    50%      { d: path("M0,70 C300,20 600,110 960,50 C1140,20 1320,80 1440,55 L1440,120 L0,120 Z"); }
}

/* ===== ACTIVITIES ===== */
.activities-section {
    background: var(--bg-body);
    position: relative;
}
.activities-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), var(--wave-teal), var(--gold));
    background-size: 200% 100%;
    animation: shimmerBorder 4s linear infinite;
}
@keyframes shimmerBorder {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Kart tıklanabilir — JS ile yönlendirme, overlay yok (flicker önlenir) */
.activity-card { position: relative; cursor: pointer; }

/* Detay butonu */
.card-detail-btn {
    background: rgba(21,101,192,0.08);
    color: var(--ocean-light);
    font-size: 0.78rem;
    padding: 9px 16px;
    border: 1px solid rgba(21,101,192,0.18);
}
.card-detail-btn:hover {
    background: rgba(21,101,192,0.14);
    box-shadow: none;
    transform: none;
    filter: none;
}

/* Kart — eşit yükseklik için flex column */
.activity-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.activity-card.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Hover: kart kutusu sabit kalır — translateY titremeye neden olduğu için kaldırıldı.
   Efekt: derin gölge + kenarlık rengi + görsel zoom (card-image img üzerinden). */
.activity-card:hover {
    box-shadow: 0 16px 48px rgba(21,101,192,0.25);
    border-color: rgba(21,101,192,0.38);
}

/* Görsel alanı */
.card-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--ocean-light) 0%, var(--wave-teal) 100%);
    flex-shrink: 0;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.activity-card:hover .card-image img { transform: scale(1.1); }

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    background: linear-gradient(145deg, var(--ocean-light) 0%, var(--wave-teal) 100%);
}

/* Fiyat etiketi */
.card-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--ocean-deep);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 5px 13px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Kart içeriği — flex-grow ile buton alta yapışır */
.card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 1.5px;
    color: var(--ocean-deep);
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-desc {
    color: var(--text-mid);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 14px;
    flex-grow: 1;
}

/* Meta bilgiler (süre, yaş, kişi) */
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--off-white);
    color: var(--text-mid);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.meta-item svg { opacity: 0.65; flex-shrink: 0; }

/* Buton alanı */
.card-actions { margin-top: auto; }

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    background: linear-gradient(135deg, var(--ocean-light), var(--wave-teal));
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: 'Oswald','Barlow Condensed','Arial Narrow',sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.15;
    transition: var(--transition);
}
.card-btn:hover {
    filter: brightness(1.12);
    /* translateY kaldırıldı: stretched-link ile flicker'a neden oluyordu */
    box-shadow: 0 5px 18px rgba(21,101,192,0.35);
}
.card-btn-wa {
    background: #25D366;
    color: white;
}
.card-btn-wa:hover {
    background: #1ebe59;
    box-shadow: 0 5px 18px rgba(37,211,102,0.35);
}

/* ===== ABOUT ===== */
.about-section {
    background: linear-gradient(160deg, #1A3A6B 0%, #1A5BAF 50%, #1976D2 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    padding-bottom: 70%;
    background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-side { position: relative; }
.about-img-frame {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0,180,216,0.25), rgba(245,158,11,0.2));
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gold);
    color: var(--ocean-deep);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}
.about-badge-float {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.about-badge-float span {
    color: var(--ocean-deep);
    display: inline-flex;
    align-items: center;
}

.about-section .section-tag { margin-bottom: 14px; }
.about-section .section-title { color: var(--white); }
.about-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.feature p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin: 0; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--bg-section2); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,58,107,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
}
.gallery-overlay svg { width: 34px; height: 34px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section { background: var(--bg-section2); }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.insta-embed-item { border-radius: var(--radius-sm); overflow: hidden; }
.insta-embed-item iframe { max-width: 100%; }

.insta-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(225,48,108,0.08), rgba(193,53,132,0.08));
    border: 1px solid rgba(225,48,108,0.2);
    border-radius: var(--radius);
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(225,48,108,0.35);
}
.insta-follow-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(225,48,108,0.45); filter: brightness(1.05); }

.insta-handle {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-body); }

/* İki sütunlu düzen: sol iletişim, sağ harita */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-col { display: flex; flex-direction: column; gap: 28px; }

/* İletişim kartları (eski düzen — düzeltilmiş adres) */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: inherit;
}
.contact-card:hover { border-color: var(--ocean-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card-icon  {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(21,101,192,0.10);
    color: var(--ocean-light);
}
.contact-card-icon svg { width: 27px; height: 27px; }
.contact-card strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.contact-card span   { color: var(--ocean-mid); font-weight: 700; font-size: 0.9rem; word-break: break-word; }

/* (contact-card-full kaldırıldı, adres normal kart olarak 2x2 grid içinde) */

.whatsapp-card { border-color: rgba(37,211,102,0.3); }
.whatsapp-card:hover { border-color: #25D366; box-shadow: 0 8px 32px rgba(37,211,102,0.2); }
.whatsapp-card .contact-card-icon { color: #25D366; background: rgba(37,211,102,0.12); }
.whatsapp-card span { color: #25D366; }
.viber-card { border-color: rgba(115,96,242,0.3); }
.viber-card:hover { border-color: #7360F2; box-shadow: 0 8px 32px rgba(115,96,242,0.2); }
.viber-card .contact-card-icon { color: #7360F2; background: rgba(115,96,242,0.12); }
.viber-card span { color: #7360F2; }
.telegram-card { border-color: rgba(44,165,224,0.3); }
.telegram-card:hover { border-color: #2CA5E0; box-shadow: 0 8px 32px rgba(44,165,224,0.2); }
.telegram-card .contact-card-icon { color: #2CA5E0; background: rgba(44,165,224,0.12); }
.telegram-card span { color: #2CA5E0; }

/* Sosyal medya satırı */
.social-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.social-pill:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.social-pill.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-pill.facebook  { background: #1877F2; }
.social-pill.tiktok    { background: #010101; }
.social-pill.viber    { background: #7360F2; }
.social-pill.telegram { background: #2CA5E0; }

/* Harita sütunu */
.contact-map-col { position: sticky; top: 100px; }

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
    background: var(--off-white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* Harita yoksa tüm genişlik */
.contact-full { display: flex; flex-direction: column; gap: 28px; }
.contact-full .contact-cards { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.contact-full .social-links-row { justify-content: center; }

/* Alert (admin formları için) */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Footer sosyal ikonlar */
.footer-social {
    display: flex;
    gap: 10px;
    margin: 16px 0;
}
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: white;
    transition: var(--transition);
}
.footer-social-icon:hover { transform: translateY(-3px); filter: brightness(1.15); }
.footer-social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social-icon.facebook  { background: #1877F2; }
.footer-social-icon.tiktok    { background: #010101; border: 1px solid rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
.site-footer { background: var(--ocean-deep); color: rgba(255,255,255,0.7); }

.footer-top { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 1.3rem;
}
.footer-logo img { height: var(--logo-h-footer, 52px); width: auto; }
.footer-logo strong {
    font-family: var(--font-display);
    color: white;
    letter-spacing: 2px;
    font-size: 1rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.65);
}
.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}
.footer-contact-line svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    width: 100%;
}
.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: pulseWA 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes pulseWA {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid  { grid-template-columns: 1fr; gap: 40px; }
    .about-image-side { max-width: 400px; margin: 0 auto; }

    /* Tablet: showcase biraz daralt */
    .hero-inner  { gap: 28px; padding: 120px 20px 70px; }
    .hero-act-card { width: 110px; }
    .hero-act-card img, .hero-act-ph { width: 110px; height: 110px; }
    .hero-act-label { font-size: 0.75rem; max-width: 110px; }
}

@media (max-width: 992px) {
    /* Hamburger eşiği 992px'e YÜKSELTİLDİ: 769-992px (tablet) arası 5 nav linki +
       Rezervasyon butonu + dil seçici, logo ile çakışıp taşıyordu
       (.site-header overflow:hidden bunları kırpıyordu). Artık tablette de
       temiz off-canvas menü açılır — çakışma/taşma biter. */

    /* Kaydırma göstergesi tablet/mobilde gizli — banner butonlarıyla çakışmasın */
    .hero-scroll { display: none; }

    /* ════════════════════════════════════════════════════════════════
       KRİTİK — MOBİL/TABLET MENÜ CONTAINING-BLOCK DÜZELTMESİ
       backdrop-filter / filter / transform içeren atalar, position:fixed
       çocukları VIEWPORT yerine kendilerine göre konumlandırır. Bu yüzden
       .nav-menu navbar'ın içine hapsoluyordu. Mobilde bunları kaldırıyoruz.
       Ayrıca .site-header overflow:hidden menüyü kırpıyordu → visible.
       ════════════════════════════════════════════════════════════════ */
    .site-header {
        overflow: visible !important;
    }
    .navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255,255,255,0.98) !important;
        filter: none !important;
        transform: none !important;
    }
    .nav-container {
        filter: none !important;
        transform: none !important;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1003; /* header (1000) ve menü (1002) üstünde — kapatma için tıklanabilir kalsın */
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        height: 100dvh; /* dinamik viewport — mobil tarayıcı çubuğu hesaba katılır */
        background: #ffffff;
        flex-direction: column;
        padding: 80px 24px 40px;
        gap: 4px;
        transition: right 0.3s ease;
        z-index: 1002; /* header'ın (1000) üstünde olmalı — yoksa arkada kalır */
        align-items: stretch;
        border-left: 1px solid rgba(21,101,192,0.08);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        list-style: none;
    }
    .nav-menu.open { right: 0; box-shadow: -10px 0 40px rgba(21,101,192,0.18); }

    /* Mobil menüde her <li> tam genişlik blok — yoksa link'ler boyutsuz kalıp görünmez */
    .nav-menu > li {
        width: 100%;
        display: block;
        list-style: none;
        border-bottom: 1px solid rgba(21,101,192,0.06);
    }
    .nav-menu > li:last-child { border-bottom: none; }

    /* Link/buton görünür ve tıklanabilir alan — display:block kritik (default <a> inline) */
    .nav-link {
        display: block !important;
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--ocean-deep) !important;
        background: transparent;
        border-radius: 10px;
        text-decoration: none;
    }
    .nav-link:hover,
    .nav-link:active,
    .nav-link.active {
        background: rgba(21,101,192,0.08);
        color: var(--coral) !important;
    }

    .nav-whatsapp,
    .nav-viber,
    .nav-telegram,
    .nav-reservation-btn {
        display: flex !important;
        width: 100%;
        justify-content: center;
        padding: 13px 16px;
        font-size: 0.95rem;
        margin-top: 4px;
    }

    /* Backdrop (karartma) ARTIK body üzerinde — aşağıdaki body.nav-open::before
       kuralında tanımlı. Menünün içine koymak, beyaz zeminin üstüne boyanıp
       linkleri "gri" gösteriyordu. Burada eski kural kaldırıldı. */
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { letter-spacing: 1px; }

    /* Hero mobil — sade tek kolon hiyerarşi: başlık → alt başlık → WhatsApp+Stats → Showcase → Keşfet
       "Aşağı Kaydır" göstergesi kaldırıldı (Keşfet butonuyla çakışıyordu). */
    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 90px 14px 50px; /* scroll arrow gittiği için alt padding makul */
        gap: 22px;
    }
    .hero-left {
        width: 100%;
        text-align: center;
        order: 1;
    }
    .hero-title { font-size: clamp(2rem, 9vw, 3.4rem); letter-spacing: 2px; margin-bottom: 14px; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 22px; padding: 0 8px; }

    /* CTA mobilde: WhatsApp butonu + stats DİKEY (alt alta) — yan yana sıkıştırma yok, nefes alıyor */
    .hero-cta.hero-cta-with-stats {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
        margin-bottom: 0;
        width: 100%;
    }
    .hero-cta.hero-cta-with-stats .hero-main-cta {
        flex: 0 0 auto;
        padding: 12px 22px;
        font-size: 0.88rem;
        letter-spacing: 0.8px;
        white-space: nowrap;
        text-align: center;
        line-height: 1.15;
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    /* Stats mobilde — ikincil ağırlık, kompakt yan yana */
    .hero-stats.hero-stats-inline {
        display: inline-flex !important;
        flex: 0 0 auto;
        justify-content: center;
        gap: 10px;
        padding: 6px 12px;
        border-radius: 10px;
        min-width: 0;
        background: rgba(255,255,255,0.04);
    }
    .hero-stats.hero-stats-inline .stat { flex: 0 0 auto; text-align: center; min-width: 0; padding: 0 2px; }
    .hero-stats.hero-stats-inline .stat-num { font-size: 0.9rem; letter-spacing: 0.3px; line-height: 1.1; }
    .hero-stats.hero-stats-inline .stat-label { font-size: 0.56rem; letter-spacing: 0.3px; line-height: 1.1; }
    .hero-stats.hero-stats-inline .stat-divider {
        height: 20px; width: 1px; background: rgba(255,255,255,0.18); flex-shrink: 0;
    }

    .hero-showcase {
        width: 100%;
        order: 2;
        gap: 18px;
    }
    .hero-act-cards { gap: 10px; justify-content: center; }
    .hero-act-card { width: 80px; gap: 5px; }
    .hero-act-card img, .hero-act-ph { width: 80px; height: 80px; border-width: 2px; }
    .hero-act-label { font-size: 0.62rem; letter-spacing: 0.5px; max-width: 80px; }
    .hero-showcase-cta {
        font-size: 1rem;
        letter-spacing: 1.5px;
        padding: 14px 30px;
        max-width: 320px;
        margin-top: 6px;
        box-shadow: 0 6px 24px rgba(245,158,11,0.55);
    }

    /* Hero-content (eski) için uyumluluk */
    .hero-content {
        text-align: center;
        padding: 100px 20px 60px;
        width: 100%;
        max-width: 100%;
    }
    .stat-num   { font-size: 1.4rem; }

    .activities-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-map-col { position: static; }
    .map-container { height: 300px; }
    .about-features { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .activities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    /* hero-cta-with-stats zaten 768px column oldu — burada yalnızca mini ayar */
    .hero-stats.hero-stats-inline { gap: 8px; padding: 6px 10px; }
    .hero-stats.hero-stats-inline .stat-num { font-size: 0.85rem; }
    .hero-stats.hero-stats-inline .stat-label { font-size: 0.52rem; }
    .stat-divider { height: 18px; }
    .hero-showcase-cta { font-size: 0.92rem; padding: 13px 26px; }
    .footer-grid  { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 24px; }
    .insta-grid { grid-template-columns: 1fr; }

    /* ─── Aktivite kartı butonları — 2 kolonlu dar mobil görünümde sığması için ───
       Oswald (condensed) font + küçük padding + nowrap + harf-aralığı sıkılaştırma. */
    .card-body { padding: 14px 12px 12px; }
    .card-title { font-size: 1.05rem; letter-spacing: 0.5px; margin-bottom: 6px; }
    .card-desc { font-size: 0.78rem; margin-bottom: 10px; }
    .card-meta { gap: 4px; margin-bottom: 10px; }
    .meta-item { font-size: 0.66rem; padding: 3px 7px; gap: 3px; }

    .card-btn {
        font-family: 'Oswald','Barlow Condensed','Arial Narrow',sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        padding: 8px 6px;
        letter-spacing: 0.3px;
        gap: 4px;
        white-space: nowrap;
        line-height: 1.1;
        border-radius: 8px;
    }
    .card-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
    .card-detail-btn {
        font-size: 0.74rem;
        padding: 7px 6px;
    }
    .card-actions { gap: 6px !important; }
    .card-price { font-size: 0.74rem; padding: 4px 9px; top: 10px; right: 10px; }
    .card-image { height: 130px; }
}

/* Dar mobiller (örn. iPhone SE) — daha da sıkı ölçek */
@media (max-width: 380px) {
    .card-btn { font-size: 0.72rem; padding: 7px 4px; letter-spacing: 0.2px; }
    .card-btn svg { width: 11px; height: 11px; }
    .card-detail-btn { font-size: 0.7rem; }
    .card-title { font-size: 0.95rem; }
}

/* ===== NO-ACTIVITIES ===== */
.no-activities {
    text-align: center;
    padding: 60px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== INSTAGRAM FEED ===== */

/* Widget wrapper (Behold / LightWidget) */
.insta-row-wrap { margin-bottom: 40px; }

/* Bireysel embed — yatay kaydırmalı tek satır */
.insta-row-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--ocean-light) transparent;
}
.insta-row-scroll::-webkit-scrollbar { height: 4px; }
.insta-row-scroll::-webkit-scrollbar-thumb { background: var(--ocean-light); border-radius: 2px; }
.insta-row-item {
    flex: 0 0 280px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Kurulum rehberi kutusu */
.insta-setup-box {
    max-width: 560px;
    margin: 0 auto 40px;
    padding: 40px 36px;
    background: var(--white);
    border: 1.5px solid rgba(188,24,136,0.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.insta-setup-icon { margin-bottom: 16px; }
.insta-setup-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--ocean-deep);
    margin-bottom: 10px;
}
.insta-setup-desc { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 24px; }

.insta-setup-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-bottom: 28px;
}
.insta-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.87rem;
    color: var(--text-mid);
}
.insta-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f09433, #bc1888);
    color: white;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}
.insta-setup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(188,24,136,0.3);
}
.insta-setup-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(188,24,136,0.4); }

/* ===== AKTİVİTE DETAY SAYFASI ===== */
.act-detail-hero {
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean-light) 100%);
    overflow: hidden;
}
.act-detail-hero-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.45;
}
.act-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,58,107,0.95) 0%, rgba(26,58,107,0.3) 100%);
}
.act-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0 50px;
    width: 100%;
}

.act-detail-body { padding: 60px 0; }

.act-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.act-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.act-detail-text {
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 1.03rem;
    margin-bottom: 36px;
}

/* Aktivite açıklama paragrafları (2 paragraf, detail_text içinde) */
.act-description {
    margin-bottom: 28px;
}
.act-description p {
    color: var(--text-mid);
    line-height: 1.85;
    font-size: 1.03rem;
    margin-bottom: 14px;
}
.act-description p:last-child { margin-bottom: 0; }

/* ===== Fiyat Gizleme — prices-hidden body sınıfı ===== */
.prices-hidden .price-table          { display: none !important; }
.prices-hidden .act-booking-price    { display: none !important; }
.prices-hidden .card-price           { display: none !important; }
.prices-hidden .act-detail-hero .section-tag[data-price] { display: none !important; }

/* YouTube video embed */
.act-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-md);
}
.act-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Fotoğraf galerisi */
.act-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 36px;
}
.act-photo-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.act-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.act-photo-item:hover img { transform: scale(1.08); }
.act-photo-item .gallery-overlay { position: absolute; inset: 0; }

/* Yan panel (rezervasyon) */
.act-sidebar {
    position: sticky;
    top: 100px;
}
.act-booking-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 28px 24px;
}
.act-booking-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--ocean-deep);
    letter-spacing: 2px;
    margin-bottom: 6px;
    line-height: 1;
}
.act-booking-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 400;
}
.act-booking-card .card-meta { margin: 16px 0; }
.act-booking-divider { height: 1px; background: var(--border); margin: 20px 0; }
.act-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 0.2s;
}
.act-back-link:hover { color: var(--ocean-light); }

@media (max-width: 900px) {
    .act-detail-grid { grid-template-columns: 1fr; }
    .act-sidebar { position: static; }
}

/* ===== Fiyat Tablosu (aktivite detay sayfası) ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 0.93rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.price-table th {
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
    color: white;
    padding: 11px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-weight: 500;
}
.price-table td:last-child {
    font-weight: 800;
    color: var(--ocean-light);
    font-size: 1rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--bg-section2); }
.price-table tr:hover td { background: rgba(21,101,192,0.07); }

/* ===== Scroll Reveal ===== */
[data-aos] { opacity: 0; transform: translateY(30px); }

/* ============================================
   POSTER-STİLİ MOBİL REVİZYON
   Referans görsele göre mobil görünüm: sarı konturlu
   kalın başlıklar, görsel-ağırlıklı aktivite kartları,
   tam genişlikte büyük CTA butonları.
   (Masaüstü görünümü bu bloktan etkilenmez.)
   ============================================ */

/* Görsel üstü aktivite başlığı — yalnızca mobilde görünür */
.card-img-caption { display: none; }

@media (max-width: 768px) {
    /* — Hero başlığı: masaüstündeki gibi beyaz — */
    .hero-title {
        color: var(--white);
        font-size: clamp(2.6rem, 12.5vw, 4.6rem);
        letter-spacing: 2px;
        -webkit-text-stroke: 0;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
    }

    /* — Hero CTA: dikey, tam genişlik, büyük buton — */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* — Aktivite kartları: görsel-ağırlıklı poster düzeni — */
    .card-image { height: 250px; }

    /* Görsel üzerine bindirilen sarı konturlu aktivite adı */
    .card-img-caption {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 48px 14px 14px;
        font-family: var(--font-display);
        font-size: 1.7rem;
        letter-spacing: 1.5px;
        line-height: 1.05;
        text-align: center;
        color: var(--gold-light);
        -webkit-text-stroke: 1.2px rgba(7, 59, 84, 0.9);
        paint-order: stroke fill;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        background: linear-gradient(to top,
            rgba(7, 59, 84, 0.92) 0%,
            rgba(7, 59, 84, 0.45) 55%,
            transparent 100%);
        pointer-events: none;
    }
    /* Gövdedeki başlık mobilde gizli — görsel üstündeki kullanılıyor */
    .activity-card .card-body .card-title { display: none; }

    /* Kart kutusu mobilde daha belirgin */
    .activity-card {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 150, 199, 0.18);
    }
    .card-body { padding: 18px; }

    /* Dokunmatik dostu büyük kart butonları */
    .card-btn { padding: 14px 18px; font-size: 0.9rem; }
}

/* İki sütun (telefon) — kompakt görsel ve başlık */
@media (max-width: 480px) {
    .card-image { height: 180px; }
    .card-img-caption { font-size: 1.1rem; }
    .card-body { padding: 12px; }
    .card-btn { padding: 10px 12px; font-size: 0.82rem; }
}

/* =====================================================================
   UI/UX UPGRADE — temiz, okunabilir, mobil öncelikli iyileştirmeler
   ===================================================================== */

/* ----- Global mobil layout korumaları ----- */
html, body {
    overflow-x: hidden; /* Hero iframe 100vw + scrollbar yatay scroll'unu engelle */
    max-width: 100%;
}
img, iframe, video {
    max-width: 100%;
}

/* Tüm tıklanabilir alanlar minimum 44x44px — WCAG 2.1 AA */
a, button, [role="button"] {
    -webkit-tap-highlight-color: rgba(21,101,192,0.1);
}

/* Odak (focus) görünürlüğü — klavye navigasyonu için kritik */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
    outline: 3px solid rgba(245,158,11,0.55);
    outline-offset: 2px;
}

/* Resimler için layout-shift (CLS) koruması — aspect-ratio fallback */
.card-image img,
.gallery-item img,
.hero-act-card img {
    aspect-ratio: auto;
    background: rgba(21,101,192,0.05);
}

/* ----- Hero video iframe — TÜM ekranlarda tam kaplama (cover).
   ÖNEMLİ: eski 'max-width:100vw' kaldırıldı — mobilde iframe genişliğini
   viewport'a kısıtlayıp 16:9 oranını bozuyordu → video küçük/letterbox (siyah
   bantlı) görünüyordu. Yatay taşma .hero ve .hero-video-bg üzerindeki
   overflow:hidden ile güvenle kırpılır; sayfa yatay kaymaz. ----- */
.hero-video-bg iframe {
    max-width: none;
}
@media (max-width: 768px) {
    .hero-video-bg {
        height: 100vh;
        height: 100dvh; /* mobil tarayıcı çubuğu payını da kapla */
    }
    .hero-video-bg iframe {
        /* Portre ekran: 16:9 videoyu YÜKSEKLİĞE göre ölçekle, genişlik taşıp ekranı kaplasın
           (.hero-video-bg overflow:hidden taşan kısmı kırpar — yatay scroll OLMAZ).
           Ek scale(1.15) → YouTube player'ın UI marjı (siyah bant) ekran dışına itilir,
           video alanı tüm ekranı kaplar. */
        width: 177.78vh;     /* 100vh * 16/9 */
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        max-width: none;
        transform: translate(-50%, -50%) scale(1.35);
    }
}
@supports (height: 100dvh) {
    @media (max-width: 768px) {
        .hero-video-bg {
            height: 100dvh;
        }
        .hero-video-bg iframe {
            width: 177.78dvh;
            height: 100dvh;
            min-height: 100dvh;
            transform: translate(-50%, -50%) scale(1.35);
        }
    }
}

/* ----- Navbar iletişim butonları — minimum dokunma alanı (44px) ----- */
.nav-whatsapp, .nav-viber, .nav-telegram, .nav-reservation-btn {
    min-height: 40px;
}
@media (max-width: 768px) {
    .nav-whatsapp, .nav-viber, .nav-telegram, .nav-reservation-btn {
        min-height: 48px;
        font-size: 0.95rem;
        padding: 12px 18px;
    }
}

/* ----- Kart "Detayları Gör" butonu — okunabilir minimum ----- */
@media (max-width: 480px) {
    .card-detail-btn {
        font-size: 0.78rem !important;
        min-height: 38px;
        padding: 9px 8px !important;
    }
    .card-btn {
        min-height: 40px;
    }
}

/* ----- Lightbox — modal ve erişilebilirlik iyileştirmesi ----- */
.lightbox-close {
    min-width: 48px;
    min-height: 48px;
    padding: 10px;
    cursor: pointer;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover { background: rgba(0,0,0,0.75); transform: scale(1.05); }
.lightbox-close:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* ----- Contact / iletişim modal — kapatma butonu büyüt ----- */
.cm-close {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    cursor: pointer;
    border: none;
    background: rgba(21,101,192,0.08);
    color: var(--ocean-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cm-close:hover { background: rgba(21,101,192,0.18); }

/* ----- Floating dil butonu — modal açıkken gizle (z-index çakışmasını çöz) ----- */
body.modal-open .floating-lang { display: none !important; }
body.modal-open .sticky-fab    { display: none !important; }
body.modal-open                { overflow: hidden; }

/* ----- Sticky FAB — mobilde ekran taşmasını engelle ----- */
@media (max-width: 480px) {
    .sticky-fab {
        bottom: 18px !important;
        right: 14px !important;
    }
    .sticky-fab-options {
        right: 0 !important;
        gap: 8px !important;
    }
    .sticky-fab-options a {
        font-size: 0.85rem !important;
        padding: 10px 14px !important;
    }
}

/* ----- Fiyat tabloları — mobilde okunabilir + yatay kaydırma ----- */
.price-table-wrap, .act-description {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 480px) {
    .price-table,
    table.price-table {
        font-size: 0.8rem;
        min-width: 100%;
    }
    .price-table th,
    .price-table td {
        padding: 8px 10px !important;
    }
}

/* ----- Section padding tutarlılığı ----- */
@media (max-width: 768px) {
    .section {
        padding: 50px 0 !important;
    }
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        line-height: 1.2;
    }
    .section-tag {
        font-size: 0.78rem;
    }
}

/* ----- Form input'lar — mobilde 16px+ yazı (iOS zoom önlemi) ----- */
@media (max-width: 768px) {
    input[type="text"], input[type="email"], input[type="tel"],
    input[type="password"], input[type="number"], textarea, select {
        font-size: 16px !important;  /* iOS Safari otomatik zoom'u engellemek için */
        min-height: 44px;
    }
    textarea {
        min-height: 88px;
    }
}

/* ----- Buton padding'leri tutarlı (genel CTA'lar) ----- */
.btn, .card-btn, .nav-whatsapp, .contact-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active, .card-btn:active {
    transform: scale(0.97);
}

/* ----- Hover state'i sadece destekleyen cihazlarda göster (mobilde sticky hover bug fix) ----- */
@media (hover: hover) {
    .activity-card:hover {
        box-shadow: 0 16px 48px rgba(21,101,192,0.25);
        border-color: rgba(21,101,192,0.38);
    }
}
@media (hover: none) {
    .activity-card:hover {
        box-shadow: var(--shadow-sm);
        border-color: var(--border);
    }
}

/* ----- Skip-to-content (a11y) — Tab tuşuyla görünür hale gel ----- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--ocean-deep);
    color: #fff;
    padding: 12px 20px;
    z-index: 100000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ----- Cookie consent — overlay scroll engellemesin ----- */
.cookie-consent {
    z-index: 99980;
    max-height: 80vh;
    overflow-y: auto;
}

/* Aktivite kartı ortak teaser — tüm kartlarda aynı CTA metni, italik mute */
.card-desc-teaser {
    font-style: italic;
    color: #64748b;
    font-size: 0.84rem;
    margin-bottom: 12px;
    line-height: 1.45;
    flex-grow: 1;
    position: relative;
    padding-left: 0;
}
.card-desc-teaser::before {
    content: '↳ ';
    color: var(--ocean-light, #1565C0);
    font-weight: 700;
    font-style: normal;
    margin-right: 3px;
}
@media (max-width: 480px) {
    .card-desc-teaser {
        font-size: 0.72rem;
        margin-bottom: 8px;
        line-height: 1.35;
    }
}

/* Mobil menü açıkken sayfa kaydırılmasın */
body.nav-open {
    overflow: hidden;
}
body.nav-open .floating-lang,
body.nav-open .sticky-fab {
    display: none !important;
}

/* Mobil menü karartma katmanı — body üzerinde, .site-header'ın ALTINDA (z-index 999 < 1000).
   .site-header (1000) kendi stacking context'i; menü onun içinde (1002). Backdrop 999'da
   olunca tüm header + menü karartmanın ÜSTÜNDE kalır → menü beyaz, sadece arka plan kararır.
   pointer-events:none → karartmaya dokununca document.click → menü kapanır. */
body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.45);
    z-index: 999;
    pointer-events: none;
    animation: navBackdropIn 0.3s ease forwards;
}
@keyframes navBackdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ===== Açılır menü alt kredi linki — "Yazılım Çözümleri: Freelance Grafiker" ===== */
.nav-credit { display: none; } /* masaüstünde gizli — sadece mobil açılır menüde görünür */

@media (max-width: 992px) {
    .nav-menu > li.nav-credit {
        display: block;
        width: 100%;
        margin-top: auto;          /* menü panelinin en altına it */
        padding-top: 18px;
        border-top: 1px solid rgba(21,101,192,0.10);
        border-bottom: none;
        text-align: center;
    }
    .nav-credit a {
        display: block;
        width: 100%;
        padding: 10px 8px;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.2px;
        color: #94a3b8;
        text-decoration: none;
        text-transform: none;
        transition: color 0.2s ease;
    }
    .nav-credit a strong {
        color: var(--ocean-deep, #1A3A6B);
        font-weight: 700;
    }
    .nav-credit a:hover {
        color: var(--ocean-deep, #1A3A6B);
    }
    .nav-credit a:hover strong {
        color: var(--coral, #FF6B57);
    }
}
