:root {
    --green-950: #07170d;
    --green-900: #0b2414;
    --green-800: #123a22;
    --green-700: #18542f;
    --green-600: #1f6f3d;
    --green-100: #eaf6ed;
    --cream: #fff7e8;
    --sand: #f4ead5;
    --orange: #f59e0b;
    --orange-2: #ff7a1a;
    --brown: #4b2f1c;
    --text: #1d241f;
    --muted: #68756c;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(8, 30, 16, .14);
    --radius: 28px;
    --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: #fffdf8;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--green-900); color: white; padding: 10px 16px; z-index: 9999; border-radius: 12px; }
.skip-link:focus { left: 12px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 253, 248, .94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(18, 58, 34, .08); transition: box-shadow .2s ease, background .2s ease; }
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(8, 30, 16, .10); background: rgba(255, 253, 248, .98); }
.topbar { background: linear-gradient(90deg, var(--green-950), var(--green-800)); color: rgba(255,255,255,.88); font-size: 13px; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar__links { display: flex; align-items: center; gap: 16px; }
.topbar a { color: white; font-weight: 700; }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 66px; height: 52px; object-fit: contain; background: var(--green-950); border-radius: 14px; padding: 4px; }
.brand strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; line-height: 1.1; color: var(--green-900); }
.brand small { display: block; color: var(--muted); font-weight: 700; font-size: 12px; }
.site-nav { margin-left: auto; }
.site-nav > ul { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; }
.site-nav > ul > li { position: relative; }
.site-nav > ul > li > a { display: flex; align-items: center; gap: 6px; padding: 12px 13px; border-radius: 999px; color: var(--green-900); font-weight: 800; font-size: 14px; }
.site-nav > ul > li:hover > a, .site-nav > ul > li.is-active > a { color: var(--green-950); background: var(--green-100); }
.dropdown-caret { font-size: 11px; }
.dropdown-menu { position: absolute; left: 50%; transform: translateX(-50%) translateY(12px); top: calc(100% + 8px); width: min(760px, 94vw); background: rgba(255,255,255,.98); box-shadow: var(--shadow); border: 1px solid rgba(18,58,34,.08); border-radius: 24px; padding: 16px; opacity: 0; visibility: hidden; transition: .18s ease; }
.has-dropdown:hover .dropdown-menu, .has-dropdown.dropdown-open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.dropdown-item { display: grid; grid-template-columns: 42px 1fr; gap: 4px 10px; padding: 14px; border-radius: 18px; background: #fbf8ef; border: 1px solid transparent; }
.dropdown-item:hover, .dropdown-item.is-current { background: var(--green-100); border-color: rgba(31,111,61,.18); }
.dropdown-item span { grid-row: span 2; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: white; box-shadow: 0 8px 20px rgba(8,30,16,.08); }
.dropdown-item strong { line-height: 1.2; color: var(--green-950); }
.dropdown-item small { color: var(--muted); line-height: 1.35; }
.header-cta, .btn, .footer-map { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 999px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #fff; font-weight: 900; box-shadow: 0 12px 28px rgba(245, 121, 10, .24); border: 0; cursor: pointer; }
.header-cta:hover, .btn:hover, .footer-map:hover { transform: translateY(-1px); }
.btn--ghost { background: white; color: var(--green-900); box-shadow: 0 12px 28px rgba(8, 30, 16, .10); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; background: var(--green-900); color: white; border-radius: 16px; padding: 10px; position: relative; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; transition: .2s ease; }
.menu-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.hero { position: relative; overflow: hidden; isolation: isolate; color: white; background: var(--green-950); }
.hero-slider { position: absolute; inset: 0; z-index: -3; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity .8s ease, transform 5.8s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 18% 25%, rgba(245,158,11,.34), transparent 28%), linear-gradient(90deg, rgba(7,23,13,.92) 0%, rgba(7,23,13,.78) 42%, rgba(7,23,13,.34) 100%); }
.hero::before { content: ''; position: absolute; inset: auto -8% -18% auto; width: 520px; aspect-ratio: 1; border-radius: 50%; background: rgba(31,111,61,.32); filter: blur(20px); z-index: -1; }
.hero .container { min-height: 700px; display: grid; grid-template-columns: 1.04fr .72fr; align-items: center; gap: 48px; padding-block: 82px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; background: rgba(245, 158, 11, .13); color: var(--orange); padding: 8px 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.hero h1, .page-hero h1, .section-heading h2, .content-block h2 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.05; letter-spacing: -0.04em; }
.hero h1 { font-size: clamp(44px, 6vw, 82px); margin: 14px 0 20px; max-width: 900px; text-shadow: 0 16px 50px rgba(0,0,0,.35); }
.hero p { font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.88); max-width: 720px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 760px; }
.hero-points span { padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.94); font-weight: 800; backdrop-filter: blur(10px); }
.hero-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); border-radius: 32px; padding: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.32); backdrop-filter: blur(18px); }
.hero-card img { width: 100%; border-radius: 26px; background: #020803; object-fit: contain; aspect-ratio: 4/3; padding: 16px; }
.hero-card__mini { margin-top: 16px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.hero-card__mini div { padding: 16px; border-radius: 20px; background: rgba(255,255,255,.12); }
.hero-card__mini strong { display: block; font-size: 22px; color: var(--orange); }
.hero-card__mini span { color: rgba(255,255,255,.84); font-weight: 800; }
.hero-caption { margin-top: 14px; border-radius: 22px; background: rgba(7,23,13,.48); border: 1px solid rgba(255,255,255,.12); padding: 15px; }
.hero-caption strong { display: block; font-size: 18px; line-height: 1.25; color: white; }
.hero-caption span { display: block; margin-top: 4px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 700; }
.hero-controls { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hero-controls > button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.16); color: white; font-size: 30px; line-height: 1; cursor: pointer; }
.hero-dots { display: flex; justify-content: center; gap: 8px; }
.hero-dots button { width: 10px; height: 10px; border: 0; border-radius: 999px; background: rgba(255,255,255,.44); padding: 0; cursor: pointer; transition: .2s ease; }
.hero-dots button.is-active { width: 28px; background: var(--orange); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.hero--fullwide { min-height: calc(100vh - 120px); }
.hero--fullwide::before { display: none; }
.hero--fullwide .hero-shade { background: linear-gradient(180deg, rgba(7,23,13,.12) 0%, rgba(7,23,13,.24) 42%, rgba(7,23,13,.52) 100%); }
.hero-full__content { position: relative; z-index: 2; width: 100%; min-height: clamp(560px, calc(100vh - 120px), 820px); display: flex; align-items: flex-end; justify-content: center; padding: clamp(32px, 5vw, 62px) 16px; }
.hero-reservation-btn { min-height: 58px; padding: 0 30px; font-size: 16px; letter-spacing: -0.01em; box-shadow: 0 18px 42px rgba(245, 121, 10, .34); }

.section { padding: 92px 0; }
.section--cream { background: var(--cream); }
.section--green { background: linear-gradient(135deg, var(--green-950), var(--green-800)); color: white; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(32px, 4vw, 54px); margin: 8px 0 0; color: var(--green-950); }
.section--green .section-heading h2, .section--green .section-heading p { color: white; }
.section-heading p { max-width: 620px; color: var(--muted); margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 55px rgba(8,30,16,.10); border: 1px solid rgba(18,58,34,.08); }
.service-card__image { display: block; background: linear-gradient(135deg, var(--green-900), var(--green-600)); }
.service-card__image img { width: 100%; height: 230px; object-fit: cover; }
.service-card__body { padding: 22px; position: relative; }
.service-card__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--green-100); margin-bottom: 14px; font-size: 22px; }
.service-card h3 { margin: 0 0 8px; font-size: 22px; color: var(--green-950); }
.service-card p { color: var(--muted); margin: 0 0 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-weight: 900; }
.text-link::after { content: '→'; }
.split { display: grid; grid-template-columns: .85fr 1fr; gap: 54px; align-items: center; }
.split__media { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); background: var(--green-900); }
.split__media img { width: 100%; height: 540px; object-fit: cover; }
.feature-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; padding: 13px 15px; border-radius: 18px; background: rgba(31,111,61,.08); font-weight: 750; }
.feature-list li::before { content: '✓'; color: var(--green-700); font-weight: 900; }
.cta-band { background: linear-gradient(135deg, var(--green-950), var(--green-700)); border-radius: 34px; padding: 38px; color: white; display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: var(--shadow); }
.cta-band h2 { margin: 0 0 8px; font-size: clamp(26px, 3vw, 42px); line-height: 1.1; }
.cta-band p { margin: 0; color: rgba(255,255,255,.82); }
.page-hero { background: linear-gradient(135deg, rgba(7,23,13,.94), rgba(18,58,34,.88)), url('../../image/hero-kazdagi-oksijen-kamp.webp') center/cover; color: white; padding: 92px 0; }
.inner-hero .container { max-width: 920px; }
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); margin: 14px 0; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.84); font-size: 19px; margin: 0; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 16px; color: rgba(255,255,255,.72); font-weight: 800; }
.content-block { font-size: 17px; }
.content-block h2 { color: var(--green-950); font-size: clamp(30px, 4vw, 48px); margin: 0 0 16px; }
.content-block p { color: var(--muted); margin: 0 0 16px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.info-card { background: white; border-radius: 26px; padding: 24px; border: 1px solid rgba(18,58,34,.08); box-shadow: 0 18px 45px rgba(8,30,16,.08); }
.info-card__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: var(--green-100); font-size: 22px; margin-bottom: 14px; }
.info-card h3 { margin: 0 0 8px; color: var(--green-950); font-size: 21px; }
.info-card p { margin: 0; color: var(--muted); }
.gallery-section + .gallery-section { margin-top: 56px; }
.gallery-section__head { margin-bottom: 18px; }
.gallery-section__head h2 { margin: 0 0 8px; font-size: clamp(26px, 3vw, 40px); color: var(--green-950); }
.gallery-section__head p { margin: 0; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: var(--green-900); border-radius: 22px; cursor: pointer; min-height: 230px; box-shadow: 0 16px 42px rgba(8,30,16,.11); }
.gallery-item img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; transition: transform .28s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { position: absolute; left: 12px; right: 12px; bottom: 12px; border-radius: 999px; background: rgba(7,23,13,.74); color: white; padding: 8px 12px; font-weight: 900; font-size: 13px; backdrop-filter: blur(10px); }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.gallery-filter { border: 1px solid rgba(18,58,34,.14); background: white; border-radius: 999px; padding: 11px 16px; font-weight: 900; color: var(--green-900); cursor: pointer; }
.gallery-filter.is-active, .gallery-filter:hover { background: var(--green-900); color: white; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: stretch; }
.contact-panel { background: white; border-radius: 30px; padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(18,58,34,.08); }
.contact-panel h2 { margin-top: 0; color: var(--green-950); }
.contact-row { padding: 16px 0; border-top: 1px solid rgba(18,58,34,.08); }
.contact-row strong { display: block; color: var(--green-900); }
.contact-row a { color: var(--green-700); font-weight: 900; }
.map-card { border-radius: 30px; overflow: hidden; min-height: 520px; box-shadow: var(--shadow); background: var(--green-100); }
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }
.site-footer { background: var(--green-950); color: rgba(255,255,255,.84); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .65fr 1fr; gap: 34px; }
.footer-brand img { width: 138px; border-radius: 18px; background: #000; padding: 8px; margin-bottom: 16px; }
.site-footer h2, .site-footer h3 { color: white; margin: 0 0 14px; }
.site-footer p { margin: 0 0 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a:hover, .footer-contact a:hover, .social-row a:hover { color: var(--orange); }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-row a { border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 8px 12px; font-weight: 800; }
.footer-bottom { margin-top: 54px; border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.mobile-actions { display: none; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.82); z-index: 2000; display: none; place-items: center; padding: 24px; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1040px, 100%); max-height: 78vh; border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.lightbox p { color: white; font-weight: 800; text-align: center; margin: 14px 0 0; }
.lightbox__close { position: fixed; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: white; color: #111; font-size: 28px; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(20px); transition: .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
img.is-missing { object-fit: contain !important; padding: 24px; background: linear-gradient(135deg, var(--green-900), var(--green-600)); }
@media (max-width: 1100px) {
    .header-cta { display: none; }
    .site-nav > ul > li > a { padding-inline: 10px; }
    .hero .container, .split, .contact-grid { grid-template-columns: 1fr; }
    .hero .container { min-height: auto; }
    .hero-card--slider { max-width: 520px; }
    .hero-card { max-width: 520px; }
    .service-grid, .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
    body { padding-bottom: 68px; }
    .topbar { display: none; }
    .nav-wrap { min-height: 72px; }
    .brand img { width: 58px; height: 46px; }
    .brand strong { font-size: 16px; }
    .brand small { font-size: 11px; }
    .menu-toggle { display: block; margin-left: auto; }
    .site-nav { position: fixed; top: 72px; left: 16px; right: 16px; max-height: calc(100vh - 96px); overflow: auto; background: white; border-radius: 24px; box-shadow: var(--shadow); padding: 14px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .18s ease; }
    .site-header.menu-open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; }
    .site-nav > ul { display: grid; gap: 4px; }
    .site-nav > ul > li > a { justify-content: space-between; border-radius: 16px; padding: 14px; }
    .dropdown-menu { position: static; transform: none; width: 100%; box-shadow: none; border-radius: 18px; padding: 8px; display: none; opacity: 1; visibility: visible; }
    .has-dropdown:hover .dropdown-menu, .has-dropdown.dropdown-open .dropdown-menu { transform: none; }
    .has-dropdown.is-active .dropdown-menu, .has-dropdown.mobile-open .dropdown-menu { display: block; }
    .dropdown-menu__grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .hero .container { padding-block: 58px; }
    .hero-shade { background: linear-gradient(180deg, rgba(7,23,13,.84), rgba(7,23,13,.88)); }
    .hero-card--slider { order: -1; max-width: 420px; margin-top: 6px; }
    .hero-card--slider > img { display: none; }
    .hero-caption { background: rgba(7,23,13,.62); }
    .hero-points { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .section-heading { display: block; }
    .service-grid, .card-grid, .footer-grid, .gallery-grid { grid-template-columns: 1fr; }
    .split__media img { height: 360px; }
    .cta-band { display: grid; padding: 28px; }
    .page-hero { padding: 66px 0; }
    .mobile-actions { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 1001; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); padding: 8px; border-radius: 20px; box-shadow: 0 14px 40px rgba(8,30,16,.20); }
    .mobile-actions a { display: grid; place-items: center; min-height: 44px; border-radius: 15px; background: var(--green-900); color: white; font-weight: 900; }
}
@media (max-width: 520px) {
    .container { width: min(100% - 22px, var(--container)); }
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 16px; }
    .hero-actions { display: grid; }
    .hero-controls > button { width: 38px; height: 38px; }
    .hero-card__mini { grid-template-columns: 1fr; }
    .gallery-item, .gallery-item img { min-height: 260px; }
}


@media (max-width: 860px) {
    .hero--fullwide { min-height: auto; }
    .hero--fullwide .hero-shade { background: linear-gradient(180deg, rgba(7,23,13,.10), rgba(7,23,13,.50)); }
    .hero-full__content { min-height: 560px; padding: 28px 14px 36px; }
}
@media (max-width: 520px) {
    .hero-full__content { min-height: 470px; padding-bottom: 28px; }
    .hero-reservation-btn { width: min(100%, 340px); min-height: 54px; font-size: 15px; }
}

/* V4 - Font Awesome ikonlar, gelişmiş mobil menü ve sağ sabit iletişim */
.topbar__inner > span,
.topbar__links a,
.header-cta,
.btn,
.footer-map,
.social-row a,
.footer-contact strong,
.mobile-nav-contact a,
.contact-actions a,
.floating-contact__item,
.floating-contact__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.header-cta i,
.btn i,
.footer-map i { font-size: 1.05em; }
.dropdown-caret { display: inline-flex; align-items: center; justify-content: center; font-size: 10px; transition: transform .2s ease; }
.has-dropdown:hover .dropdown-caret,
.has-dropdown.mobile-open .dropdown-caret { transform: rotate(180deg); }
.dropdown-item span i,
.service-card__icon i,
.info-card__icon i { color: var(--green-700); font-size: 20px; }
.social-row a i { color: var(--orange); }
.contact-row--icon { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; }
.contact-row--icon > i { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); font-size: 18px; }
.contact-row--icon p { margin: 0; }
.contact-row--icon a i { margin-right: 6px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(18,58,34,.08); }
.mobile-nav-head,
.mobile-nav-contact,
.nav-backdrop { display: none; }
.floating-contact {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    display: grid;
    gap: 8px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(18,58,34,.10);
    box-shadow: 0 18px 48px rgba(8,30,16,.20);
    backdrop-filter: blur(14px);
}
.floating-contact__title {
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--green-900);
    color: white;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}
.floating-contact__item {
    min-width: 138px;
    min-height: 44px;
    padding: 0 13px;
    border-radius: 999px;
    background: #fff7e8;
    color: var(--green-950);
    font-weight: 900;
    border: 1px solid rgba(18,58,34,.09);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}
.floating-contact__item i { width: 22px; text-align: center; color: var(--orange); font-size: 18px; }
.floating-contact__item:hover { transform: translateX(-3px); background: var(--green-900); color: white; }
.floating-contact__item:hover i { color: white; }
.floating-contact__item--whatsapp { background: #eafaf0; }
.floating-contact__item--whatsapp i { color: #25D366; }
@media (max-width: 1100px) {
    .floating-contact { right: 12px; }
    .floating-contact__title span { display: none; }
}
@media (max-width: 860px) {
    body { padding-bottom: 0; }
    body.nav-is-open { overflow: hidden; }
    .menu-toggle { z-index: 1302; display: inline-flex; align-items: center; justify-content: center; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 72px 0 0;
        border: 0;
        background: rgba(7,23,13,.58);
        opacity: 0;
        visibility: hidden;
        transition: .2s ease;
        z-index: 1190;
    }
    .site-header.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
    .site-nav {
        top: 82px;
        left: 12px;
        right: 12px;
        max-height: calc(100vh - 102px);
        padding: 16px;
        border-radius: 28px;
        z-index: 1300;
        transform: translateY(14px) scale(.98);
        transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
    }
    .site-header.menu-open .site-nav { transform: translateY(0) scale(1); }
    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 4px 2px 12px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(18,58,34,.08);
        color: var(--green-950);
    }
    .mobile-nav-head strong { display: inline-flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
    .mobile-nav-head button {
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 14px;
        background: var(--green-100);
        color: var(--green-900);
        font-size: 18px;
    }
    .site-nav > ul > li > a {
        min-height: 50px;
        background: #fbf8ef;
        border: 1px solid rgba(18,58,34,.07);
    }
    .site-nav > ul > li.is-active > a,
    .site-nav > ul > li > a:hover { background: var(--green-900); color: white; }
    .dropdown-menu { margin-top: 6px; background: var(--green-100); }
    .dropdown-item { grid-template-columns: 42px 1fr; background: rgba(255,255,255,.78); }
    .mobile-nav-contact {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(18,58,34,.08);
    }
    .mobile-nav-contact a {
        justify-content: center;
        min-height: 46px;
        border-radius: 16px;
        background: var(--green-900);
        color: white;
        font-weight: 900;
        font-size: 13px;
    }
    .mobile-actions { display: none !important; }
    .floating-contact {
        top: auto;
        right: 12px;
        bottom: 14px;
        transform: none;
        border-radius: 22px;
        padding: 8px;
        grid-template-columns: 1fr;
    }
    .floating-contact__title { display: none; }
    .floating-contact__item {
        min-width: 48px;
        width: 48px;
        height: 48px;
        min-height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 17px;
        box-shadow: 0 10px 26px rgba(8,30,16,.14);
    }
    .floating-contact__item span { display: none; }
    .floating-contact__item i { width: auto; margin: 0; font-size: 20px; }
    .contact-actions { display: grid; }
    .contact-actions .btn { width: 100%; }
}
@media (max-width: 420px) {
    .brand span { max-width: 178px; }
    .floating-contact { right: 8px; bottom: 10px; }
}

/* V5 - Tek yuvarlak floating iletişim butonu */
.floating-contact {
    position: fixed;
    right: clamp(16px, 2.4vw, 34px);
    bottom: clamp(16px, 2.4vw, 34px);
    top: auto;
    transform: none;
    z-index: 1250;
    display: grid;
    justify-items: end;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
.floating-contact__main {
    width: 74px;
    height: 74px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #07170d;
    background: radial-gradient(circle at 35% 28%, #fff979 0%, #ffe600 40%, #f5c400 100%);
    box-shadow:
        0 0 0 10px rgba(255, 230, 0, .16),
        0 0 0 20px rgba(255, 230, 0, .07),
        0 22px 44px rgba(0, 0, 0, .34);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.floating-contact__main:hover,
.floating-contact.is-open .floating-contact__main {
    transform: translateY(-2px) scale(1.04);
    filter: saturate(1.08);
    box-shadow:
        0 0 0 10px rgba(255, 230, 0, .20),
        0 0 0 22px rgba(255, 230, 0, .10),
        0 28px 56px rgba(0, 0, 0, .38);
}
.floating-contact__main i { font-size: 25px; line-height: 1; }
.floating-contact__main span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.floating-contact__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 18px);
    display: grid;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(.98);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.floating-contact:hover .floating-contact__panel,
.floating-contact:focus-within .floating-contact__panel,
.floating-contact.is-open .floating-contact__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.floating-contact__action {
    min-width: 152px;
    min-height: 48px;
    padding: 7px 12px 7px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #fff;
    background: rgba(7, 23, 13, .94);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 16px 34px rgba(0,0,0,.24);
    backdrop-filter: blur(12px);
    font-weight: 900;
    white-space: nowrap;
}
.floating-contact__action span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffe600;
    color: #07170d;
    flex: 0 0 auto;
}
.floating-contact__action strong { font-size: 14px; }
.floating-contact__action:hover { transform: translateX(-3px); background: var(--green-800); }
.floating-contact__action--whatsapp span { background: #25D366; color: #fff; }
.floating-contact__title,
.floating-contact__item { display: none !important; }
@media (max-width: 860px) {
    .floating-contact {
        right: 16px;
        bottom: 18px;
        grid-template-columns: none;
        border-radius: 0;
        padding: 0;
    }
    .floating-contact__main {
        width: 64px;
        height: 64px;
        box-shadow:
            0 0 0 8px rgba(255, 230, 0, .16),
            0 0 0 16px rgba(255, 230, 0, .07),
            0 18px 38px rgba(0, 0, 0, .32);
    }
    .floating-contact__main i { font-size: 22px; }
    .floating-contact__panel { bottom: calc(100% + 16px); }
    .floating-contact__action {
        min-width: 142px;
        min-height: 46px;
        font-size: 13px;
    }
}
@media (max-width: 420px) {
    .floating-contact { right: 14px; bottom: 14px; }
    .floating-contact__main { width: 60px; height: 60px; }
}

/* V6 - Kurumsal fullwide hero slider ve marka renkli floating iletişim */
.hero--fullwide {
    height: clamp(600px, calc(100svh - 120px), 820px);
    min-height: 600px;
    overflow: hidden;
    background: var(--green-950);
}
.hero--fullwide .hero-slider,
.hero--fullwide .hero-slide,
.hero--fullwide .hero-slide img {
    width: 100%;
    height: 100%;
}
.hero--fullwide .hero-slide {
    transform: scale(1.035);
    transition: opacity .85s ease, transform 7s ease;
}
.hero--fullwide .hero-slide.is-active { transform: scale(1); }
.hero--fullwide .hero-slide img {
    object-fit: cover;
    object-position: center;
    filter: saturate(1.06) contrast(1.03);
}
.hero--fullwide .hero-shade {
    z-index: -2;
    background:
        radial-gradient(circle at 50% 82%, rgba(245, 158, 11, .24), transparent 24%),
        linear-gradient(180deg, rgba(7, 23, 13, .10) 0%, rgba(7, 23, 13, .18) 45%, rgba(7, 23, 13, .48) 100%),
        linear-gradient(90deg, rgba(7, 23, 13, .18) 0%, rgba(7, 23, 13, .04) 48%, rgba(7, 23, 13, .18) 100%);
}
.hero-full__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 18px clamp(74px, 9vh, 116px);
    pointer-events: none;
}
.hero-reservation-btn {
    pointer-events: auto;
    min-height: 58px;
    padding: 0 30px;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    box-shadow: 0 20px 48px rgba(245, 121, 10, .34), 0 8px 22px rgba(7, 23, 13, .24);
}
.hero-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(7, 23, 13, .42);
    color: #fff;
    backdrop-filter: blur(12px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.hero-nav:hover {
    background: rgba(245, 158, 11, .92);
    border-color: rgba(245, 158, 11, .95);
    transform: translateY(-50%) scale(1.04);
}
.hero-nav--prev { left: clamp(16px, 3vw, 44px); }
.hero-nav--next { right: clamp(16px, 3vw, 44px); }
.hero-dots--full {
    position: absolute;
    left: 50%;
    bottom: clamp(28px, 5vh, 48px);
    z-index: 4;
    transform: translateX(-50%);
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(7, 23, 13, .34);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
}
.hero-dots--full button { background: rgba(255,255,255,.62); }
.hero-dots--full button.is-active { background: var(--orange); }

.floating-contact {
    right: clamp(16px, 2.2vw, 30px);
    bottom: clamp(16px, 2.2vw, 30px);
    gap: 14px;
}
.floating-contact__main {
    position: relative;
    width: 68px;
    height: 68px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 58%, var(--green-700) 100%);
    border: 2px solid rgba(245, 158, 11, .82);
    box-shadow:
        0 18px 42px rgba(7, 23, 13, .34),
        0 0 0 8px rgba(24, 84, 47, .16);
    isolation: isolate;
}
.floating-contact__main::before {
    content: '';
    position: absolute;
    inset: -9px;
    border-radius: inherit;
    border: 1px solid rgba(245, 158, 11, .44);
    animation: contactPulse 2.6s ease-out infinite;
    z-index: -1;
}
.floating-contact__main::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .18);
}
.floating-contact__main:hover,
.floating-contact.is-open .floating-contact__main {
    transform: translateY(-2px);
    filter: none;
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    box-shadow:
        0 22px 50px rgba(7, 23, 13, .38),
        0 0 0 9px rgba(245, 158, 11, .14);
}
.floating-contact__main i { color: #fff; font-size: 24px; }
.floating-contact__panel {
    gap: 9px;
    bottom: calc(100% + 16px);
    transform: translateY(14px) scale(.96);
    transform-origin: right bottom;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.floating-contact.is-open .floating-contact__panel,
.floating-contact:hover .floating-contact__panel,
.floating-contact:focus-within .floating-contact__panel {
    transform: translateY(0) scale(1);
}
.floating-contact__action {
    min-width: 146px;
    min-height: 46px;
    padding: 7px 12px 7px 7px;
    background: rgba(255, 253, 248, .96);
    color: var(--green-950);
    border: 1px solid rgba(18, 58, 34, .12);
    box-shadow: 0 14px 34px rgba(7, 23, 13, .20);
}
.floating-contact__action span {
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, .14);
    color: var(--green-800);
}
.floating-contact__action:hover {
    transform: translateX(-4px);
    background: var(--green-900);
    color: #fff;
}
.floating-contact__action:hover span {
    background: var(--orange);
    color: #fff;
}
.floating-contact__action--whatsapp span {
    background: rgba(31, 111, 61, .13);
    color: var(--green-700);
}
.floating-contact__action--whatsapp:hover span { background: var(--green-600); color: #fff; }
@keyframes contactPulse {
    0% { opacity: .75; transform: scale(.92); }
    70%, 100% { opacity: 0; transform: scale(1.22); }
}
@media (max-width: 860px) {
    .hero--fullwide {
        height: 620px;
        min-height: 620px;
    }
    .hero--fullwide .hero-slide img { object-position: center; }
    .hero-full__content { padding-bottom: 82px; }
    .hero-nav {
        width: 42px;
        height: 42px;
        top: auto;
        bottom: 28px;
        transform: none;
    }
    .hero-nav:hover { transform: scale(1.03); }
    .hero-nav--prev { left: 18px; }
    .hero-nav--next { right: 18px; }
    .hero-dots--full { bottom: 34px; }
    .floating-contact__main {
        width: 62px;
        height: 62px;
    }
}
@media (max-width: 520px) {
    .hero--fullwide {
        height: 540px;
        min-height: 540px;
    }
    .hero-full__content { padding: 0 16px 78px; }
    .hero-reservation-btn {
        width: min(100%, 320px);
        min-height: 54px;
        font-size: 15px;
    }
    .hero-nav { display: none; }
    .hero-dots--full { bottom: 30px; }
}

/* V8 - Header WhatsApp kaldırıldı, floating iletişim kurumsal ve mobil uyumlu ayarlandı */
.header-cta { display: none !important; }

@media (max-width: 860px) {
    .nav-wrap {
        min-height: 76px;
        gap: 12px;
    }
    .brand {
        flex: 1 1 auto;
        min-width: 0;
    }
    .brand img {
        width: 58px;
        height: 46px;
        border-radius: 13px;
    }
    .brand span {
        min-width: 0;
        max-width: none;
    }
    .brand strong {
        font-size: clamp(18px, 5.4vw, 24px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .brand small {
        font-size: clamp(12px, 3.5vw, 15px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .menu-toggle {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        margin-left: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--green-950), var(--green-700));
        box-shadow: 0 10px 26px rgba(7, 23, 13, .18);
    }
}
@media (max-width: 390px) {
    .brand img { width: 52px; height: 42px; }
    .brand { gap: 9px; }
    .brand strong { font-size: 17px; }
    .brand small { font-size: 12px; }
}

.floating-contact {
    position: fixed !important;
    right: max(20px, env(safe-area-inset-right)) !important;
    bottom: max(20px, env(safe-area-inset-bottom)) !important;
    top: auto !important;
    transform: none !important;
    z-index: 2200 !important;
    display: grid !important;
    justify-items: end !important;
    gap: 12px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}
.floating-contact__main {
    position: relative !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 999px !important;
    border: 2px solid rgba(245, 158, 11, .86) !important;
    background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 62%, var(--green-700) 100%) !important;
    color: #fff !important;
    box-shadow: 0 18px 42px rgba(7, 23, 13, .34), 0 0 0 7px rgba(245, 158, 11, .10) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}
.floating-contact__main::before {
    content: '' !important;
    position: absolute !important;
    inset: -9px !important;
    border-radius: inherit !important;
    border: 1px solid rgba(245, 158, 11, .44) !important;
    animation: contactPulseV8 2.8s ease-out infinite !important;
    pointer-events: none !important;
}
.floating-contact__main::after {
    content: '' !important;
    position: absolute !important;
    right: 9px !important;
    top: 9px !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 999px !important;
    background: var(--orange) !important;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .18) !important;
}
.floating-contact__main:hover,
.floating-contact.is-open .floating-contact__main {
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg, var(--green-900), var(--green-600)) !important;
    box-shadow: 0 22px 48px rgba(7, 23, 13, .40), 0 0 0 8px rgba(245, 158, 11, .14) !important;
}
.floating-contact__main i {
    color: #fff !important;
    font-size: 23px !important;
}
.floating-contact__main span {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}
.floating-contact__panel {
    position: absolute !important;
    right: 0 !important;
    bottom: calc(100% + 14px) !important;
    display: grid !important;
    gap: 9px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(10px) scale(.97) !important;
    transform-origin: right bottom !important;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease !important;
}
.floating-contact.is-open .floating-contact__panel,
.floating-contact:hover .floating-contact__panel,
.floating-contact:focus-within .floating-contact__panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}
.floating-contact__action {
    min-width: 144px !important;
    min-height: 44px !important;
    padding: 6px 12px 6px 7px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    background: rgba(255, 253, 248, .98) !important;
    color: var(--green-950) !important;
    border: 1px solid rgba(18, 58, 34, .12) !important;
    box-shadow: 0 14px 34px rgba(7, 23, 13, .22) !important;
    backdrop-filter: blur(14px) !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}
.floating-contact__action span {
    width: 31px !important;
    height: 31px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: rgba(245, 158, 11, .16) !important;
    color: var(--green-800) !important;
    flex: 0 0 auto !important;
}
.floating-contact__action strong { font-size: 13px !important; }
.floating-contact__action:hover {
    transform: translateX(-3px) !important;
    background: var(--green-900) !important;
    color: #fff !important;
}
.floating-contact__action:hover span {
    background: var(--orange) !important;
    color: #fff !important;
}
.floating-contact__action--whatsapp span {
    background: rgba(31, 111, 61, .14) !important;
    color: var(--green-700) !important;
}
.floating-contact__action--whatsapp:hover span {
    background: var(--green-600) !important;
    color: #fff !important;
}
@keyframes contactPulseV8 {
    0% { opacity: .68; transform: scale(.92); }
    72%, 100% { opacity: 0; transform: scale(1.22); }
}
@media (max-width: 860px) {
    .floating-contact {
        right: max(16px, env(safe-area-inset-right)) !important;
        bottom: max(16px, env(safe-area-inset-bottom)) !important;
    }
    .floating-contact__main {
        width: 58px !important;
        height: 58px !important;
        box-shadow: 0 16px 34px rgba(7, 23, 13, .32), 0 0 0 6px rgba(245, 158, 11, .10) !important;
    }
    .floating-contact__main i { font-size: 21px !important; }
    .floating-contact__panel { bottom: calc(100% + 12px) !important; }
    .floating-contact__action {
        min-width: 132px !important;
        min-height: 42px !important;
        font-size: 13px !important;
    }
}
@media (max-width: 390px) {
    .floating-contact {
        right: max(13px, env(safe-area-inset-right)) !important;
        bottom: max(13px, env(safe-area-inset-bottom)) !important;
    }
    .floating-contact__main { width: 56px !important; height: 56px !important; }
}

/* V9 - Menü ortalama ve sağ rezervasyon butonu */
.header-reservation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(245, 121, 10, .24);
    border: 1px solid rgba(255,255,255,.38);
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.header-reservation i { font-size: 15px; }
.header-reservation:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(245, 121, 10, .32);
    filter: saturate(1.08);
}
@media (min-width: 861px) {
    .nav-wrap {
        display: grid !important;
        grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr) !important;
        align-items: center !important;
        column-gap: 24px !important;
        min-height: 84px !important;
    }
    .brand {
        grid-column: 1 !important;
        justify-self: start !important;
    }
    .site-nav {
        grid-column: 2 !important;
        justify-self: center !important;
        margin-left: 0 !important;
    }
    .site-nav > ul {
        justify-content: center !important;
    }
    .header-reservation {
        grid-column: 3 !important;
        justify-self: end !important;
    }
    .menu-toggle {
        display: none !important;
    }
}
@media (max-width: 1100px) and (min-width: 861px) {
    .nav-wrap {
        grid-template-columns: minmax(220px, .9fr) auto minmax(180px, .75fr) !important;
        column-gap: 14px !important;
    }
    .site-nav > ul > li > a {
        padding-inline: 9px !important;
        font-size: 13px !important;
    }
    .header-reservation {
        padding: 0 15px !important;
        min-height: 44px !important;
        font-size: 13px !important;
    }
}
@media (max-width: 860px) {
    .header-reservation {
        display: none !important;
    }
}

/* V11 - İç sayfa hero hizası genel container çizgisine alındı */
.inner-hero .container {
    width: min(var(--container), calc(100% - 32px)) !important;
    max-width: var(--container) !important;
    margin-inline: auto !important;
}
.inner-hero h1 {
    max-width: 960px;
}
.inner-hero p {
    max-width: 760px;
}
@media (max-width: 860px) {
    .inner-hero .container {
        width: min(100% - 24px, var(--container)) !important;
    }
    .inner-hero h1 {
        max-width: 100%;
    }
}


/* V12 - Floating iletişim paneli 2. görsel mantığında yeniden tasarlandı */
body.floating-contact-open { overflow-x: hidden; }
.floating-contact {
    position: fixed !important;
    right: max(18px, env(safe-area-inset-right)) !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    z-index: 1200 !important;
}
.floating-contact__main {
    position: relative;
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(245, 158, 11, .88) !important;
    background: radial-gradient(circle at 30% 30%, #1f7a42 0%, #0f5b31 58%, #093b22 100%) !important;
    color: #fff !important;
    box-shadow: 0 18px 45px rgba(5, 23, 14, .38), 0 0 0 10px rgba(245, 158, 11, .14) !important;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease !important;
    overflow: visible !important;
}
.floating-contact__main::before {
    content: '';
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, .24);
    animation: floatingRingPulse 2.6s ease-out infinite;
}
.floating-contact__main::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    right: 5px;
    top: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border: 2px solid rgba(255,255,255,.9);
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.floating-contact__main:hover,
.floating-contact.is-open .floating-contact__main {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 24px 52px rgba(5, 23, 14, .42), 0 0 0 12px rgba(245, 158, 11, .16) !important;
}
.floating-contact__main span { display: none !important; }
.floating-contact__main i {
    font-size: 28px !important;
    color: #fff !important;
}
@keyframes floatingRingPulse {
    0% { transform: scale(.92); opacity: .65; }
    70% { transform: scale(1.16); opacity: 0; }
    100% { transform: scale(1.2); opacity: 0; }
}
.floating-contact__panel {
    position: absolute !important;
    right: 0 !important;
    bottom: calc(100% + 18px) !important;
    width: min(360px, calc(100vw - 28px)) !important;
    border-radius: 30px !important;
    padding: 20px 18px 18px !important;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, .16), transparent 35%),
        linear-gradient(180deg, rgba(10, 20, 15, .97) 0%, rgba(8, 16, 12, .985) 100%) !important;
    border: 1px solid rgba(245, 158, 11, .22) !important;
    box-shadow: 0 28px 70px rgba(3, 12, 8, .45) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(14px) scale(.97) !important;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease !important;
    pointer-events: none !important;
}
.floating-contact.is-open .floating-contact__panel,
.floating-contact:hover .floating-contact__panel,
.floating-contact:focus-within .floating-contact__panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}
.floating-contact__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.88);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}
.floating-contact__close:hover { background: rgba(245, 158, 11, .18); transform: rotate(90deg); }
.floating-contact__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #f6c84e;
}
.floating-contact__eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f6c84e, rgba(246,200,78,.2));
}
.floating-contact__panel h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(26px, 2vw, 30px);
    line-height: 1.1;
}
.floating-contact__panel > p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.55;
    max-width: 290px;
}
.floating-contact__actions {
    display: grid;
    gap: 12px;
}
.floating-contact__action {
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 14px 16px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease !important;
}
.floating-contact__action:hover {
    transform: translateY(-2px) !important;
    background: rgba(255,255,255,.075) !important;
    border-color: rgba(245, 158, 11, .32) !important;
    box-shadow: 0 16px 32px rgba(0,0,0,.18) !important;
}
.floating-contact__action > span {
    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(245, 158, 11, .12) !important;
    color: #f6c84e !important;
    box-shadow: none !important;
}
.floating-contact__action > span i {
    font-size: 23px !important;
    color: inherit !important;
}
.floating-contact__action > div {
    display: grid;
    gap: 4px;
}
.floating-contact__action strong {
    font-size: 15px !important;
    line-height: 1.2;
    color: #fff !important;
}
.floating-contact__action small {
    display: block;
    font-size: 13px;
    line-height: 1.25;
    color: rgba(255,255,255,.66);
}
.floating-contact__action--whatsapp {
    background: linear-gradient(135deg, #ffe92a 0%, #f6db00 100%) !important;
    border-color: rgba(246, 219, 0, .85) !important;
    color: #111 !important;
}
.floating-contact__action--whatsapp strong,
.floating-contact__action--whatsapp small { color: #111 !important; }
.floating-contact__action--whatsapp > span {
    background: rgba(0,0,0,.08) !important;
    color: #111 !important;
}
.floating-contact__action--phone > span,
.floating-contact__action--location > span {
    background: rgba(246, 200, 78, .12) !important;
    color: #f6c84e !important;
}
@media (max-width: 860px) {
    .floating-contact {
        right: max(14px, env(safe-area-inset-right)) !important;
        bottom: max(14px, env(safe-area-inset-bottom)) !important;
    }
    .floating-contact__main {
        width: 64px !important;
        height: 64px !important;
    }
    .floating-contact__main i { font-size: 24px !important; }
    .floating-contact__panel {
        width: min(340px, calc(100vw - 20px)) !important;
        bottom: calc(100% + 14px) !important;
        padding: 18px 15px 15px !important;
        border-radius: 26px !important;
    }
    .floating-contact__panel h3 { font-size: 24px; }
    .floating-contact__panel > p { font-size: 14px; }
    .floating-contact__action {
        grid-template-columns: 50px 1fr !important;
        gap: 12px !important;
        padding: 12px 14px !important;
        border-radius: 20px !important;
    }
    .floating-contact__action > span {
        width: 50px !important;
        height: 50px !important;
        border-radius: 16px !important;
    }
}
@media (max-width: 480px) {
    .floating-contact__panel {
        width: min(320px, calc(100vw - 16px)) !important;
        right: -2px !important;
    }
}


/* V13 - Floating panel kapanma, turuncu aksiyon ve mobil tap/focus düzeltmeleri */
.floating-contact:not(.is-open) .floating-contact__panel,
.floating-contact:not(.is-open):hover .floating-contact__panel,
.floating-contact:not(.is-open):focus-within .floating-contact__panel {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(14px) scale(.97) !important;
    pointer-events: none !important;
}
.floating-contact.is-open .floating-contact__panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}
.floating-contact__action,
.floating-contact__action:visited,
.floating-contact__action:focus,
.floating-contact__action:active {
    color: #fff !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}
.floating-contact__action:focus-visible {
    outline: 2px solid rgba(255, 139, 26, .72) !important;
    outline-offset: 3px !important;
}
.floating-contact__action--whatsapp,
.floating-contact__action--whatsapp:visited,
.floating-contact__action--whatsapp:focus,
.floating-contact__action--whatsapp:active {
    background: linear-gradient(135deg, #ff9f1a 0%, #ff7a00 55%, #f06400 100%) !important;
    border-color: rgba(255, 139, 26, .88) !important;
    color: #fff !important;
    box-shadow: 0 16px 36px rgba(255, 122, 0, .20) !important;
}
.floating-contact__action--whatsapp strong,
.floating-contact__action--whatsapp small,
.floating-contact__action--whatsapp:focus strong,
.floating-contact__action--whatsapp:focus small,
.floating-contact__action--whatsapp:active strong,
.floating-contact__action--whatsapp:active small,
.floating-contact__action--whatsapp:visited strong,
.floating-contact__action--whatsapp:visited small {
    color: #fff !important;
    opacity: 1 !important;
}
.floating-contact__action--whatsapp > span,
.floating-contact__action--whatsapp:focus > span,
.floating-contact__action--whatsapp:active > span,
.floating-contact__action--whatsapp:visited > span {
    background: rgba(255,255,255,.18) !important;
    color: #fff !important;
}
.floating-contact__action--whatsapp:hover {
    background: linear-gradient(135deg, #ffab2e 0%, #ff850f 55%, #f26a00 100%) !important;
    border-color: rgba(255, 180, 70, .9) !important;
}
.floating-contact__action--whatsapp:hover > span {
    background: rgba(255,255,255,.22) !important;
    color: #fff !important;
}
.floating-contact__action--phone:active,
.floating-contact__action--phone:focus,
.floating-contact__action--location:active,
.floating-contact__action--location:focus {
    background: rgba(255,255,255,.075) !important;
    border-color: rgba(255, 139, 26, .28) !important;
}
.floating-contact__main:focus,
.floating-contact__main:active,
.floating-contact__close:focus,
.floating-contact__close:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}


/* V15 - Galeri lightbox sonraki/önceki geçiş ve otomatik klasör mantığı */
body.lightbox-open { overflow: hidden; }
.lightbox {
    background: rgba(2, 10, 6, .90) !important;
    padding: 24px 92px !important;
}
.lightbox__figure {
    margin: 0;
    display: grid;
    justify-items: center;
    gap: 12px;
    max-width: min(1120px, 100%);
}
.lightbox img {
    max-width: min(1120px, 100%) !important;
    max-height: 78vh !important;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.04);
}
.lightbox figcaption p,
.lightbox p {
    color: #fff;
    font-weight: 900;
    text-align: center;
    margin: 0;
}
.lightbox__close {
    background: rgba(255,255,255,.94) !important;
    color: var(--green-950) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(135deg, var(--green-800), var(--green-950));
    color: #fff;
    font-size: 46px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2002;
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.lightbox__nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: linear-gradient(135deg, var(--orange), #f97316);
    border-color: rgba(255,255,255,.28);
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav:disabled { opacity: .35; cursor: default; }
@media (max-width: 760px) {
    .lightbox { padding: 18px 14px 84px !important; align-content: center; }
    .lightbox img { max-height: 72vh !important; border-radius: 18px !important; }
    .lightbox__close { width: 44px !important; height: 44px !important; top: 12px !important; right: 12px !important; }
    .lightbox__nav {
        top: auto;
        bottom: 18px;
        transform: none;
        width: 54px;
        height: 54px;
        font-size: 38px;
    }
    .lightbox__nav:hover { transform: scale(1.04); }
    .lightbox__nav--prev { left: calc(50% - 68px); }
    .lightbox__nav--next { right: calc(50% - 68px); }
}

/* V17 - Mobil offcanvas ikon görünürlüğü ve floating kapalıyken tıklama alanı düzeltmesi */
@media (max-width: 860px) {
    .menu-toggle {
        display: inline-grid !important;
        place-items: center !important;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex: 0 0 50px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: linear-gradient(135deg, var(--green-950), var(--green-700)) !important;
        color: #fff !important;
        box-shadow: 0 10px 26px rgba(7, 23, 13, .20) !important;
        z-index: 1302 !important;
        padding: 0 !important;
        cursor: pointer !important;
    }
    .menu-toggle span,
    .menu-toggle em {
        display: none !important;
    }
    .menu-toggle::before {
        content: '☰';
        display: block;
        color: #fff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 28px;
        font-weight: 800;
        line-height: 1;
        transform: translateY(-1px);
    }
    .menu-toggle[aria-expanded="true"]::before {
        content: '×';
        font-size: 34px;
        transform: translateY(-2px);
    }
    .mobile-nav-head strong i,
    .mobile-nav-head button i {
        display: none !important;
    }
    .mobile-nav-head strong::before {
        content: '☰';
        font-size: 20px;
        line-height: 1;
    }
    .mobile-nav-head button::before {
        content: '×';
        color: currentColor;
        font-size: 26px;
        font-weight: 800;
        line-height: 1;
    }
}

.floating-contact {
    pointer-events: none !important;
}
.floating-contact__main {
    pointer-events: auto !important;
}
.floating-contact:not(.is-open) .floating-contact__panel,
.floating-contact:not(.is-open):hover .floating-contact__panel,
.floating-contact:not(.is-open):focus-within .floating-contact__panel {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.floating-contact.is-open {
    pointer-events: auto !important;
}
.floating-contact.is-open .floating-contact__panel {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}
.floating-contact:not(.is-open) .floating-contact__action,
.floating-contact:not(.is-open) .floating-contact__close {
    pointer-events: none !important;
}


/* V18 - Olanak kartı görselleri sayfa linki değil lightbox açar */
.service-card__image {
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: zoom-in;
    text-align: inherit;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}
.service-card__image--lightbox:focus-visible {
    outline: 3px solid rgba(245, 158, 11, .75);
    outline-offset: -3px;
}
.service-card__image--lightbox:hover img {
    transform: scale(1.025);
}
.service-card__image img {
    transition: transform .28s ease;
}
