/* ═══════════════════════════════════════════════
   BungAlovara – site.css  (v12)
   Fonts: Cormorant Garamond + Jost
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
    --green:     #0a5c3e;
    --green-d:   #073c28;
    --green-m:   #128654;
    --green-xl:  #e6f3ec;
    --gold:      #b8935a;
    --gold-l:    #f0e0c8;
    --cream:     #f8f5f0;
    --warm:      #f3ede4;
    --white:     #ffffff;
    --dark:      #1a1a1a;
    --text:      #3d3d3d;
    --muted:     #6b7280;
    --border:    #e8e3db;
    --radius:    14px;
    --shadow:    0 4px 24px rgba(0,0,0,.07);
    --shadow-lg: 0 16px 56px rgba(0,0,0,.12);
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.site-topbar {
    background: var(--green-d);
    color: rgba(255,255,255,.65);
    font-size: .75rem;
    letter-spacing: .04em;
    padding: 9px 0;
}
.topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
}
.topbar-inner a { color: rgba(255,255,255,.65); transition: .2s; }
.topbar-inner a:hover { color: #fff; }
.tb-divider { color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.site-nav {
    position: sticky; top: 0; z-index: 999;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 44px; width: 44px; border-radius: 10px; object-fit: cover; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--green); line-height: 1; }
.nav-brand-sub { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
    font-size: .82rem; font-weight: 500; color: var(--dark);
    letter-spacing: .03em; padding: 4px 0; position: relative; transition: .2s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--green); transform: scaleX(0); transition: .25s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-btn-outline {
    border: 1.5px solid var(--green); color: var(--green); background: transparent;
    padding: 9px 20px; border-radius: 7px; font-size: .8rem; font-weight: 600;
    letter-spacing: .04em; transition: .2s; cursor: pointer;
}
.nav-btn-outline:hover { background: var(--green); color: #fff; }
.nav-btn-solid {
    background: var(--green); color: #fff; border: 1.5px solid var(--green);
    padding: 9px 20px; border-radius: 7px; font-size: .8rem; font-weight: 600;
    letter-spacing: .04em; transition: .2s; cursor: pointer;
}
.nav-btn-solid:hover { background: var(--green-d); }
.nav-user-btn {
    display: flex; align-items: center; gap: 8px; background: transparent;
    border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 14px;
    cursor: pointer; font-family: 'Jost', sans-serif; font-size: .82rem; font-weight: 500; transition: .2s;
}
.nav-user-btn:hover { border-color: var(--green); }
.nav-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #4ade80);
    color: #fff; font-size: .75rem; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center; text-transform: uppercase;
}
.nav-user-name { display: none; }
@media (min-width: 768px) { .nav-user-name { display: inline; } }
.nav-hamburger {
    display: flex; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .2s; }
.mobile-menu-inner {
    padding: 16px 24px 20px; background: #fff; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 2px;
}
.mobile-menu-inner a { padding: 10px 4px; font-size: .9rem; font-weight: 500; color: var(--dark); border-bottom: 1px solid var(--border); }
.mobile-menu-inner a:last-child { border-bottom: none; }
.mobile-btn-outline,.mobile-btn-solid { margin-top: 8px; border-radius: 8px; text-align: center; padding: 12px !important; font-weight: 600 !important; }
.mobile-btn-outline { border: 1.5px solid var(--green) !important; color: var(--green) !important; }
.mobile-btn-solid { background: var(--green) !important; color: #fff !important; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    position: relative; height: 760px;
    display: flex; align-items: stretch;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1600&q=90') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(7,60,40,.92) 0%, rgba(10,92,62,.72) 60%, rgba(10,92,62,.45) 100%);
}
.hero-texture {
    position: absolute; inset: 0; opacity: .035;
    background-image: 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='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: auto; }
.hero-inner {
    position: relative; z-index: 3;
    max-width: 1200px; margin: 0 auto; width: 100%;
    height: 100%;
    padding: 170px 24px 50px;
    display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
}
/* Hero badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px); color: rgba(255,255,255,.9);
    font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    padding: 7px 16px; border-radius: 100px; margin-bottom: 14px;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
    animation: bdot 2s ease-in-out infinite;
}
@keyframes bdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
/* Hero title */
.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 700; color: #fff; line-height: 1.12;
    letter-spacing: -.02em; margin-bottom: 14px;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-p { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.7; max-width: 460px; margin-bottom: 24px; font-weight: 300; }
/* Hero CTAs */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.btn-hero-main {
    background: var(--gold); color: #fff; border: none;
    padding: 15px 34px; border-radius: 8px; font-size: .88rem; font-weight: 600;
    letter-spacing: .05em; text-transform: uppercase; font-family: 'Jost', sans-serif;
    transition: .25s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-main:hover { background: #a07840; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,147,90,.4); color: #fff; }
.btn-hero-ghost {
    background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.38);
    padding: 15px 28px; border-radius: 8px; font-size: .88rem; font-weight: 500;
    font-family: 'Jost', sans-serif; transition: .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.play-btn {
    width: 24px; height: 24px; background: rgba(255,255,255,.2); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; font-size: .6rem;
}
/* Hero stats */
.hero-stats {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12);
}
.hstat { display: flex; flex-direction: column; }
.hstat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hstat-l { font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .05em; margin-top: 3px; }
/* Hero sağ sütun — kartı biraz aşağı kaydır */
.hero-right { align-self: center; margin-top: 50px; }

/* Hero floating card */
.hero-card {
    background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 24px;
    animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-card-img {
    width: 100%; height: 175px; object-fit: cover; border-radius: 12px; margin-bottom: 16px;
}
.hero-card-tag {
    display: inline-block; background: rgba(184,147,90,.2); color: var(--gold);
    font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px; margin-bottom: 8px; border: 1px solid rgba(184,147,90,.3);
}
.hero-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.hero-card-loc { font-size: .75rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.hero-card-footer { display: flex; justify-content: space-between; align-items: center; }
.hero-card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.hero-card-price span { font-family: 'Jost', sans-serif; font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 400; }
.hero-card-rating {
    display: flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.1); padding: 6px 12px; border-radius: 100px;
    font-size: .78rem; color: rgba(255,255,255,.85); font-weight: 600;
}
.hc-stars { color: var(--gold); letter-spacing: 1px; }

/* ══════════════════════════════════════
   SEARCH BOX
══════════════════════════════════════ */
.search-wrap { position: absolute; top: 16px; left: 0; right: 0; z-index: 10; padding: 0 24px; }
.search-box {
    max-width: 1140px; margin: 0 auto; background: #fff;
    border-radius: 16px; box-shadow: 0 24px 80px rgba(0,0,0,.13); padding: 26px 30px;
}
.search-grid {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr auto;
    gap: 16px; align-items: end;
}
.sf { display: flex; flex-direction: column; gap: 5px; }
.sf label { font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.sf-control {
    border: 1.5px solid var(--border); border-radius: 8px;
    padding: 10px 13px; font-size: .86rem; color: var(--dark);
    font-family: 'Jost', sans-serif; outline: none; transition: .2s; background: #fff;
}
.sf-control:focus { border-color: var(--green); }
.sf-btn {
    background: var(--green); color: #fff; border: none; border-radius: 8px;
    padding: 12px 24px; font-size: .85rem; font-weight: 600; font-family: 'Jost', sans-serif;
    letter-spacing: .04em; white-space: nowrap; cursor: pointer; transition: .2s;
    display: flex; align-items: center; gap: 8px;
}
.sf-btn:hover { background: var(--green-d); transform: translateY(-1px); }
.search-tags {
    display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
    margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
}
.st-label { font-size: .7rem; color: var(--muted); font-weight: 700; letter-spacing: .05em; }
.st {
    background: var(--green-xl); color: var(--green); font-size: .72rem; font-weight: 600;
    padding: 5px 13px; border-radius: 100px; cursor: pointer; transition: .2s;
    border: 1px solid transparent;
}
.st:hover { background: var(--green); color: #fff; }

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.section { padding: 56px 24px; }
#destinasyonlar { padding-top: 8px; }
.container { max-width: 1200px; margin: 0 auto; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-dark-green { background: var(--green-d); }
.sec-label {
    font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--green); margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.sec-label::before { content: ''; width: 22px; height: 2px; background: var(--gold); flex-shrink: 0; }
.sec-label.light { color: var(--gold); }
.sec-label.light::before { background: var(--gold); }
.sec-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 700; color: var(--dark); line-height: 1.18; margin-bottom: 14px; }
.sec-h.light { color: #fff; }
.sec-p { font-size: .9rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.sec-link {
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--green); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
    white-space: nowrap; transition: .2s;
}
.sec-link:hover { gap: 12px; }
.sec-link.light { color: var(--gold); }

/* ══════════════════════════════════════
   DESTINATIONS
══════════════════════════════════════ */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 16px;
}
.dest-card { position: relative; border-radius: 14px; overflow: hidden; }
.dest-big { grid-row: span 2; }
.dest-link { display: block; height: 100%; }
.dest-big .dest-link { height: 100%; min-height: 496px; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,40,25,.82) 0%, rgba(7,40,25,.08) 55%, transparent 80%); }
.dest-info { position: absolute; bottom: 0; padding: 20px; }
.dest-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 3px; transition: color .2s; }
.dest-card:hover .dest-name { color: var(--gold); }
.dest-cnt { font-size: .73rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }
.dest-cnt::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ══════════════════════════════════════
   BUNGALOV CARDS
══════════════════════════════════════ */
.bungalov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bcard {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: .3s cubic-bezier(.25,.46,.45,.94);
}
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bcard-img { position: relative; height: 210px; overflow: hidden; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bcard:hover .bcard-img img { transform: scale(1.07); }
.bcard-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0,0,0,.65); color: #fff;
    padding: 4px 10px; border-radius: 100px; font-size: .75rem; font-weight: 600;
}
.bcard-badge .fa-star { color: #f59e0b; }
.bcard-fav {
    position: absolute; top: 12px; right: 12px;
    width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); cursor: pointer; transition: .2s; font-size: .95rem;
}
.bcard-fav:hover { color: #e74c3c; }
.bcard-fav.aktif { color: #e74c3c; }
.bcard-body { padding: 18px; }
.bcard-loc { font-size: .73rem; color: var(--muted); margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.bcard-loc .fa-map-marker-alt { color: var(--green); }
.bcard-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.bcard-feats { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.bcard-feats span { font-size: .73rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.bcard-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); }
.bcard-price em { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--green); font-style: normal; }
.bcard-price span { font-size: .72rem; color: var(--muted); margin-left: 2px; }
.bcard-btn {
    background: var(--green); color: #fff; padding: 8px 16px; border-radius: 7px;
    font-size: .78rem; font-weight: 600; transition: .2s; display: inline-flex; align-items: center; gap: 5px;
}
.bcard-btn:hover { background: var(--green-d); color: #fff; }
.btn-all-listings {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: #fff; padding: 14px 36px; border-radius: 8px;
    font-size: .88rem; font-weight: 600; letter-spacing: .04em; transition: .25s;
}
.btn-all-listings:hover { background: var(--green-d); color: #fff; transform: translateY(-1px); }

/* ══════════════════════════════════════
   NEDEN BİZ
══════════════════════════════════════ */
.why-inner { display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; }
.why-visual { position: relative; }
.why-main-img { width: 100%; height: 480px; object-fit: cover; border-radius: 20px; }
.why-float-img {
    position: absolute; bottom: -28px; right: -24px;
    width: 190px; height: 145px; object-fit: cover;
    border-radius: 14px; border: 5px solid var(--cream); box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.why-badge-box {
    position: absolute; bottom: 90px; left: -24px;
    background: #fff; border-radius: 14px; padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.why-badge-n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--green); }
.why-badge-t { font-size: .72rem; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.wf { display: flex; gap: 16px; align-items: flex-start; }
.wf-icon {
    width: 46px; height: 46px; border-radius: 11px;
    background: var(--green-xl); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0; border: 1px solid rgba(10,92,62,.1);
}
.wf-h { font-family: 'Jost', sans-serif; font-size: .93rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.wf-p { font-size: .8rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ══════════════════════════════════════
   TYPES / CATEGORIES
══════════════════════════════════════ */
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.type-card {
    background: var(--cream); border-radius: 13px; padding: 28px 20px; text-align: center;
    cursor: pointer; border: 1.5px solid transparent; transition: .25s; display: block;
}
.type-card:hover {
    background: #fff; border-color: var(--green);
    box-shadow: 0 8px 28px rgba(10,92,62,.1); transform: translateY(-3px);
}
.type-ico { font-size: 2.2rem; margin-bottom: 12px; }
.type-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.type-cnt { font-size: .73rem; color: var(--muted); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11);
    backdrop-filter: blur(8px); border-radius: 16px; padding: 28px;
    transition: .25s;
}
.tcard:hover { background: rgba(255,255,255,.09); }
.tcard-quote { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.tcard-stars { margin-bottom: 12px; font-size: .85rem; letter-spacing: 2px; }
.star-on { color: var(--gold); }
.star-off { color: rgba(255,255,255,.2); }
.tcard-text { font-size: .84rem; color: rgba(255,255,255,.72); line-height: 1.76; margin-bottom: 22px; font-style: italic; font-weight: 300; }
.tcard-user { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--green-m), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: .95rem; text-transform: uppercase;
}
.tcard-name { font-size: .84rem; font-weight: 600; color: #fff; }
.tcard-loc { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 1px; }
.tcard-link {
    font-size: .75rem; font-weight: 600; color: var(--gold);
    border: 1px solid rgba(184,147,90,.35); padding: 5px 13px; border-radius: 100px; transition: .2s;
}
.tcard-link:hover { background: var(--gold); color: #fff; }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--gold), #c8a060); padding: 88px 24px;
    text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.06);
}
.cta-band::after {
    content: ''; position: absolute; bottom: -30%; left: -5%;
    width: 350px; height: 350px; border-radius: 50%; background: rgba(0,0,0,.06);
}
.cta-inner { position: relative; z-index: 2; }
.cta-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.cta-p { color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: 36px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn1 {
    background: var(--green-d); color: #fff; padding: 15px 38px; border-radius: 8px;
    font-size: .88rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    font-family: 'Jost', sans-serif; transition: .25s;
}
.cta-btn1:hover { background: #041f14; transform: translateY(-2px); color: #fff; }
.cta-btn2 {
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.48);
    padding: 15px 34px; border-radius: 8px; font-size: .88rem; font-weight: 500;
    font-family: 'Jost', sans-serif; transition: .25s;
}
.cta-btn2:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ══════════════════════════════════════
   MAP TOOLTIP (Leaflet baloncuk)
══════════════════════════════════════ */
.leaflet-tooltip.map-bubble {
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
    padding: 6px 10px;
    font-family: 'Jost', sans-serif;
    font-size: .73rem;
    line-height: 1.45;
    white-space: nowrap;
    color: #1a2e1a;
    pointer-events: none;
}
.leaflet-tooltip.map-bubble b {
    display: block;
    font-size: .78rem;
    color: #0a3d26;
    margin-bottom: 1px;
}
.leaflet-tooltip.map-bubble .map-price {
    color: #0a5c3e;
    font-weight: 700;
}
.leaflet-tooltip.map-bubble::before {
    border-top-color: #fff;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--green-d); color: rgba(255,255,255,.6); padding: 72px 24px 32px; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo img { height: 46px; width: 46px; border-radius: 10px; }
.footer-logo span { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.footer-brand p { font-size: .82rem; line-height: 1.8; max-width: 260px; color: rgba(255,255,255,.5); }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
    font-size: .82rem; color: rgba(255,255,255,.6); transition: .2s;
}
.footer-socials a:hover { background: var(--gold); color: #fff; }
.footer-col h5 {
    font-family: 'Jost', sans-serif; font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a,
.footer-col ul li { font-size: .82rem; color: rgba(255,255,255,.5); transition: .2s; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-contact li { font-size: .82rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; }
.footer-contact i { color: var(--gold); width: 14px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 26px; font-size: .75rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 10px;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in-view { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   DROPDOWN (Bootstrap override)
══════════════════════════════════════ */
.dropdown-menu { border-radius: 10px; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,.1); padding: 6px; font-family: 'Jost', sans-serif; }
.dropdown-item { border-radius: 7px; font-size: .85rem; padding: 8px 14px; transition: .15s; }
.dropdown-item:hover { background: var(--green-xl); color: var(--green); }

/* ══════════════════════════════════════
   EXISTING PAGE STYLES (Ara, Detay, Rezervasyon…)
   — kept intact from previous version —
══════════════════════════════════════ */

/* Search / Ara page */
.search-page { padding: 0 0 60px; }
.filter-panel { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.filter-title { font-size: .85rem; font-weight: 700; margin-bottom: 16px; color: var(--dark); font-family: 'Jost', sans-serif; text-transform: uppercase; letter-spacing: .05em; }
.results-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: .9rem; color: var(--muted); }
.results-count strong { color: var(--dark); font-weight: 700; }

/* Detay page */
.detay-page { padding: 90px 0 60px; }
.detay-main-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); }
.detay-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.detay-gallery img { height: 90px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: opacity .2s; }
.detay-gallery img:hover { opacity: .8; }
.detay-info-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.amenity-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text); background: var(--cream); padding: 10px 12px; border-radius: 8px; }
.amenity-item i { color: var(--green); width: 16px; }

/* Rezervasyon page */
.rezervasyon-page { padding: 100px 0 60px; }
.rez-page-header { display: flex; align-items: center; gap: 16px; padding: 0 0 24px; }
.rez-page-header h1 { font-size: 1.5rem; font-weight: 800; margin: 0; }
.rez-form-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.rez-form-section { margin-bottom: 28px; }
.rez-form-section h5 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--green-xl); color: var(--green-d); font-family: 'Jost', sans-serif; }
.form-control, .form-select { border-radius: 9px !important; border-color: var(--border) !important; padding: 11px 14px !important; font-family: 'Jost', sans-serif !important; font-size: .87rem !important; }
.form-control:focus, .form-select:focus { border-color: var(--green) !important; box-shadow: 0 0 0 3px rgba(10,92,62,.1) !important; }
.price-calc-box { background: var(--green-xl); border-radius: 11px; padding: 16px 20px; margin: 16px 0; }
.price-calc-row { display: flex; justify-content: space-between; font-weight: 600; color: var(--green-d); }
.btn-rezervasyon-gonder { width: 100%; background: var(--green); color: #fff; border: none; border-radius: 11px; padding: 16px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: .2s; font-family: 'Jost', sans-serif; }
.btn-rezervasyon-gonder:hover { background: var(--green-d); }
.rez-summary-box { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.rez-summary-img { width: 100%; height: 175px; object-fit: cover; }
.rez-summary-body { padding: 18px; }
.rez-summary-loc { font-size: .78rem; color: var(--muted); margin-bottom: 5px; }
.rez-summary-name { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.rez-summary-price { display: flex; justify-content: space-between; font-size: .93rem; padding: 4px 0; }
.rez-summary-price strong { color: var(--green); }

/* Onay page */
.onay-page { padding: 100px 0 60px; min-height: 80vh; display: flex; align-items: center; }
.onay-card { max-width: 700px; margin: 0 auto; background: #fff; border-radius: var(--radius); padding: 48px; box-shadow: 0 20px 60px rgba(0,0,0,.08); text-align: center; }
.onay-icon { font-size: 5rem; margin-bottom: 20px; animation: bounce 1s ease; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.onay-title { font-size: 2rem; color: var(--green); margin-bottom: 10px; }
.onay-subtitle { color: var(--muted); font-size: 1.05rem; margin-bottom: 30px; }
.onay-bungalov { display: flex; align-items: center; gap: 16px; text-align: left; background: var(--cream); border-radius: 11px; padding: 16px; margin-bottom: 20px; }
.onay-bungalov img { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; }
.onay-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; margin-bottom: 20px; }
.onay-info-item { background: var(--cream); border-radius: 9px; padding: 12px; }
.onay-info-item label { display: block; font-size: .73rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.onay-info-item span { font-weight: 600; font-size: .93rem; }
.onay-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.btn-onay-home { background: var(--green); color: #fff; padding: 12px 24px; border-radius: 9px; text-decoration: none; font-weight: 600; transition: .2s; }
.btn-onay-home:hover { background: var(--green-d); color: #fff; }
.btn-onay-ara { background: transparent; color: var(--green); border: 2px solid var(--green); padding: 12px 24px; border-radius: 9px; text-decoration: none; font-weight: 600; transition: .2s; }
.btn-onay-ara:hover { background: var(--green); color: #fff; }

/* Profile page */
.profil-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #4ade80); color: #fff; font-size: 2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.profil-stat-kart { background: var(--cream); border-radius: 11px; padding: 12px 8px; }
.profil-stat-sayi { font-size: 1.4rem; font-weight: 800; color: var(--green); font-family: 'Cormorant Garamond', serif; }
.profil-stat-etiket { font-size: .73rem; color: var(--muted); }

/* Payment page */
.odeme-yontem-kart { border: 2px solid var(--border); border-radius: 9px; padding: 10px 16px; cursor: pointer; font-size: .88rem; transition: .2s; user-select: none; }
.odeme-yontem-kart.active { border-color: var(--green); background: var(--green-xl); color: var(--green); font-weight: 600; }

/* Alerts */
.alert-banner { padding: 12px 16px; border-radius: 9px; font-size: .88rem; margin-bottom: 16px; }
.alert-banner.success { background: #d1fae5; color: #065f46; }
.alert-banner.danger  { background: #fee2e2; color: #991b1b; }

/* Map popup */
.map-popup img { border-radius: 8px; }

/* Compare page */
.compare-table th .compare-th-loc { font-size: .8rem; color: var(--muted); padding: 0 20px 14px; }
.compare-table th img { width: 100%; height: 150px; object-fit: cover; }
.compare-label-col { width: 180px; font-weight: 600; color: var(--muted); font-size: .85rem; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid #f0f0f0; font-size: .9rem; vertical-align: middle; }
.compare-price { font-size: 1.3rem; color: var(--green); font-family: 'Cormorant Garamond', serif; }

/* Form section title */
.form-section-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 12px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; padding: 170px 24px 100px; }
    .hero-right { display: none; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .dest-big { grid-row: span 1; }
    .dest-big .dest-link { min-height: 240px; }
    .why-inner { grid-template-columns: 1fr; gap: 48px; }
    .why-float-img { display: none; }
    .why-badge-box { left: 16px; bottom: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .search-grid { grid-template-columns: 1fr; }
    .sf-btn { width: 100%; justify-content: center; }
    .bungalov-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 18px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .onay-info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .section { padding: 60px 16px; }
    .search-wrap { position: relative; top: auto; left: auto; right: auto; padding: 16px; }
    .search-box { border-radius: 12px; padding: 18px 16px; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
    .sec-head { flex-direction: column; align-items: flex-start; }
    /* Hero yüksekliğini mobilde daralt */
    .hero { min-height: 420px; padding-bottom: 0; }
    /* Detay sayfası header */
    .detay-hero { flex-direction: column; gap: 12px; }
    .detay-actions { flex-direction: row; flex-wrap: wrap; }
    /* Rezervasyon formu mobil */
    .rez-sticky { position: relative; top: auto; }
    /* Topbar - mobilde gizle veya küçült */
    .site-topbar .topbar-inner { font-size: .72rem; flex-wrap: wrap; justify-content: center; gap: 4px; }
    .site-topbar .tb-divider { display: none; }
    /* Arama sayfası filtre */
    .ara-grid { grid-template-columns: 1fr; }
    .ara-sidebar { position: relative; }
}

/* ── Detay Galeri ─────────────────────────────────────────────────────────── */
.detay-galeri { margin-bottom: 28px; }

.galeri-main-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius, 12px);
    overflow: hidden;
    background: #1a1a1a;
}

.galeri-main-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.galeri-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #1a3a2a;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    transition: background 0.15s, transform 0.15s;
    z-index: 5;
}
.galeri-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.galeri-prev { left: 14px; }
.galeri-next { right: 14px; }

.galeri-counter {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

/* Thumbnail Şeridi */
.galeri-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: #c8dbc9 transparent;
}
.galeri-thumbs::-webkit-scrollbar { height: 4px; }
.galeri-thumbs::-webkit-scrollbar-track { background: transparent; }
.galeri-thumbs::-webkit-scrollbar-thumb { background: #c8dbc9; border-radius: 4px; }

.galeri-thumb {
    flex: 0 0 auto;
    width: 90px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: opacity 0.15s, border-color 0.15s;
}
.galeri-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.galeri-thumb:hover { opacity: 0.9; }
.galeri-thumb.active {
    border-color: #2d6a4f;
    opacity: 1;
}

@media (max-width: 768px) {
    .galeri-main-img { height: 260px; }
    .galeri-thumb { width: 72px; height: 50px; }
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.galeri-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: zoom-out;
}

.lb-img-wrap {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    transition: opacity 0.15s ease;
    display: block;
}

.lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.lb-close:hover { background: rgba(255,255,255,0.28); }

.lb-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, transform 0.15s;
}
.lb-btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-btn { width: 40px; height: 40px; font-size: 1rem; }
}

/* Ek Hizmet Kartları */
.ek-hizmet-kart { border:2px solid #e5e7eb; border-radius:12px; padding:14px; transition:all .15s; }
.ek-hizmet-kart.secili { border-color:#2d7d46; background:#f0faf4; }
.ek-hz-ust { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; }
.ek-hz-ikon { font-size:1.6rem; line-height:1; flex-shrink:0; }
.ek-hz-bilgi { flex:1; min-width:0; }
.ek-hz-ad { font-weight:700; font-size:.88rem; color:#111827; }
.ek-hz-aciklama { font-size:.76rem; color:#6b7280; margin-top:2px; }
.ek-hz-fiyat { font-size:.78rem; color:#2d7d46; font-weight:700; margin-top:3px; }
.ek-hz-adet { display:flex; align-items:center; justify-content:center; gap:12px; }
.adet-btn { width:30px; height:30px; border:1.5px solid #d1d5db; background:white; border-radius:8px; font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .15s; }
.adet-btn:hover { border-color:#2d7d46; color:#2d7d46; }
.adet-deger { font-weight:700; font-size:1rem; min-width:20px; text-align:center; }

/* ── NAV DROPDOWN (Tesis Tipi) ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    min-width: 190px;
    z-index: 1050;
    padding: 6px 0;
    list-style: none;
    margin: 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
    display: block;
    padding: 9px 18px;
    color: #374151;
    text-decoration: none;
    font-size: .92rem;
    white-space: nowrap;
    transition: background .12s;
}
.nav-dropdown-menu a:hover { background: #f0fdf4; color: var(--green); }
.nav-dropdown-menu li:first-child a { border-bottom: 1px solid #f3f4f6; font-weight: 600; }

/* ── MOBİL NAV GROUP ── */
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-main { font-weight: 600; }
.mobile-nav-sub {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    gap: 2px;
    margin-top: 2px;
    margin-bottom: 4px;
}
.mobile-nav-sub a {
    font-size: .88rem;
    color: #4b5563;
    padding: 5px 0;
    text-decoration: none;
}
.mobile-nav-sub a:hover { color: var(--green); }

/* ── Tesis Tipi Çoklu Seçim Dropdown ──────────────────────────────────── */
.tesis-tipi-dropdown { position: relative; }

.tesis-tipi-btn {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 8px 12px; background: #fff;
    border: 1px solid #d1d5db; border-radius: 8px;
    font-size: .9rem; cursor: pointer; color: #374151;
    transition: border-color .2s;
    text-align: left;
}
.tesis-tipi-btn:hover { border-color: var(--green); }
.tesis-tipi-arrow { font-size: .75rem; color: #6b7280; }

.tesis-tipi-panel {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: #fff; border: 1px solid #d1d5db; border-radius: 8px;
    padding: 6px 0; z-index: 50;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.tesis-tipi-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; cursor: pointer; font-size: .9rem;
    transition: background .15s; user-select: none;
}
.tesis-tipi-item:hover { background: #f3f4f6; }
.tesis-tipi-item input[type="checkbox"] {
    width: 16px; height: 16px; cursor: pointer;
    accent-color: var(--green); flex-shrink: 0;
}

/* ── Hero Carousel ──────────────────────────────────────────────────────── */
/* Carousel + inner + item zinciri .hero yüksekliğini (760px) doldurur */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item { width: 100%; height: 100%; }

.hero-bg--slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}

/* Gösterge noktaları */
.carousel-indicators [data-bs-target] {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.4); border: none;
    transition: background .3s, transform .3s;
    opacity: 1;
}
.carousel-indicators .active { background: var(--gold); transform: scale(1.3); }

/* Ok butonları */
.hero-prev, .hero-next {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    position: absolute;
    top: 50%; transform: translateY(-50%);
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,.25); }

/* Kampanya slayt içerik düzeni — aynı hero-inner padding'i kullanır */
.hero-inner--promo {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; gap: 20px;
    max-width: 700px; margin: 0 auto;
    position: relative; z-index: 2;
    padding: 60px 24px;
    width: 100%; height: 100%; min-height: unset;
}

/* Hero — mobil: sabit yükseklik yerine auto */
@media (max-width: 768px) {
    .hero { height: auto; min-height: 520px; overflow: visible; }
    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item { height: auto; min-height: 520px; }
    .hero-inner { height: auto; padding: 100px 20px 60px; }
    .hero-inner--promo { height: auto; min-height: 520px; padding: 130px 20px 80px; }
}

.promo-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff; border-radius: 999px;
    padding: 6px 18px; font-size: .9rem; font-weight: 600;
}

.promo-h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700; color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    margin: 0;
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
}

.promo-p {
    font-size: 1.1rem; color: rgba(255,255,255,.88);
    margin: 0; max-width: 520px;
}

.promo-video-el {
    width: 100%; max-width: 560px;
    border-radius: 12px; display: block;
}
