/* Adrasan Bungalov - Frontend */
:root {
    --green-950: #031918;
    --green-900: #062421;
    --green-850: #082b27;
    --green-800: #0c352f;
    --gold-700: #a76d2d;
    --gold-600: #c98841;
    --gold-500: #d8a15e;
    --gold-300: #efd0a4;
    --ivory-100: #fffaf2;
    --ivory-200: #f7efe4;
    --stone-700: #3e3a34;
    --stone-500: #716a61;
    --white: #ffffff;
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, .28);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, .18);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1168px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1d1a16;
    background: var(--ivory-100);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

img {
    object-fit: cover;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.narrow {
    max-width: 880px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    transform: translateY(-140%);
    z-index: 1000;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--gold-500);
    color: #16110b;
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-500);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: .75;
}

.icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    color: var(--white);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
    background: rgba(3, 25, 24, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .25);
}

.header-inner {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 148px;
}

.brand img {
    width: 150px;
    height: 70px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 42px);
    margin-left: auto;
    margin-right: auto;
}

.main-nav a {
    position: relative;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .94;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--gold-500);
    transition: transform .2s ease;
}

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

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

.menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: rgba(4, 25, 23, .32);
    color: var(--white);
}

.menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .035em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-small {
    min-height: 44px;
    padding-inline: 20px;
    font-size: .74rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
    color: #21160d;
    box-shadow: 0 16px 35px rgba(201, 136, 65, .28);
}

.btn-light {
    background: var(--white);
    color: #20150d;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.btn-outline-gold {
    border: 1px solid rgba(216, 161, 94, .8);
    color: var(--white);
    background: rgba(216, 161, 94, .06);
}

.btn-outline-dark {
    border: 1px solid rgba(167, 109, 45, .5);
    color: var(--green-900);
    background: rgba(216, 161, 94, .08);
}

/* Hero */
.hero {
    position: relative;
    min-height: 780px;
    padding: 120px 0 78px;
    color: var(--white);
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 45%, rgba(216, 161, 94, .12), transparent 32%),
        linear-gradient(90deg, rgba(2, 12, 16, .86) 0%, rgba(2, 12, 16, .55) 42%, rgba(2, 12, 16, .18) 100%),
        linear-gradient(180deg, rgba(2, 12, 16, .28) 0%, rgba(2, 12, 16, .2) 68%, rgba(2, 12, 16, .82) 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    background: linear-gradient(180deg, transparent, rgba(255, 250, 242, .03) 35%, var(--ivory-100));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 545px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: center;
    gap: 40px;
}

.hero-copy {
    max-width: 650px;
}

.hero-copy h1,
.section-copy h2,
.footer-cta-copy h2,
.inner-hero h1,
.compact-booking-card h2,
.contact-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.055em;
}

.hero-copy h1 {
    margin: 14px 0 18px;
    max-width: 580px;
    font-size: clamp(3rem, 5.7vw, 5.45rem);
    line-height: .96;
    letter-spacing: -.045em;
    font-weight: 400;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.play-dot {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
}

.hero-slider {
    margin-top: 68px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.hero-slider strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.8rem;
    font-weight: 400;
}

.slider-arrows {
    display: inline-flex;
    gap: 10px;
}

.slider-arrows span,
.slider-arrows button {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: inherit;
    transition: background .2s ease, opacity .2s ease, transform .2s ease;
}

.slider-arrows button:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

.slider-arrows button:disabled {
    opacity: .45;
    cursor: default;
    transform: none;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
    transition: opacity .22s ease, transform .22s ease;
}

.hero.is-changing .hero-copy h1,
.hero.is-changing .hero-copy p,
.hero.is-changing .hero-copy .eyebrow {
    opacity: .52;
    transform: translateY(4px);
}
.hero-single .hero-copy {
    max-width: 590px;
}

.hero-single .hero-actions {
    margin-bottom: 56px;
}


.hero-info-card {
    align-self: center;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    background: rgba(11, 21, 19, .64);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
}

.hero-info-row {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero-info-row:first-child {
    padding-top: 4px;
}

.hero-info-row:last-child {
    border-bottom: 0;
    padding-bottom: 4px;
}

.hero-info-row svg {
    color: var(--gold-300);
}

.hero-info-row span,
.hero-info-row small {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-size: .78rem;
}

.hero-info-row strong {
    display: block;
    margin: 2px 0;
    font-size: 1.05rem;
}

.booking-shell {
    position: relative;
    z-index: 4;
    margin-bottom: -42px;
}

.booking-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 20px;
    background: var(--white);
    color: #16110d;
    box-shadow: var(--shadow-lg);
}

.booking-field {
    position: relative;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    border-right: 1px solid rgba(22, 17, 13, .16);
}

.booking-field label {
    margin-bottom: 8px;
    color: var(--stone-500);
    font-size: .78rem;
    font-weight: 700;
}

.booking-field input,
.booking-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #16110d;
    font-weight: 900;
}

.booking-submit {
    align-self: center;
    min-height: 60px;
    border-radius: 12px;
    white-space: nowrap;
}

/* Intro */
.intro-section {
    padding: 112px 0 64px;
    background:
        radial-gradient(circle at 18% 18%, rgba(216, 161, 94, .08), transparent 26%),
        var(--ivory-100);
}

.intro-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 58px;
    align-items: start;
}

.section-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(2.1rem, 4vw, 3.75rem);
    line-height: 1.02;
    color: #181510;
}

.section-copy p {
    max-width: 340px;
    color: var(--stone-500);
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--gold-700);
    font-weight: 900;
    text-transform: uppercase;
    font-size: .8rem;
}

.text-link svg {
    width: 17px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 178px;
    padding: 0 18px;
    border-right: 1px solid rgba(167, 109, 45, .14);
    text-align: center;
}

.feature-icon {
    width: 76px;
    height: 76px;
    display: inline-grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(167, 109, 45, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    color: #20150d;
}

.feature-card h3 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-card p {
    margin: 0;
    color: var(--stone-500);
    font-size: .88rem;
    line-height: 1.62;
}

/* Dark showcase */
.section-dark {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 86% 10%, rgba(216, 161, 94, .14), transparent 22%),
        radial-gradient(circle at 14% 88%, rgba(19, 107, 95, .28), transparent 30%),
        var(--green-950);
    overflow: hidden;
}

.section-dark::before,
.site-footer::before,
.section-dark-soft::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(216, 161, 94, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 161, 94, .07) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .07;
    pointer-events: none;
}

.bungalow-showcase {
    padding: 104px 0 72px;
}

.showcase-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 54px;
    align-items: center;
}

.section-copy-dark h2 {
    color: var(--white);
}

.section-copy-dark p {
    color: rgba(255, 255, 255, .72);
}

.bungalow-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.bungalow-card,
.listing-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 161, 94, .62);
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .24);
}

.bungalow-card img {
    width: 100%;
    aspect-ratio: 1.34 / 1;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 18px;
    padding: 9px 15px;
    border-radius: 0 0 12px 12px;
    background: var(--gold-300);
    color: #1d140b;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bungalow-card-body {
    position: relative;
    padding: 18px 18px 20px;
    background: linear-gradient(180deg, rgba(2, 18, 17, .18), rgba(2, 18, 17, .88));
}

.bungalow-card h3,
.listing-card h2 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 500;
}

.bungalow-card p,
.listing-card p {
    min-height: 42px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    line-height: 1.55;
}

.specs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    color: rgba(255, 255, 255, .76);
    font-size: .78rem;
}

.specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.specs svg {
    width: 16px;
    height: 16px;
    color: var(--gold-500);
}

.round-cta {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold-500);
    border-radius: 50%;
    background: rgba(216, 161, 94, .08);
    color: var(--gold-300);
}

/* Experiences */
.experiences-section {
    padding: 70px 0;
    background: var(--ivory-100);
}

.experiences-grid {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.experience-card {
    position: relative;
    min-height: 235px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 16px;
    background: var(--green-900);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

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

.experience-card > span {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .78));
}

.experience-card > div {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.experience-card h3,
.experience-card h2 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.experience-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: .84rem;
    line-height: 1.55;
}

/* Gallery strip */
.section-dark-soft {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b2c27, #041918);
    color: var(--white);
}

.gallery-strip {
    padding: 42px 0;
}

.gallery-strip-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.gallery-copy h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.1;
}

.gallery-copy a {
    color: rgba(255, 255, 255, .8);
    font-size: .94rem;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(90px, 1fr));
    gap: 12px;
}

.gallery-row img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 10px;
    object-fit: cover;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 22% 45%, rgba(216, 161, 94, .1), transparent 25%),
        var(--green-950);
}

.footer-cta {
    padding: 62px 0 48px;
    border-top: 1px solid rgba(216, 161, 94, .14);
    border-bottom: 1px solid rgba(216, 161, 94, .14);
}

.footer-cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 250px minmax(260px, 1fr) 460px;
    gap: 28px;
    align-items: center;
}

.footer-cta-copy h2 {
    margin: 12px 0 24px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    color: var(--white);
}

.footer-map-card {
    min-height: 235px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(216, 161, 94, .18);
    border-radius: 20px;
    background: rgba(255, 255, 255, .035);
}

.footer-map-card img {
    width: 100%;
    height: 100%;
    min-height: 235px;
    object-fit: cover;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-tile {
    min-height: 98px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    transition: transform .2s ease, border-color .2s ease;
}

.contact-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 161, 94, .5);
}

.contact-tile svg {
    grid-row: span 2;
    color: var(--gold-300);
}

.contact-tile span {
    color: rgba(255, 255, 255, .7);
    font-size: .76rem;
    font-weight: 800;
}

.contact-tile strong {
    font-size: .88rem;
    line-height: 1.45;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 24px 0 18px;
}

.footer-bottom-inner {
    display: grid;
    grid-template-columns: 155px 1fr auto;
    gap: 28px;
    align-items: center;
}

.footer-brand img {
    width: 142px;
    height: 58px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    font-weight: 900;
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
}

/* Inner pages */
.inner-hero {
    position: relative;
    min-height: 420px;
    display: grid;
    align-items: end;
    padding: 142px 0 70px;
    color: var(--white);
    background-image: var(--inner-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 12, 16, .86), rgba(2, 12, 16, .42)),
        linear-gradient(180deg, rgba(2, 12, 16, .32), rgba(2, 12, 16, .83));
}

.inner-hero-content {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: .94;
}

.inner-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.page-content {
    padding: 56px 0 10px;
    background: var(--ivory-100);
}

.rich-text {
    color: #241f18;
    font-size: 1.08rem;
    line-height: 1.86;
}

.rich-text p:first-child {
    margin-top: 0;
}

.rich-text h2,
.rich-text h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.compact-booking-section {
    padding: 42px 0 72px;
}

.compact-booking-card {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.compact-booking-card h2 {
    margin: 10px 0 8px;
    font-size: 2.25rem;
    line-height: 1.04;
}

.compact-booking-card p {
    margin: 0;
    color: var(--stone-500);
    line-height: 1.6;
}

.booking-bar.compact {
    box-shadow: none;
    padding: 0;
    border: 1px solid rgba(167, 109, 45, .16);
}

.listing-section {
    padding: 42px 0 72px;
    background: var(--ivory-100);
}

.listing-grid {
    display: grid;
    gap: 24px;
}

.listing-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.listing-card {
    border-color: rgba(167, 109, 45, .22);
    background: var(--white);
    color: #201a13;
}

.listing-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
}

.listing-card-body {
    padding: 22px;
}

.listing-card p {
    min-height: 0;
    color: var(--stone-500);
}

.listing-card .specs {
    color: var(--stone-500);
    margin-bottom: 20px;
}

.page-experience-card {
    min-height: 330px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 16px;
}

.gallery-tile {
    position: relative;
    min-height: 210px;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--green-900);
    box-shadow: var(--shadow-md);
}

.gallery-tile.wide {
    grid-column: span 2;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.gallery-tile figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(2, 18, 17, .62);
    color: var(--white);
    font-size: .84rem;
    backdrop-filter: blur(10px);
}

.contact-page-section {
    padding: 64px 0 84px;
    background: var(--ivory-100);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 36px;
    align-items: start;
}

.contact-panel,
.contact-form {
    padding: 30px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-panel h2 {
    margin: 10px 0;
    font-size: 3rem;
    line-height: 1.02;
}

.contact-panel p {
    color: var(--stone-500);
    line-height: 1.7;
}

.contact-page-cards {
    margin-top: 24px;
}

.contact-page-cards .contact-tile {
    border-color: rgba(167, 109, 45, .16);
    color: #201a13;
    background: rgba(216, 161, 94, .04);
}

.contact-page-cards .contact-tile span {
    color: var(--stone-500);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--stone-500);
    font-size: .86rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(167, 109, 45, .24);
    border-radius: 14px;
    padding: 14px 15px;
    outline: 0;
    background: var(--ivory-100);
    color: #201a13;
}

.contact-form textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: none;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #25d366;
    color: #06210f;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

/* Responsive */
@media (max-width: 1100px) {
    .main-nav {
        gap: 18px;
    }

    .feature-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .showcase-grid,
    .experiences-grid,
    .intro-grid,
    .footer-cta-grid,
    .compact-booking-card,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .section-copy p {
        max-width: 620px;
    }

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

    .footer-cta-grid {
        align-items: stretch;
    }

    .booking-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .booking-field {
        border: 1px solid rgba(22, 17, 13, .12);
        border-radius: 14px;
    }

    .booking-submit,
    .booking-bar .btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 920px) {
    .header-inner {
        height: 78px;
    }

    .brand img {
        width: 128px;
        height: 58px;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid rgba(216, 161, 94, .18);
        border-radius: 20px;
        background: rgba(3, 25, 24, .96);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 15px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

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

    .hero {
        min-height: 0;
        padding-top: 98px;
        background-image: var(--hero-mobile-bg);
    }

    .hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 12vw, 4.3rem);
        line-height: 1;
    }

    .hero-info-card {
        max-width: 460px;
    }

    .hero-slider {
        margin-top: 42px;
    }

    .booking-shell {
        margin-bottom: 0;
    }

    .intro-section {
        padding-top: 58px;
    }

    .bungalow-cards,
    .experience-cards,
    .listing-grid.three,
    .listing-grid.four,
    .masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-row {
        grid-template-columns: repeat(4, minmax(90px, 1fr));
    }

    .gallery-strip-grid,
    .footer-bottom-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-self: center;
    }

    .social-links {
        justify-content: center;
    }

    .copyright {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .hero {
        padding-bottom: 34px;
    }

    .hero-copy h1 {
        margin-top: 12px;
        font-size: clamp(2.45rem, 13vw, 3.65rem);
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-actions .video-link {
        width: 100%;
        justify-content: center;
    }

    .hero-slider {
        justify-content: space-between;
    }

    .hero-info-card {
        padding: 18px;
    }

    .booking-bar,
    .booking-bar.compact {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .booking-field {
        min-height: 64px;
        padding-inline: 16px;
    }

    .intro-section,
    .bungalow-showcase,
    .experiences-section,
    .listing-section,
    .contact-page-section {
        padding-block: 48px;
    }

    .feature-row,
    .bungalow-cards,
    .experience-cards,
    .listing-grid.three,
    .listing-grid.four,
    .masonry-grid,
    .footer-contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
        padding: 18px;
        border: 1px solid rgba(167, 109, 45, .12);
        border-radius: 16px;
        background: rgba(255, 255, 255, .5);
    }

    .showcase-grid,
    .experiences-grid {
        gap: 26px;
    }

    .gallery-strip-grid {
        gap: 18px;
    }

    .gallery-row {
        display: flex;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .gallery-row img {
        min-width: 160px;
        scroll-snap-align: start;
    }

    .footer-cta-copy h2,
    .contact-panel h2 {
        font-size: 2.35rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .inner-hero {
        min-height: 350px;
        padding-top: 120px;
    }

    .gallery-tile.wide {
        grid-column: auto;
    }

    .floating-whatsapp {
        display: inline-flex;
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}


/* === ACIL TEK HERO V4 OVERRIDE - retained ===
   Eski index.php veya cache kalıntısı gelse bile hero slider, video butonu ve
   "Sıra dışı detaylar" avantaj bölümü görünmez.
*/
.hero-slider,
.hero-counter,
.hero-controls,
.hero-slide-counter,
.hero-slide-controls,
.slider-arrows,
.video-link,
.play-dot,
[data-hero-slider],
[data-hero-prev],
[data-hero-next],
[data-video-link],
[data-video-open] {
    display: none !important;
}

.intro-section,
.home-features,
.features-section,
.feature-section,
.details-section,
.advantages-section,
.feature-row,
.feature-card {
    display: none !important;
}

.hero-copy h1 {
    max-width: 520px !important;
    font-size: clamp(2.45rem, 4.65vw, 4.35rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -.035em !important;
    font-weight: 400 !important;
}

.hero-copy p {
    max-width: 520px !important;
    font-size: clamp(.95rem, 1.12vw, 1.08rem) !important;
    line-height: 1.72 !important;
}

.hero.hero-single .hero-actions {
    margin-top: 26px !important;
}

@media (max-width: 760px) {
    .hero-copy h1 {
        max-width: 92vw !important;
        font-size: clamp(2.15rem, 10vw, 3.05rem) !important;
        line-height: 1.05 !important;
    }

    .hero-copy p {
        font-size: .96rem !important;
    }

    .hero.hero-single .hero-actions {
        margin-top: 20px !important;
    }
}



/* === HERO REAL IMG V5 - KESIN GORSEL DUZELTME ===
   Hero arka planı artık sadece CSS background değil, gerçek <img> etiketiyle çalışır.
*/
.hero.hero-single {
    position: relative !important;
    overflow: hidden !important;
    background: #031918 !important;
    background-image: none !important;
}

.hero.hero-single .hero-media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    background: #031918 !important;
}

.hero.hero-single .hero-media img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
}

.hero.hero-single .hero-overlay {
    z-index: 1 !important;
}

.hero.hero-single::after {
    z-index: 2 !important;
}

.hero.hero-single .hero-grid {
    position: relative !important;
    z-index: 3 !important;
}

.hero.hero-single .booking-shell {
    position: relative !important;
    z-index: 5 !important;
}

.hero.hero-single .hero-copy h1 {
    max-width: 520px !important;
    font-size: clamp(2.35rem, 4.25vw, 4.15rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -.035em !important;
    font-weight: 400 !important;
}

.hero.hero-single .hero-copy p {
    max-width: 520px !important;
    font-size: clamp(.95rem, 1.08vw, 1.05rem) !important;
    line-height: 1.72 !important;
}

@media (max-width: 760px) {
    .hero.hero-single .hero-copy h1 {
        max-width: 92vw !important;
        font-size: clamp(2.05rem, 9.4vw, 2.85rem) !important;
        line-height: 1.07 !important;
    }
}


/* === Bungalov Detay Sayfası ve Kart Girişleri === */
.card-image-link {
    display: block;
    overflow: hidden;
}

.card-image-link img {
    transition: transform .28s ease;
}

.bungalow-card:hover .card-image-link img,
.listing-card:hover .card-image-link img {
    transform: scale(1.035);
}

.bungalow-card h3 a,
.listing-card h2 a {
    display: inline;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size .2s ease;
}

.bungalow-card h3 a:hover,
.listing-card h2 a:hover {
    background-size: 100% 1px;
}

.listing-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.listing-card-actions .btn {
    min-height: 46px;
    padding-inline: 16px;
    font-size: .74rem;
}

.bungalow-detail-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 82px;
    color: var(--white);
    background: var(--green-950);
    overflow: hidden;
}

.bungalow-detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bungalow-detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bungalow-detail-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 25, 24, .9), rgba(3, 25, 24, .48), rgba(3, 25, 24, .62)),
        linear-gradient(180deg, rgba(3, 25, 24, .32), rgba(3, 25, 24, .86));
}

.bungalow-detail-head {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .9);
    font-weight: 800;
    font-size: .82rem;
}

.bungalow-detail-head h1 {
    margin: 14px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: .92;
    letter-spacing: -.05em;
    font-weight: 500;
}

.bungalow-detail-head p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.bungalow-detail-section {
    padding: 74px 0 42px;
    background: var(--ivory-100);
}

.bungalow-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) 380px;
    gap: 30px;
    align-items: start;
}

.bungalow-detail-gallery {
    display: grid;
    gap: 16px;
}

.detail-main-image {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: var(--green-900);
    box-shadow: var(--shadow-lg);
}

.detail-main-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.detail-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.detail-thumbs button {
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0;
    background: transparent;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.detail-thumbs button.is-active {
    border-color: var(--gold-600);
}

.detail-thumbs img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
}

.detail-empty-gallery {
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px dashed rgba(167, 109, 45, .38);
    border-radius: 18px;
    background: #fff;
    color: var(--stone-500);
}

.detail-empty-gallery strong {
    color: var(--green-900);
}

.detail-reservation-card {
    position: sticky;
    top: 112px;
    padding: 26px;
    border: 1px solid rgba(167, 109, 45, .2);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.card-badge.static {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
    border-radius: 999px;
}

.detail-reservation-card h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 500;
}

.detail-reservation-card p {
    margin: 0 0 18px;
    color: var(--stone-500);
    line-height: 1.62;
}

.detail-spec-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 20px;
}

.detail-spec-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--ivory-200);
    color: var(--green-900);
    font-weight: 800;
}

.detail-spec-list svg {
    width: 18px;
    height: 18px;
    color: var(--gold-700);
}

.detail-booking-form {
    display: grid;
    gap: 12px;
}

.detail-booking-form label {
    display: grid;
    gap: 7px;
    color: var(--stone-500);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.detail-booking-form input,
.detail-booking-form select {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(167, 109, 45, .18);
    border-radius: 14px;
    padding: 0 14px;
    background: #fffaf4;
    color: #201a13;
}

.bungalow-detail-content {
    padding: 34px 0 84px;
    background: var(--ivory-100);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.detail-text-card,
.detail-feature-card {
    border: 1px solid rgba(167, 109, 45, .16);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.detail-text-card {
    padding: 30px;
}

.detail-text-card h2 {
    margin: 12px 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.15rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 500;
}

.detail-text-card .rich-text {
    color: var(--stone-700);
}

.detail-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.detail-feature-card {
    min-height: 180px;
    padding: 22px;
}

.detail-feature-card svg {
    width: 28px;
    height: 28px;
    color: var(--gold-700);
}

.detail-feature-card h3 {
    margin: 18px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    font-weight: 500;
}

.detail-feature-card p {
    margin: 0;
    color: var(--stone-500);
    line-height: 1.62;
    font-size: .92rem;
}

@media (max-width: 980px) {
    .bungalow-detail-layout,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .detail-reservation-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    .listing-card-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bungalow-detail-hero {
        min-height: 520px;
        padding: 130px 0 56px;
    }

    .bungalow-detail-head h1 {
        font-size: clamp(2.65rem, 15vw, 4.4rem);
    }

    .detail-hero-actions .btn {
        width: 100%;
    }

    .bungalow-detail-section,
    .bungalow-detail-content {
        padding-block: 42px;
    }

    .detail-main-image img {
        aspect-ratio: 1.05 / 1;
    }

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

    .detail-reservation-card,
    .detail-text-card {
        padding: 20px;
        border-radius: 22px;
    }

    .detail-feature-grid {
        grid-template-columns: 1fr;
    }
}


/* === HERO MOBILE CROPLESS V6 ===
   Mobilde bungalov görseli kadraj dışına taşmasın diye "contain + flu dolgu" modu eklendi.
   Değerler admin panelde hero.mobile_fit / hero.mobile_position alanlarından değiştirilebilir.
*/
.hero.hero-single .hero-media {
    overflow: hidden !important;
}

.hero.hero-single .hero-media img {
    object-position: var(--hero-desktop-position, center center) !important;
}

@media (max-width: 760px) {
    .hero.hero-single {
        min-height: 920px !important;
        padding-top: 112px !important;
        padding-bottom: 28px !important;
    }

    .hero.hero-single .hero-media::before {
        content: "" !important;
        position: absolute !important;
        inset: -24px !important;
        z-index: 0 !important;
        background-image: var(--hero-mobile-bg) !important;
        background-size: cover !important;
        background-position: var(--hero-mobile-position, center center) !important;
        filter: blur(18px) !important;
        transform: scale(1.08) !important;
        opacity: .72 !important;
    }

    .hero.hero-single .hero-media img {
        position: relative !important;
        z-index: 1 !important;
        object-fit: var(--hero-mobile-fit, contain) !important;
        object-position: var(--hero-mobile-position, center center) !important;
        background: transparent !important;
    }

    .hero.hero-single .hero-grid {
        gap: 20px !important;
        padding-bottom: 22px !important;
    }

    .hero.hero-single .hero-copy h1 {
        max-width: 92vw !important;
        font-size: clamp(1.85rem, 8.25vw, 2.46rem) !important;
        line-height: 1.08 !important;
    }

    .hero.hero-single .hero-copy p {
        max-width: 92vw !important;
        font-size: .94rem !important;
        line-height: 1.65 !important;
    }

    .hero.hero-single .hero-actions {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
    }

    .hero.hero-single .hero-actions .btn {
        width: 100% !important;
        min-height: 58px !important;
        justify-content: center !important;
    }

    .hero.hero-single .hero-info-card {
        max-width: 100% !important;
        padding: 16px 18px !important;
        border-radius: 24px !important;
    }

    .hero.hero-single .hero-info-row {
        grid-template-columns: 30px 1fr !important;
        gap: 12px !important;
        padding: 12px 0 !important;
    }

    .hero.hero-single .hero-info-row strong {
        font-size: 1rem !important;
    }
}


/* === HERO NO INFO CARDS V7 ===
   Hero üzerindeki Konum / Mevsim / Deniz / Atmosfer bilgi kartları kaldırıldı.
   Görsel mobilde bu kartlarla kapanmaz.
*/
.hero.hero-single .hero-info-card,
.hero.hero-single .hero-info-row,
.hero-info-card,
.hero-info-row,
[aria-label="Adrasan Bungalov kısa bilgiler"] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.hero.hero-single .hero-grid {
    grid-template-columns: minmax(0, 650px) !important;
    justify-content: start !important;
}

@media (max-width: 760px) {
    .hero.hero-single {
        min-height: 760px !important;
        padding-top: 112px !important;
        padding-bottom: 28px !important;
    }

    .hero.hero-single .hero-grid {
        grid-template-columns: 1fr !important;
        align-content: center !important;
        min-height: 430px !important;
    }
}

/* === HERO MOBILE NO BLUR V8 ===
   Mobil hero üstündeki flu/blur dolgu kaldırıldı.
   Mobilde görsel tek parça, net ve alanı kaplayan gerçek IMG olarak gösterilir.
*/
@media (max-width: 760px) {
    .hero.hero-single {
        min-height: 730px !important;
        padding-top: 104px !important;
        padding-bottom: 26px !important;
        background: #031918 !important;
        background-image: none !important;
    }

    .hero.hero-single .hero-media {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        background: #031918 !important;
    }

    .hero.hero-single .hero-media::before,
    .hero.hero-single .hero-media::after {
        content: none !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        filter: none !important;
        transform: none !important;
        background: none !important;
    }

    .hero.hero-single .hero-media img,
    .hero.hero-single picture.hero-media img,
    .hero.hero-single [data-hero-real-image] {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center bottom !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        background: #031918 !important;
    }

    .hero.hero-single .hero-overlay {
        z-index: 1 !important;
        background:
            linear-gradient(180deg, rgba(2, 12, 16, .50) 0%, rgba(2, 12, 16, .24) 28%, rgba(2, 12, 16, .42) 68%, rgba(2, 12, 16, .86) 100%),
            linear-gradient(90deg, rgba(2, 12, 16, .58) 0%, rgba(2, 12, 16, .30) 58%, rgba(2, 12, 16, .22) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .hero.hero-single::after {
        height: 92px !important;
        z-index: 2 !important;
        background: linear-gradient(180deg, transparent 0%, rgba(255, 250, 242, .10) 42%, var(--ivory-100) 100%) !important;
    }

    .hero.hero-single .hero-grid {
        position: relative !important;
        z-index: 3 !important;
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        align-content: start !important;
        align-items: start !important;
        padding-top: 74px !important;
        padding-bottom: 18px !important;
        gap: 0 !important;
    }

    .hero.hero-single .hero-copy {
        max-width: 100% !important;
    }

    .hero.hero-single .hero-copy .eyebrow {
        font-size: .72rem !important;
        letter-spacing: .14em !important;
    }

    .hero.hero-single .hero-copy h1 {
        max-width: 92vw !important;
        margin: 12px 0 14px !important;
        font-size: clamp(2.05rem, 9.2vw, 2.9rem) !important;
        line-height: 1.03 !important;
        letter-spacing: -.045em !important;
    }

    .hero.hero-single .hero-copy p {
        max-width: 92vw !important;
        font-size: .94rem !important;
        line-height: 1.62 !important;
        color: rgba(255, 255, 255, .92) !important;
        text-shadow: 0 2px 18px rgba(0, 0, 0, .30) !important;
    }

    .hero.hero-single .hero-actions {
        margin-top: 20px !important;
        margin-bottom: 16px !important;
    }

    .hero.hero-single .hero-actions .btn {
        width: 100% !important;
        min-height: 58px !important;
        justify-content: center !important;
    }

    .hero.hero-single .booking-shell {
        position: relative !important;
        z-index: 5 !important;
    }
}

@media (max-width: 420px) {
    .hero.hero-single {
        min-height: 710px !important;
    }

    .hero.hero-single .hero-grid {
        padding-top: 64px !important;
    }

    .hero.hero-single .hero-copy h1 {
        font-size: clamp(1.95rem, 9vw, 2.65rem) !important;
    }
}



/* ADR-HERO-BUNGALOW-FOCUS-V9
   Mobilde bungalov görseli alta sıkışmasın diye rezervasyon formu hero görselinin altına alındı.
   Büyük mobil CTA kaldırıldı; WhatsApp rezervasyon formu altta ayrı beyaz blok olarak kalır.
   Görsel blur/flu kullanmaz; net, bungalov odaklı ve daha premium görünür.
*/
@media (max-width: 760px) {
    .hero.hero-single {
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
        overflow: visible !important;
        background: var(--ivory-100) !important;
        background-image: none !important;
        isolation: isolate !important;
    }

    .hero.hero-single .hero-media {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        height: clamp(680px, 88vh, 840px) !important;
        min-height: clamp(680px, 88vh, 840px) !important;
        max-height: clamp(680px, 88vh, 840px) !important;
        z-index: 0 !important;
        overflow: hidden !important;
        background: #031918 !important;
    }

    .hero.hero-single .hero-media::before,
    .hero.hero-single .hero-media::after {
        content: none !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        filter: none !important;
        transform: none !important;
        background: none !important;
    }

    .hero.hero-single .hero-media img,
    .hero.hero-single picture.hero-media img,
    .hero.hero-single [data-hero-real-image] {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: -10% !important;
        bottom: auto !important;
        z-index: 0 !important;
        width: 100% !important;
        height: 110% !important;
        min-width: 100% !important;
        min-height: 110% !important;
        max-width: none !important;
        max-height: none !important;
        display: block !important;
        object-fit: cover !important;
        object-position: center bottom !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        background: #031918 !important;
    }

    .hero.hero-single .hero-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        height: clamp(680px, 88vh, 840px) !important;
        z-index: 1 !important;
        background:
            linear-gradient(180deg, rgba(2, 12, 16, .42) 0%, rgba(2, 12, 16, .18) 36%, rgba(2, 12, 16, .28) 66%, rgba(2, 12, 16, .74) 100%),
            linear-gradient(90deg, rgba(2, 12, 16, .52) 0%, rgba(2, 12, 16, .26) 58%, rgba(2, 12, 16, .14) 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: none !important;
    }

    .hero.hero-single::after {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: calc(clamp(680px, 88vh, 840px) - 105px) !important;
        bottom: auto !important;
        height: 105px !important;
        z-index: 2 !important;
        background: linear-gradient(180deg, transparent 0%, rgba(255, 250, 242, .08) 42%, var(--ivory-100) 100%) !important;
        pointer-events: none !important;
    }

    .hero.hero-single .hero-grid {
        position: relative !important;
        z-index: 3 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        min-height: clamp(680px, 88vh, 840px) !important;
        height: auto !important;
        align-content: start !important;
        align-items: start !important;
        justify-content: start !important;
        gap: 0 !important;
        padding-top: clamp(250px, 32vh, 310px) !important;
        padding-bottom: 0 !important;
    }

    .hero.hero-single .hero-copy {
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero.hero-single .hero-copy .eyebrow {
        font-size: .72rem !important;
        letter-spacing: .145em !important;
        color: var(--gold-300) !important;
        text-shadow: 0 3px 18px rgba(0, 0, 0, .38) !important;
    }

    .hero.hero-single .hero-copy h1 {
        max-width: 92vw !important;
        margin: 12px 0 14px !important;
        font-size: clamp(2.02rem, 8.8vw, 2.72rem) !important;
        line-height: 1.04 !important;
        letter-spacing: -.045em !important;
        text-shadow: 0 4px 26px rgba(0, 0, 0, .42) !important;
    }

    .hero.hero-single .hero-copy p {
        max-width: 92vw !important;
        font-size: .92rem !important;
        line-height: 1.58 !important;
        color: rgba(255, 255, 255, .92) !important;
        text-shadow: 0 3px 18px rgba(0, 0, 0, .38) !important;
    }

    .hero.hero-single .hero-actions,
    .hero.hero-single .hero-actions .btn {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .hero.hero-single .booking-shell {
        position: relative !important;
        z-index: 5 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 18px !important;
        padding-bottom: 34px !important;
        background: var(--ivory-100) !important;
    }

    .hero.hero-single .booking-bar {
        margin-top: 0 !important;
        border-radius: 24px !important;
        box-shadow: 0 20px 55px rgba(30, 23, 14, .14) !important;
    }

    .hero.hero-single .booking-submit {
        min-height: 58px !important;
        border-radius: 16px !important;
        background: linear-gradient(135deg, var(--gold-300), var(--gold-600)) !important;
        color: #21160d !important;
    }

    .floating-whatsapp {
        bottom: 14px !important;
        right: 14px !important;
        min-height: 44px !important;
        padding-inline: 16px !important;
        opacity: .96 !important;
    }
}

@media (max-width: 420px) {
    .hero.hero-single .hero-media,
    .hero.hero-single .hero-overlay {
        height: clamp(650px, 86vh, 800px) !important;
        min-height: clamp(650px, 86vh, 800px) !important;
        max-height: clamp(650px, 86vh, 800px) !important;
    }

    .hero.hero-single::after {
        top: calc(clamp(650px, 86vh, 800px) - 100px) !important;
    }

    .hero.hero-single .hero-grid {
        min-height: clamp(650px, 86vh, 800px) !important;
        padding-top: clamp(238px, 31vh, 292px) !important;
    }

    .hero.hero-single .hero-copy h1 {
        font-size: clamp(1.92rem, 8.6vw, 2.52rem) !important;
    }
}
