:root {
    --gold: #C5A059;
    --gold-soft: #d4b57a;
    --ink: #1A1A1A;
    --ink-soft: #2a2a2a;
    --charcoal: #141414;
    --forest: #1a2420;
    --muted: #6b6b6b;
    --line: #e8e4dc;
    --bg: #ffffff;
    --bg-soft: #f7f5f2;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    --radius: 4px;
    --container: 1200px;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Montserrat", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2.5rem));
    margin-inline: auto;
}

.section {
    padding: 5.5rem 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-label {
    display: inline-block;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--ink);
}

.section-text {
    color: var(--muted);
    max-width: 38rem;
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.85rem 1.5rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-soft);
    transform: translateY(-1px);
}

.header-cta {
    min-height: 48px;
    padding: 0.7rem 1.25rem;
    border-radius: 12px;
    line-height: 1;
    position: relative;
    overflow: visible;
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.55);
    animation: ctaPulse 1.8s ease-in-out infinite;
}

.header-cta-phone {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: none;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    animation: phoneGlow 1.8s ease-in-out infinite;
}

.header-cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.45);
    animation: none;
}

.header-cta:hover .header-cta-phone {
    animation: none;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

@keyframes ctaPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.55);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(197, 160, 89, 0);
        transform: scale(1.03);
    }
}

@keyframes phoneGlow {
    0%,
    100% {
        opacity: 1;
        letter-spacing: 0.06em;
    }
    50% {
        opacity: 0.92;
        letter-spacing: 0.08em;
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
    }
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: #000;
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-link {
    background: none;
    border: 0;
    color: var(--ink);
    padding: 0;
    min-height: auto;
    letter-spacing: 0.12em;
}

.btn-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.btn-link:hover::after {
    transform: translateX(4px);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    transition: 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
    background: rgba(20, 20, 20, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 84px;
}

.logo {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    line-height: 0;
}

.logo-img {
    display: block;
    width: auto;
    height: 52px;
    max-width: min(200px, 46vw);
    object-fit: contain;
}

.site-footer .logo-img {
    height: 58px;
    max-width: 220px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 1.35rem;
}

.nav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav a:hover,
.nav a.is-active {
    color: #fff;
    text-shadow: 0 0 18px rgba(197, 160, 89, 0.35);
}

.nav a:hover::after,
.nav a.is-active::after {
    transform: scaleX(1);
}

.nav a.is-active {
    color: var(--gold-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    margin-inline: auto;
    transition: 0.25s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
    background: #0d1210;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(10, 12, 11, 0.72) 0%, rgba(10, 12, 11, 0.35) 55%, rgba(10, 12, 11, 0.25) 100%),
        linear-gradient(180deg, rgba(10, 12, 11, 0.35) 0%, rgba(10, 12, 11, 0.15) 40%, rgba(10, 12, 11, 0.7) 100%);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 0;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-slide.is-active .hero-media {
    animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

.hero-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.28);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-nav:hover {
    background: rgba(197, 160, 89, 0.9);
    border-color: var(--gold);
}

.hero-prev { left: 1.25rem; }
.hero-next { right: 1.25rem; }

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 2.25rem;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    gap: 0.55rem;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dot.is-active,
.hero-dot:hover {
    background: var(--gold);
    transform: scale(1.15);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto 5.5rem;
    max-width: 40rem;
    padding-top: 8rem;
    animation: fadeUp 0.9s ease both;
}

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

.hero-kicker {
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 1.1rem;
}

.hero p {
    margin: 0 0 1.8rem;
    color: rgba(255, 255, 255, 0.84);
    max-width: 28rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.play-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.play-link .play {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.play-link .play::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid var(--white);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

.booking-bar-wrap {
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -3.25rem;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
    box-sizing: border-box;
}

.booking-bar {
    width: 100%;
    max-width: 880px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    color: var(--ink);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 0.9fr) auto;
    gap: 0.65rem;
    align-items: center;
    padding: 0.85rem;
    border: 1px solid rgba(232, 228, 220, 0.9);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    animation: bookingIn 1.1s ease 0.15s both;
}

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

.booking-field {
    min-width: 0;
    padding: 0.65rem 0.9rem;
    background: #f7f5f2;
    border-radius: 12px;
}

.booking-field label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.booking-field input,
.booking-field select {
    width: 100%;
    max-width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0;
    min-width: 0;
}

.booking-bar .btn {
    align-self: stretch;
    white-space: nowrap;
    min-height: 58px;
    border-radius: 12px;
    padding-inline: 1.4rem;
    box-shadow: none;
}

/* Bungalows */
.bungalows-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 1.15fr;
    gap: 1.25rem;
    align-items: stretch;
}

.bungalows-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 1rem;
}

.bungalow-card {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    min-height: 520px;
    color: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bungalow-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.bungalow-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bungalow-card:hover img {
    transform: scale(1.05);
}

.bungalow-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.78) 100%);
}

.bungalow-card-body {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 1.5rem;
}

.bungalow-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 0 0 1rem;
    letter-spacing: 0.08em;
}

.bungalow-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
}

.bungalow-meta span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.bungalow-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

.bungalow-card .btn-link {
    color: var(--white);
}

/* Feature strip */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-item {
    background: var(--forest);
    color: var(--white);
    padding: 1.75rem 1.35rem;
    min-height: 170px;
    transition: transform 0.25s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-item .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.feature-item .icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.feature-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.72);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.85rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.amenity {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.75rem 1.2rem;
    text-align: center;
    transition: 0.25s ease;
}

.amenity:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.amenity .icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 1rem;
    color: var(--gold);
}

.amenity .icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.amenity h3 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
}

.amenity p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Gallery */
.gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-head-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.gallery-slider-nav {
    display: flex;
    gap: 0.45rem;
}

.gallery-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.gallery-nav-btn:hover {
    background: var(--ink);
    color: var(--white);
}

.gallery-slider {
    overflow: hidden;
    position: relative;
}

.gallery-slider-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 calc((100% - 2rem) / 3);
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--ink);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.35rem;
}

.gallery-slider-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: #cfc8bb;
    cursor: pointer;
    transition: 0.2s ease;
}

.gallery-slider-dots button.is-active,
.gallery-slider-dots button:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.gallery-tab {
    min-height: 42px;
    padding: 0.65rem 1.2rem;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}

.gallery-tab:hover,
.gallery-tab.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.gallery-masonry {
    columns: 3;
    column-gap: 0.9rem;
}

.masonry-card {
    break-inside: avoid;
    display: block;
    position: relative;
    margin: 0 0 0.9rem;
    overflow: hidden;
    background: var(--ink);
}

.masonry-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.55s ease;
}

.masonry-meta {
    position: absolute;
    inset: auto 0 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-meta strong {
    font-size: 0.85rem;
}

.masonry-meta small {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.masonry-card:hover img {
    transform: scale(1.04);
}

.masonry-card:hover .masonry-meta {
    opacity: 1;
}

.masonry-card.is-hidden {
    display: none;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(8, 10, 9, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 84vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
    width: 46px;
    height: 46px;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* CTA */
.cta-band {
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 4.5rem 0;
}

.cta-band h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1.5rem;
    font-weight: 600;
}

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-row li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
}

.trust-row svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

/* Footer */
.site-footer {
    background: #0f1211;
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    margin: 1rem 0 0;
    max-width: 18rem;
    font-size: 0.9rem;
}

.footer-brand .socials {
    margin-top: 1.15rem;
}

.site-footer h3 {
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 1.1rem;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.4rem;
    font-size: 0.82rem;
    flex-wrap: wrap;
}

.footer-copy {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.socials {
    display: flex;
    gap: 0.75rem;
}

.socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    transition: 0.2s ease;
}

.socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.socials svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Masaüstü sağ yüzen telefon */
.fab-call-side {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 130;
    display: none;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.fab-call-side__label {
    position: absolute;
    right: 3.6rem;
    background: var(--charcoal);
    color: #fff;
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab-call-side:hover .fab-call-side__label {
    opacity: 1;
    transform: translateX(0);
}

.fab-call-square {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d93025;
    color: #fff;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 14px rgba(217, 48, 37, 0.35);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.fab-call-square svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.fab-call-side:hover .fab-call-square {
    background: #174ea6;
    transform: translateX(-2px);
}

/* Mobil yüzen telefon */
.mobile-phone-fab {
    position: fixed;
    right: 1.25rem;
    bottom: calc(1.25rem + 60px + 12px + env(safe-area-inset-bottom, 0px));
    z-index: 130;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ea4335 0%, #d93025 100%);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(217, 48, 37, 0.45);
    transition: transform 0.2s ease;
    animation: phoneFabPulse 2s ease-in-out infinite;
}

.mobile-phone-fab svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.mobile-phone-fab:hover,
.mobile-phone-fab:active {
    transform: scale(1.08);
    animation: none;
}

@keyframes phoneFabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(217, 48, 37, 0.45); }
    50% { box-shadow: 0 4px 20px rgba(217, 48, 37, 0.45), 0 0 0 10px rgba(217, 48, 37, 0.15); }
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    z-index: 130;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease;
    animation: waFloatPulse 1.8s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    animation: none;
}

.whatsapp-float svg,
.icon-whatsapp {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.socials .icon-whatsapp {
    width: 18px;
    height: 18px;
}

@keyframes waFloatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

@media (min-width: 901px) {
    .fab-call-side {
        display: flex;
    }
}

@media (max-width: 900px) {
    .mobile-phone-fab {
        display: flex;
    }
}

/* Çerez / KVKK banner — site tonları, ince şerit */
#kvkk-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(20, 20, 20, 0.94);
    color: rgba(255, 255, 255, 0.88);
    padding: 0.55rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

#kvkk-bar.show {
    transform: translateY(0);
}

#kvkk-bar[hidden] {
    display: none !important;
}

#kvkk-bar a {
    color: var(--gold-soft);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

#kvkk-bar a:hover {
    color: var(--gold);
}

#kvkk-bar__text {
    flex: 1;
    min-width: min(100%, 18rem);
}

#kvkk-bar__text p {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

#kvkk-bar__text strong {
    color: var(--gold);
    font-weight: 600;
}

#kvkk-bar__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
}

#kvkk-bar__actions > a {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

#kvkk-bar__actions > a:hover {
    color: var(--gold-soft);
}

#kvkk-bar__accept {
    color: var(--charcoal);
    border: 1px solid var(--gold);
    background: var(--gold);
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}

#kvkk-bar__accept:hover {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
}

body.has-cookie-bar .whatsapp-float {
    bottom: calc(3.6rem + env(safe-area-inset-bottom, 0px));
}

body.has-cookie-bar .mobile-phone-fab {
    bottom: calc(3.6rem + 60px + 12px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 680px) {
    #kvkk-bar {
        padding: 0.5rem 0.85rem;
        gap: 0.55rem;
    }

    #kvkk-bar__text p {
        font-size: 0.68rem;
        line-height: 1.4;
    }

    #kvkk-bar__actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.legal-page .legal-content {
    max-width: 48rem;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin: 2rem 0 0.75rem;
}

.legal-content ul {
    padding-left: 1.25rem;
}

.footer-credit {
    margin: 0 0 0 auto;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.footer-credit a {
    color: var(--gold-soft);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom p a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom p a:hover {
    color: var(--gold-soft);
}

/* Page hero */
.page-hero {
    background: var(--forest) center/cover no-repeat;
    color: var(--white);
    padding: 9rem 0 4.5rem;
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 11, 0.55), rgba(10, 12, 11, 0.75));
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: 0 0 0.75rem;
}

.page-hero p {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Content pages */
.content-card,
.info-panel,
.region-card,
.district-chip {
    background: var(--white);
}

.split-contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

.contact-list li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.contact-list strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-list a:hover {
    color: var(--gold);
}

.map-frame {
    width: 100%;
    min-height: 420px;
    border: 0;
    filter: grayscale(0.15) contrast(1.05);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: stretch;
}

.region-card {
    border: 1px solid var(--line);
    padding: 1.6rem;
    transition: 0.25s ease;
    border-radius: 14px;
    background: var(--white);
    height: 100%;
}

.region-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.region-card h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    margin: 0 0 0.45rem;
    line-height: 1.2;
}

.region-card p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.region-meta {
    color: var(--gold);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.districts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.district-chip {
    border: 1px solid var(--line);
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
    transition: 0.2s ease;
}

.district-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.district-picker-section {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}

.sapanca-seo-block .sapanca-seo-text {
    max-width: 820px;
    margin: 0 auto;
}

.sapanca-seo-block h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    margin: 1.75rem 0 0.7rem;
}

.district-picker-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.district-picker-head .section-title {
    margin-bottom: 0.45rem;
}

.district-picker-head .section-text {
    margin: 0;
    max-width: 36rem;
}

.district-picker-count {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.35);
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.district-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.district-pick {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.85rem 0.65rem 0.65rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 72px;
}

.district-pick:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.district-pick-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #eceae6;
    flex-shrink: 0;
}

.district-pick-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.district-pick-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.district-pick-text strong {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.district-pick-text small {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.district-pick-arrow {
    color: var(--gold);
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.district-pick:hover .district-pick-arrow {
    transform: translateX(3px);
}

.seo-content {
    max-width: 760px;
}

.seo-content p {
    color: var(--muted);
    margin: 0 0 1.15rem;
    line-height: 1.75;
}

.seo-content h2 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    margin: 2.25rem 0 0.85rem;
    color: var(--ink);
}

.seo-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--ink);
}

.seo-figure {
    margin: 1.75rem 0 2rem;
}

.seo-figure img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.seo-figure figcaption {
    margin-top: 0.55rem;
    font-size: 0.82rem;
    color: #999;
    letter-spacing: 0.02em;
}

.seo-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.25rem;
}

.seo-side-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.seo-side-card h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.region-card-media {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.region-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
    overflow: hidden;
    background: #eceae6;
}

.region-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.region-card-media:hover .region-card-image img {
    transform: scale(1.04);
}

.region-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1.1rem 1.2rem 1.25rem;
    min-height: 148px;
}

.region-card-body .btn-link {
    margin-top: auto;
}

.regions-grid-all {
    grid-template-columns: repeat(4, 1fr);
}

.districts.regions-grid {
    display: grid;
    margin-top: 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.detail-side {
    border: 1px solid var(--line);
    padding: 1.5rem;
    background: var(--bg-soft);
    position: sticky;
    top: 100px;
}

.detail-side li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}

.detail-side li:last-child {
    border-bottom: 0;
}

.detail-page {
    padding-top: 7.5rem;
}

/* Room detail */
.room-details-section {
    margin-top: 84px;
    padding: 2.75rem 0 4.5rem;
    background: #fff;
}

.room-gallery-stage {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    margin-bottom: 0;
}

.room-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 3.5rem 1.4rem 1.35rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.62) 100%);
    color: #fff;
    pointer-events: none;
}

.room-gallery-caption .room-back,
.room-gallery-caption h1,
.room-gallery-caption p {
    pointer-events: auto;
}

.room-gallery-caption .room-back {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.2s ease;
}

.room-gallery-caption .room-back:hover {
    color: var(--gold);
}

.room-gallery-caption h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.4vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: #fff;
}

.room-gallery-caption p {
    margin: 0.4rem 0 0;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
}

.room-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.9fr);
    gap: 2.25rem;
    align-items: start;
}

.room-main,
.room-side,
.room-gallery {
    min-width: 0;
    max-width: 100%;
}

.room-gallery .slider-for,
.room-gallery .slider-nav,
.room-gallery .slick-slider {
    max-width: 100%;
}

.room-gallery .slider-for {
    position: relative;
    width: 100%;
    margin: 0;
}

.room-gallery .slider-for .slick-list,
.room-gallery .slider-for .slick-track {
    height: 460px !important;
}

.room-gallery .slider-for .slick-list {
    overflow: hidden;
    border-radius: 0;
}

.room-gallery .slider-for .slick-slide {
    height: 460px !important;
    float: left;
}

.room-gallery .slider-nav {
    width: 100%;
    margin: 8px 0 1.5rem;
}

.room-gallery .slider-nav .slick-list {
    margin: 0 -4px;
}

.room-gallery .slick-slide {
    outline: none;
}

.room-gallery .slider-for .gallery-img {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    line-height: 0;
}

.room-gallery .slider-for img {
    width: 100%;
    max-width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.room-gallery-thumb {
    padding: 0 4px;
    cursor: pointer;
}

.room-gallery-thumb img {
    width: 100%;
    max-width: 100%;
    height: 86px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: 0.2s ease;
}

.room-gallery .slider-nav .slick-current .room-gallery-thumb img,
.room-gallery-thumb:hover img {
    opacity: 1;
    border-color: var(--gold);
}

.room-gallery .slick-prev,
.room-gallery .slick-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.62);
    color: #fff;
    font-size: 0;
    cursor: pointer;
    transition: 0.2s ease;
}

.room-gallery .slick-prev:hover,
.room-gallery .slick-next:hover {
    background: var(--gold);
}

.room-gallery .slick-prev { left: 14px; }
.room-gallery .slick-next { right: 14px; }

.room-gallery .slick-prev::before,
.room-gallery .slick-next::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    font-size: 28px;
    line-height: 46px;
    text-align: center;
    color: #fff;
}

.room-gallery .slick-prev::before { content: "‹"; }
.room-gallery .slick-next::before { content: "›"; }

/* Magnific popup üstte kalsın */
.mfp-bg,
.mfp-wrap {
    z-index: 10000 !important;
}

.mfp-title {
    font-family: var(--font-sans);
    font-size: 0.9rem !important;
}

.mfp-counter {
    font-family: var(--font-sans);
    font-size: 0.9rem !important;
}

.hotels-bat-listing {
    list-style: none;
    margin: 1.5rem 0 1.4rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #bdbdbd;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.hotels-bat-listing li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #222;
    position: relative;
    padding-right: 1.5rem;
}

.hotels-bat-listing li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: #eee;
}

.hotels-bat-listing svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.room-text p {
    margin: 0 0 0.85rem;
    color: #444;
    line-height: 1.7;
    font-size: 0.98rem;
}

.room-text strong {
    color: #111;
}

.room-inner-heading,
.lh-room-inner-heading {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #e3e1e1;
    padding-bottom: 0.65rem;
}

.room-amenities {
    padding-top: 1.5rem;
}

.room-amenities ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.room-amenities li {
    width: 33.33%;
    padding: 0 0.75rem 0.7rem 0;
    font-size: 0.95rem;
    color: #444;
    box-sizing: border-box;
}

.room-amenities li code {
    font-family: inherit;
    font-size: 1.05rem;
    color: var(--gold);
    padding-right: 0.35rem;
}

.room-other-link {
    margin-top: 1.5rem;
}

.room-other-link a {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.92rem;
}

.room-other-link a:hover {
    text-decoration: underline;
}

.lh-side-room {
    background: #fff;
    border: 1px solid #e3e1e1;
    border-radius: 15px;
    position: sticky;
    top: 100px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.lh-side-room .lh-room-inner-heading {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e3e1e1;
    font-size: 1.15rem;
}

.lh-side-reservation {
    padding: 1rem 1.5rem 1.5rem;
}

.room-side-note {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.55;
}

.lh-side-reservation-from {
    margin-bottom: 0.95rem;
}

.lh-side-reservation-from label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    color: #666;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.reservation-form-control {
    outline: none;
    height: 50px;
    width: 100%;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #d8d8d8;
    padding: 0 0.9rem;
    font-size: 0.95rem;
    color: #222;
    box-sizing: border-box;
}

.reservation-form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.room-form-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.lh-buttons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.55rem 1.4rem;
    border-radius: 12px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: 0.25s ease;
}

.lh-buttons:hover {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
    color: #fff;
}

.lh-buttons-full {
    width: 100%;
}

.room-content {
    margin-top: 0.5rem;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.85;
}

.lightbox-count {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .bungalows-layout,
    .amenities-grid,
    .feature-strip,
    .footer-grid,
    .regions-grid,
    .regions-grid-all {
        grid-template-columns: repeat(2, 1fr);
    }

    .district-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-figure img {
        height: 260px;
    }

    .gallery-slide {
        flex: 0 0 calc((100% - 1rem) / 2);
    }

    .gallery-masonry {
        columns: 2;
    }

    .bungalows-intro {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .booking-bar {
        grid-template-columns: 1fr 1fr;
    }

    .booking-bar .btn {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 52px;
    }
}

@media (max-width: 900px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        min-height: 72px;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 120;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1.25rem 1.25rem;
        background: rgba(15, 18, 17, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav a {
        padding: 0.95rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.8rem;
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .header-actions {
        margin-left: auto;
    }

    .header-actions .header-cta {
        min-height: 42px;
        padding: 0.45rem 0.75rem;
        border-radius: 10px;
    }

    .header-cta-phone {
        font-size: 0.9rem;
        letter-spacing: 0.03em;
    }

    body.nav-open {
        overflow: hidden;
    }

    .about-grid,
    .split-contact,
    .detail-grid,
    .gallery-head,
    .detail-top {
        grid-template-columns: 1fr;
        display: grid;
    }

    .room-layout {
        grid-template-columns: 1fr;
    }

    .lh-side-room {
        position: static;
    }

    .room-gallery .slider-for .slick-list,
    .room-gallery .slider-for .slick-track,
    .room-gallery .slider-for .slick-slide,
    .room-gallery .slider-for img {
        height: 280px !important;
    }

    .room-gallery-thumb img {
        height: 68px;
    }

    .room-amenities li {
        width: 100%;
    }

    .hotels-bat-listing li {
        padding-right: 0;
    }

    .hotels-bat-listing li::after {
        display: none;
    }

    .room-form-split {
        grid-template-columns: 1fr;
    }

    .room-details-section {
        margin-top: 72px;
        padding-top: 1.75rem;
    }

    .room-gallery-caption {
        padding: 2.75rem 1rem 1.1rem;
    }

    .about-media img {
        height: 380px;
    }

    .hero-content {
        margin-bottom: 3.5rem;
    }

    .booking-bar-wrap {
        margin-top: -2rem;
    }

    .district-picker-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .district-picker {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .bungalows-layout,
    .amenities-grid,
    .feature-strip,
    .footer-grid,
    .regions-grid,
    .regions-grid-all {
        grid-template-columns: 1fr;
    }

    .seo-figure img {
        height: 220px;
    }

    .detail-side {
        position: static;
    }

    .booking-bar-wrap {
        margin-top: 0;
        padding: 1rem 1rem 0;
        background: var(--bg);
    }

    .booking-bar {
        grid-template-columns: 1fr;
        max-width: none;
        border-radius: 16px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
        padding: 0.75rem;
    }

    .gallery-slide {
        flex: 0 0 100%;
    }

    .gallery-slider-track {
        gap: 0;
    }

    .gallery-head-actions {
        width: 100%;
        justify-content: space-between;
    }

    .gallery-masonry {
        columns: 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-credit {
        white-space: normal;
        margin-left: 0;
    }

    .footer-brand .socials {
        justify-content: flex-start;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-content {
        margin-bottom: 2.5rem;
    }

    .hero-nav {
        display: none;
    }

    .hero-dots {
        bottom: 1.5rem;
    }
}
