:root {
    --deep: #1565C0;
    --deep-2: #0D47A1;
    --sand: #FFFFFF;
    --coral: #0000FF;
    --coral-dark: #0000CC;
    --teal: #0000FF;
    --teal-2: #0000FF;
    --gold: #90CAF9;
    --ink: #0D47A1;
    --sand-dim: #F5FAFF;
    --line: rgba(0, 0, 255, .12);
    --max: 1180px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--sand);
    color: var(--ink);
    font-family: 'Inter', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--coral);
    color: var(--sand);
}


/* ===== TYPOGRAPHY ===== */

h1,
.section-title,
h2,
h3,
.brand {
    font-family: 'Playfair Display', serif !important;
}

h1,
h2,
h3 {
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
}


/* ===== ANIMATIONS ===== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-2%) translateY(-4px);
    }
}

@keyframes driftSlow {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(1.5%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .08s;
}

.reveal-delay-2 {
    transition-delay: .16s;
}

.reveal-delay-3 {
    transition-delay: .24s;
}


/* ===== UTILITIES ===== */

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--coral);
    border-radius: 50%;
    display: inline-block;
}


/* ===== NAV / HEADER ===== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background .4s ease, padding .4s ease;
}

header.scrolled {
    background: rgba(245, 250, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--sand);
    transition: color .4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 46px;
    width: 46px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: border-color .4s ease;
}

header.scrolled .logo {
    color: #0000FF;
}

header.scrolled .logo-img {
    border-color: #0000FF;
}

.logo span {
    color: var(--sand);
    transition: color .4s ease;
}

header.scrolled .logo span {
    color: #0000FF;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
}

.navlinks a {
    color: var(--sand);
    opacity: .85;
    transition: opacity .35s ease, color .35s ease;
    position: relative;
}

header.scrolled .navlinks a {
    color: #0000FF;
}

.navlinks a:not(.nav-cta):hover {
    opacity: 1;
}

.navlinks a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .3s var(--ease);
}

.navlinks a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--coral);
    color: var(--sand) !important;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13.5px;
    opacity: 1 !important;
    transition: background .3s ease, transform .3s ease;
}

.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.navtoggle {
    display: none;
}


/* ===== HERO ===== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: .25em;
    margin-bottom: 18px;
    opacity: .9;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77777778vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .30) 35%, rgba(0, 0, 0, .10) 70%, rgba(0, 0, 0, .15) 100%);
    z-index: 1;
}

.hero h1 {
    width: min(700px, 90%);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero-sub {
    max-width: 520px;
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .88);
}

.hero-actions {
    margin-top: 20px;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--coral);
    color: var(--sand);
}

.btn-primary:hover {
    background: var(--coral-dark);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(246, 241, 228, 0.45);
    color: var(--sand);
}

.btn-ghost:hover {
    background: rgba(246, 241, 228, 0.12);
}

.tide {
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: 3;
    text-align: right;
    font-family: 'Inter', sans-serif;
    color: #cfe8e1;
    font-size: 11.5px;
    line-height: 1.7;
    letter-spacing: .04em;
    opacity: 0;
    animation: fadeUp .9s var(--ease) .6s both;
    padding: 14px 16px;
    border: 1px solid rgba(246, 241, 228, 0.18);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    background: rgba(8, 29, 32, 0.25);
}

.tide b {
    color: var(--sand);
    font-size: 12.5px;
    letter-spacing: .02em;
}

.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(246, 241, 228, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    animation: fadeUp 1s var(--ease) .8s both;
}

.scroll-cue .line {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, rgba(246, 241, 228, 0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0.3);
        opacity: .4;
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
        transform-origin: top;
    }
    100% {
        transform: scaleY(0.3);
        opacity: .4;
        transform-origin: top;
    }
}


/* ===== WAVE DIVIDER ===== */

.wave-divider {
    width: 100%;
    display: block;
    margin-top: -3px;
    position: relative;
    z-index: 2;
}


/* ===== SECTIONS SELECTION ===== */

section {
    padding: 120px 0;
    position: relative;
}

.section-head {
    max-width: 620px;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: clamp(32px, 4.2vw, 46px);
    margin-top: 16px;
    color: var(--deep);
    font-weight: 500;
}

.section-head p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #42504c;
}


/* ===== STORY ===== */

.story {
    background: var(--sand);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 64px;
    align-items: center;
}

.story-art {
    aspect-ratio: 4/5;
    border-radius: 20px;
    background: linear-gradient(160deg, #154347 0%, #2d7e74 38%, #6b9a72 68%, #cfa15f 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(14, 46, 51, 0.35);
}

.story-art svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.story-art::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(246, 241, 228, 0.15);
    border-radius: 20px;
    pointer-events: none;
}

.story-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--sand);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
    z-index: 2;
}

.story-text p {
    font-size: 16.5px;
    line-height: 1.78;
    color: #3a4744;
    margin-bottom: 18px;
}

.story-text p:first-of-type {
    font-size: 19px;
    color: var(--deep);
    font-weight: 500;
    line-height: 1.55;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 38px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.stat b {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 36px;
    color: var(--coral);
    display: block;
    line-height: 1;
}

.stat span {
    font-size: 12.5px;
    color: #5b6864;
    font-family: 'Inter', sans-serif;
    letter-spacing: .03em;
    display: block;
    margin-top: 6px;
}


/* ===== ROOMS ===== */

.rooms {
    background: var(--sand-dim);
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

@media (max-width: 1080px) and (min-width: 901px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.room-card {
    background: var(--sand);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(14, 46, 51, 0.04);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 48px -24px rgba(14, 46, 51, 0.28);
    border-color: rgba(14, 46, 51, 0.22);
}

.room-img {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.room-img svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform .5s var(--ease);
}

.room-card:hover .room-img svg {
    transform: scale(1.04);
}

.room-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(8, 29, 32, 0.82);
    color: var(--sand);
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    letter-spacing: .08em;
    padding: 6px 13px;
    border-radius: 999px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.room-body {
    padding: 26px 24px 28px;
}

.room-body h3 {
    font-size: 22px;
    color: var(--deep);
    margin-bottom: 8px;
    font-weight: 500;
}

.room-body .room-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    color: var(--teal);
    margin-bottom: 16px;
    letter-spacing: .03em;
}

.room-body p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #4b5854;
    margin-bottom: 20px;
}

.room-foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px dashed var(--line);
    padding-top: 18px;
}

.room-price b {
    font-size: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--coral);
}

.room-price span {
    font-size: 12px;
    color: #697874;
}

.room-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--deep);
    border-bottom: 1.5px solid var(--coral);
    padding-bottom: 2px;
    transition: color .25s ease, border-color .25s ease;
}

.room-link:hover {
    color: var(--coral);
    border-color: var(--coral-dark);
}


/* ===== AMENITIES / FACILITIES ===== */

.facilities {
    background: var(--sand);
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.fac-item {
    background: var(--sand);
    padding: 34px 26px;
    transition: background .35s ease;
}

.fac-item:hover {
    background: var(--sand-dim);
}

.fac-item svg {
    width: 28px;
    height: 28px;
    color: var(--coral);
    margin-bottom: 18px;
    stroke-width: 1.6;
}

.fac-item h4 {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.fac-item p {
    font-size: 13px;
    color: #5b6864;
    line-height: 1.6;
}


/* ===== MODERN GALLERY ===== */

.gallery {
    background: #f8fafc;
    position: relative;
}

.gallery .section-head {
    text-align: center;
    margin: 0 auto 70px;
}

.modern-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease;
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15), transparent);
    z-index: 1;
}

.gallery-overlay {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: .4s ease;
}

.gallery-overlay h4 {
    font-size: 22px;
    margin-bottom: 4px;
}

.gallery-overlay span {
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.gallery-card:hover {
    transform: translateY(-8px);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}


/* ===== LOCATION ===== */

.location {
    background: var(--sand-dim);
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 56px;
    align-items: start;
}

.loc-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.loc-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.loc-row svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--coral);
    stroke-width: 1.7;
}

.loc-row b {
    display: block;
    font-size: 14.5px;
    color: var(--deep);
    margin-bottom: 3px;
    font-weight: 600;
}

.loc-row span {
    font-size: 13.5px;
    color: #5b6864;
    line-height: 1.55;
}

.map-box {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.map-overlay h4 {
    margin: 0;
    font-size: 18px;
    color: #1565C0;
}

.map-overlay p {
    margin: 8px 0 14px;
    color: #666;
    font-size: 14px;
}

.map-open-btn {
    display: inline-block;
    background: #09090a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.map-open-btn:hover {
    background: #0D47A1;
}

.map-pin {
    position: absolute;
    top: 48%;
    left: 46%;
    width: 16px;
    height: 16px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(0, 0, 255, 0.22);
    border: 2px solid var(--sand);
}

.map-pin::after {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 255, 0.4);
    animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: .8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* ===== CTA BAND ===== */

.cta-band {
    background: var(--coral);
    color: var(--sand);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 241, 228, 0.1), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-band h2 {
    font-size: clamp(30px, 5vw, 50px);
    color: var(--sand);
    max-width: 680px;
    margin: 0 auto 22px;
    font-weight: 500;
    position: relative;
}

.cta-band p {
    font-size: 16px;
    max-width: 460px;
    margin: 0 auto 38px;
    opacity: .92;
    line-height: 1.65;
    position: relative;
}

.cta-band .btn-primary {
    background: var(--deep);
}

.cta-band .btn-primary:hover {
    background: var(--deep-2);
}

.cta-band .btn-ghost {
    border-color: rgba(246, 241, 228, .5);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}


/* ===== FOOTER ===== */

footer {
    background: var(--deep);
    color: #a9c2bd;
    padding: 72px 0 36px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(246, 241, 228, 0.12);
}

.foot-logo {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--sand);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.foot-logo-img {
    height: 54px;
    width: 54px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.foot-logo span {
    color: var(--sand);
}

footer p {
    font-size: 13.5px;
    line-height: 1.75;
    max-width: 280px;
    color: #9bb6b0;
}

footer h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--sand);
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

footer ul a {
    font-size: 13.5px;
    color: #a9c2bd;
    transition: color .25s ease;
}

footer ul a:hover {
    color: var(--sand);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
    font-size: 12.5px;
    color: #6f897f;
    flex-wrap: wrap;
    gap: 12px;
}


/* ===== WHATSAPP FLOATING BUTTON ===== */

.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 90;
    background: #25D366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform .3s var(--ease);
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: waPulse 2.6s ease-out infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wa-float:hover {
    transform: scale(1.08);
}

.wa-float svg {
    width: 28px;
    height: 28px;
    color: #fff;
}


/* ===== STORY SLIDER ===== */

.story-art {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.story-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.story-slide.active {
    opacity: 1;
    z-index: 2;
}

.story-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-clip-container {
    width: 100%;
    height: 100%;
    clip-path: url(#bigWaveClip);
    -webkit-clip-path: url(#bigWaveClip);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 29, 32, 0.72);
    color: var(--sand);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.3s, transform 0.2s;
}

.slider-btn:hover {
    background: #0000FF;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

.slider-dots {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot-indicator {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot-indicator.active {
    background: #0000FF;
}

.story-caption-side {
    margin-top: 24px;
    font-size: 13px;
    font-style: italic;
    color: #5b6864;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sand-dim);
    padding: 6px 14px;
    border-radius: 6px;
    border-left: 3px solid var(--teal);
}

.caption-dot {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
}


/* ==========================
SANTORINI BOOKING SECTION
========================== */

.booking-santorini {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    background: url("image/booking.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(255, 255, 255, .15), rgba(255, 255, 255, .15));
}

.booking-card {
    position: relative;
    z-index: 2;
    width: min(900px, 95%);
    text-align: center;
    padding: 60px 50px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
}

.booking-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.booking-label {
    display: block;
    font-size: 13px;
    letter-spacing: .35em;
    color: #1565C0;
    margin-bottom: 20px;
}

.booking-card h2 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    color: #0D47A1;
    margin-bottom: 25px;
}

.booking-card p {
    max-width: 620px;
    margin: auto;
    line-height: 1.8;
    color: #4f5f7a;
    font-size: 18px;
}

.ota-strip {
    margin-top: 40px;
}

.ota-strip span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 18px;
    color: #1565C0;
}

.ota-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.ota-list div {
    padding: 10px 18px;
    background: white;
    border-radius: 999px;
    border: 1px solid rgba(21, 101, 192, .15);
    font-size: 14px;
    font-weight: 600;
    color: #1565C0;
}

.booking-actions {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wa-book-btn {
    background: #1565C0;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
}

.wa-book-btn:hover {
    background: #0D47A1;
    transform: translateY(-2px);
}

.call-book-btn {
    background: white;
    color: #1565C0;
    border: 1px solid #1565C0;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
}

.booking-trust {
    margin-top: 30px;
    font-size: 14px;
    color: #0D47A1;
}


/* ===== RESPONSIVE MEDIA QUERIES ===== */

@media (max-width: 900px) {
    .navlinks {
        display: none;
    }
    .story-grid,
    .loc-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .room-grid {
        grid-template-columns: 1fr;
    }
    .fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 160px);
    }
    .gal-grid>div:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gal-grid>div:nth-child(4) {
        grid-column: span 1;
    }
    .foot-grid {
        grid-template-columns: 1fr;
    }
    section {
        padding: 80px 0;
    }
    .tide {
        display: none;
    }
    .hero h1 {
        font-size: clamp(38px, 11vw, 64px);
    }
    .story-art {
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .gal-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gal-item.large,
    .gal-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .booking-card {
        padding: 40px 25px;
    }
    .booking-card h2 {
        font-size: 42px;
    }
    .booking-card p {
        font-size: 15px;
    }
    .ota-list {
        gap: 8px;
    }
    .ota-list div {
        font-size: 12px;
        padding: 8px 14px;
    }
}

@media (max-width: 540px) {
    .scroll-cue {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        justify-content: center;
    }
    .stat-row {
        gap: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}