@charset "utf-8";
/* CSS Document */

/* ===========================================================
   MARS RESIDENCY — Design Tokens
   60% Greige #E9E4DC · 30% Terracotta #C76B4A · 10% Accent #1F4E5F
   Rooms section secondary: Dusty Blue #6C89A3
=========================================================== */
:root{
  --greige:#E9E4DC;
  --greige-deep:#DCD5C9;
  --terracotta:#C76B4A;
  --terracotta-deep:#B25A3B;
  --accent:#1F4E5F;
  --accent-deep:#153845;
  --dusty:#6C89A3;
  --dusty-deep:#547089;
  --ink:#2B2622;
  --paper:#FAF8F4;
  --dark:#161311;

  --font-display:'Playfair Display', serif;
  --font-body:'Poppins', sans-serif;

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --shadow-soft:0 20px 50px -20px rgba(43,38,34,.25);
  --shadow-lift:0 30px 60px -25px rgba(31,78,95,.35);
  --ease:cubic-bezier(.22,.9,.32,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
.container{width:92%;max-width:1200px;margin:0 auto}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
}

:focus-visible{outline:3px solid var(--terracotta);outline-offset:3px}

/* ===== Preloader ===== */
.preloader{
  position:fixed;inset:0;background:var(--accent);z-index:9999;
  display:flex;align-items:center;justify-content:center;
  transition:opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader-mark{
  font-family:var(--font-display);color:var(--greige);font-size:2.5rem;letter-spacing:.3em;
  animation:pulseMark 1.1s ease-in-out infinite;
}
.preloader.is-hidden{opacity:0;visibility:hidden;pointer-events:none}
@keyframes pulseMark{0%,100%{opacity:.4;transform:scale(.94)}50%{opacity:1;transform:scale(1)}}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  padding:14px 30px;border-radius:999px;font-weight:600;font-size:.95rem;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--terracotta);color:#fff;box-shadow:0 10px 25px -8px rgba(199,107,74,.6)}
.btn-primary:hover{transform:translateY(-3px) scale(1.03);box-shadow:0 16px 34px -10px rgba(199,107,74,.75)}
.btn-accent{background:var(--accent);color:#fff;box-shadow:0 10px 25px -10px rgba(31,78,95,.55)}
.btn-accent:hover{transform:translateY(-3px);background:var(--accent-deep)}
.btn-ghost{border:1.5px solid rgba(255,255,255,.75);color:#fff;background:rgba(255,255,255,.06);backdrop-filter:blur(6px)}
.btn-ghost:hover{background:rgba(255,255,255,.18);transform:translateY(-3px)}
.btn-ghost-dark{border:1.5px solid var(--accent);color:var(--accent)}
.btn-ghost-dark:hover{background:var(--accent);color:#fff}
.btn-block{width:100%}
.btn-pulse{animation:btnPulse 2.6s ease-in-out infinite}
.btn-pulse-small{position:relative}
@keyframes btnPulse{0%,100%{box-shadow:0 0 0 0 rgba(199,107,74,.45)}50%{box-shadow:0 0 0 14px rgba(199,107,74,0)}}
/* Logo */

.brand-logo{

    width:60px;

    height:60px;

    object-fit:contain;

    flex-shrink:0;

}


/* Text Section */

.brand-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

    line-height:1;
	   

}


/* Main Text */

/* ===== Brand Title ===== */

.brand-title{
    font-size:1.5rem;
    font-weight:600;
    color:#fff;
    transition:color .35s ease;
}

/* After scrolling */
.navbar.is-scrolled .brand-title{
    color:var(--accent);
}
.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    line-height: 1;
    transform: translateY(-20px);
}


.brand-text h4,
.brand-text .brand-name {
    font-size: 30px;
    font-weight: 500px;
    margin: 0;
}


/* Small Text */

.brand h5{

    display:block;

    margin-top:5px;

    font-size:.65rem;

    letter-spacing:.15em;

    color:aliceblue;

    text-transform:uppercase;

}
/* =========================
   MOBILE BRAND
========================= */

@media (max-width: 768px) {

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        transform: translateY(0);
        line-height: 1;
    }

    .brand-title,
    .brand-text h4,
    .brand-text .brand-name {
        font-size: 22px;
        font-weight: 600;
        margin: 0;
        white-space: nowrap;
    }

    .brand h5 {
        margin-top: 4px;
        font-size: 0.5rem;
        letter-spacing: 0.1em;
    }

}
/* Small phones */
@media (max-width: 480px) {

    .brand-logo {
        width: 70px;
        height: 70px;
    }

    .brand-text {
        transform: translateY(-24px);
    }

    .brand-title,
    .brand-text h4,
    .brand-text .brand-name {
        font-size: 25px;
    }

    .brand h5 {
        font-size: 0.48rem;
        letter-spacing: 0.1em;
    }
}
/* ===== Navbar ===== */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:900;
  padding:22px 0;transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar .nav-inner{
  width:92%;max-width:1300px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.brand{display:flex;align-items:baseline;gap:6px;font-family:var(--font-display)}
.brand-mark{font-size:1.5rem;font-weight:700;color:#fff;letter-spacing:.02em}
.brand-sub{font-size:.85rem;color:var(--terracotta);letter-spacing:.15em;text-transform:uppercase}
.nav-links{display:flex;gap:30px;flex:1;justify-content:center}
.nav-link{
  position:relative;color:#fff;font-size:.92rem;font-weight:500;padding:6px 0;
}
.nav-link::after{
  content:'';position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--terracotta);
  transition:width .35s var(--ease);
}
.nav-link:hover::after,.nav-link.active::after{width:100%}
.nav-cta{padding:11px 24px;font-size:.85rem}
.nav-toggle{display:none;flex-direction:column;gap:5px;width:28px}
.nav-toggle span{display:block;height:2px;background:#fff;border-radius:2px;transition:transform .3s ease, opacity .3s ease}

.navbar.is-scrolled{
  background:rgba(250,248,244,.92);backdrop-filter:blur(10px);
  box-shadow:0 8px 30px -15px rgba(43,38,34,.3);padding:12px 0;
}
.navbar.is-scrolled .brand-mark,
.navbar.is-scrolled .brand-title,
.navbar.is-scrolled .nav-link{
  color:var(--ink);
}
.navbar.is-scrolled .nav-link::after{background:var(--terracotta)}



/* ===== Hero ===== */
.hero{
  position:relative;height:100vh;min-height:620px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;text-align:center;
}
.hero-slides{position:absolute;inset:0}
.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transition:
        opacity 1.6s ease,
        transform 8s linear;

    transform: scale(1.08);
}
.hero-slide.is-active{opacity:1;transform:scale(1.16)}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(21,56,69,.55) 0%, rgba(21,56,69,.35) 45%, rgba(21,56,69,.75) 100%),
             radial-gradient(circle at 50% 30%, rgba(199,107,74,.18), transparent 60%);
}
.hero-particles{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.hero-particles span{
  position:absolute;bottom:-10%;width:6px;height:6px;border-radius:50%;
  background:rgba(233,228,220,.55);animation:floatUp linear infinite;
}
@keyframes floatUp{
  0%{transform:translateY(0) translateX(0);opacity:0}
  10%{opacity:1}
  100%{transform:translateY(-110vh) translateX(20px);opacity:0}
}

//* =========================================
   HERO CONTENT — RIGHT CENTER
   ========================================= */

.hero-content {
    position: relative;
    z-index: 10;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 40px 3vw 40px 40px;
    box-sizing: border-box;
}

/* =========================================
   SMALLER LIQUID GLASS PANEL
   ========================================= */

.hero-glass {
    position: relative;

    width: min(480px, 38vw);

    padding: 38px 40px;

    text-align: center;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.045)
        );

    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);

    border: 1px solid rgba(255, 255, 255, 0.22);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.28),
        0 0 35px rgba(255, 255, 255, 0.06),
        inset 3px 3px 5px rgba(255, 255, 255, 0.30),
        inset -3px -3px 5px rgba(255, 255, 255, 0.10);

    overflow: hidden;

    isolation: isolate;

    transform: translateZ(0);

    animation: none;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Liquid light */

.hero-glass::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(255, 255, 255, 0.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 90%,
            rgba(255, 255, 255, 0.08),
            transparent 32%
        );

    pointer-events: none;
}


/* Glass edge */

.hero-glass::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    pointer-events: none;

    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-left: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        inset 0 0 25px rgba(255, 255, 255, 0.04);
}


/* Keep content above glass layers */

.hero-glass > * {
    position: relative;
    z-index: 2;
}


/* =========================================
   SMALLER TEXT
   ========================================= */

.hero-eyebrow {
    margin-bottom: 12px;

    font-size: 11px;

    letter-spacing: 2.5px;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.85);
}


.hero-title {
    margin: 0;

    font-size: clamp(30px, 1vw, 40px);

    line-height: 0.98;

    letter-spacing: -1.5px;

    font-weight: 750;

    color:aqua;

    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.35);
}


.hero-title .line {
    display: block;
}


.hero-title .word {
    display: inline-block;
}


.hero-title .accent {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f3c98b,
            #ffffff
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.hero-tagline {
    margin-top: 18px;

    font-size: 13px;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================
   BUTTONS
   ========================================= */

.hero-cta {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 24px;
}


.hero-cta .btn {
    padding: 10px 20px;

    font-size: 13px;

    border-radius: 999px;
}


/* =========================================
   FLOATING EFFECT
   ========================================= */

@keyframes glassFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}
/* =========================================
   SMALL LAPTOP — 1025px to 1400px
   Example: 1280x720 / 1366x768
   ========================================= */

@media (min-width: 1025px) and (max-width: 1400px) {

    .hero-content {
        min-height: 100vh;

        justify-content: flex-end;

        padding: 35px 5vw 35px 35px;
    }

    .hero-glass {
        width: 420px;

        padding: 32px 34px;

        border-radius: 25px;
    }

    .hero-eyebrow {
        font-size: 10px;

        letter-spacing: 2px;

        margin-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(36px, 4vw, 50px);

        line-height: 1;

        letter-spacing: -1px;
    }

    .hero-tagline {
        margin-top: 15px;

        font-size: 12px;

        line-height: 1.45;
    }

    .hero-cta {
        margin-top: 20px;

        gap: 9px;
    }

    .hero-cta .btn {
        padding: 9px 18px;

        font-size: 12px;
    }
}


/* =========================================
   VERY SMALL LAPTOP
   1025px – 1200px
   ========================================= */

@media (min-width: 1025px) and (max-width: 1200px) {

    .hero-content {
        padding-right: 35px;
    }

    .hero-glass {
        width: 380px;

        padding: 28px 30px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-tagline {
        font-size: 11px;
    }

    .hero-cta .btn {
        padding: 8px 16px;

        font-size: 11px;
    }
}


/* =========================================
   SMALL LAPTOP HEIGHT
   720px HEIGHT
   ========================================= */

@media (min-width: 1025px)
       and (max-height: 750px) {

    .hero-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-glass {
        padding: 25px 30px;

        border-radius: 22px;
    }

    .hero-eyebrow {
        margin-bottom: 7px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-tagline {
        margin-top: 12px;

        font-size: 11px;
    }

    .hero-cta {
        margin-top: 16px;
    }

    .hero-cta .btn {
        padding: 8px 15px;
    }
}


/* =========================================
   TABLET
   769px – 1024px
   ========================================= */

@media (min-width: 769px) and (max-width: 1024px) {

    .hero-content {
        justify-content: flex-end;

        padding:
            30px 30px 30px 30px;
    }

    .hero-glass {
        width: 360px;

        padding: 30px 25px;

        border-radius: 24px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-eyebrow {
        font-size: 10px;
    }

    .hero-tagline {
        font-size: 12px;
    }

    .hero-cta {
        margin-top: 18px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .hero-content {
        justify-content: center;

        padding: 20px 15px;
    }

    .hero-glass {
        width: min(400px, 100%);

        padding: 30px 22px;

        border-radius: 22px;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 46px);
    }

    .hero-eyebrow {
        font-size: 9px;

        letter-spacing: 1.8px;
    }

    .hero-tagline {
        font-size: 12px;

        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: row;

        gap: 8px;
    }

    .hero-cta .btn {
        padding: 9px 15px;

        font-size: 11px;
    }
}


/* =========================================
   VERY SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    .hero-glass {
        width: 100%;

        padding: 27px 18px;

        border-radius: 20px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-tagline {
        font-size: 11px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 150px;
    }
}

/* =========================================
   HOVER
   ========================================= */

.hero-glass:hover {
    transform:
        translateY(-4px)
        scale(1.01);

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.34),
        0 0 45px rgba(255, 255, 255, 0.09),
        inset 3px 3px 5px rgba(255, 255, 255, 0.35),
        inset -3px -3px 5px rgba(255, 255, 255, 0.12);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .hero-content {
        justify-content: center;

        padding:
            25px 18px;
    }

    .hero-glass {
        width: min(430px, 100%);

        padding: 32px 25px;

        border-radius: 24px;
    }

    .hero-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero-eyebrow {
        font-size: 10px;
    }

    .hero-tagline {
        font-size: 12px;
    }

    .hero-cta {
        margin-top: 20px;
    }

}

/* -----------------------------------------
   HOVER
   ----------------------------------------- */

.hero-glass:hover {

    transform:
        translateY(-5px)
        scale(1.005);

    box-shadow:

        0 30px 80px
        rgba(0, 0, 0, 0.35),

        0 0 60px
        rgba(255, 255, 255, 0.10),

        inset 4px 4px 6px
        rgba(255, 255, 255, 0.38),

        inset -4px -4px 6px
        rgba(255, 255, 255, 0.14);
}
.hero-eyebrow{
  text-transform:uppercase;letter-spacing:.35em;font-size:.78rem;color:var(--greige);margin-bottom:18px;
  opacity:0;
}
.hero-title{
  font-family:var(--font-display);font-weight:700;line-height:1.08;
  font-size:clamp(2.4rem, 6vw, 4.6rem);margin-bottom:20px;
}
.hero-title .line{display:block;overflow:hidden}
.hero-title .word{display:inline-block;transform:translateY(110%);opacity:0;letter-spacing:.12em}
.hero-title .accent{color:var(--terracotta)}
.hero-tagline{font-size:clamp(1rem,2vw,1.2rem);font-weight:300;letter-spacing:.03em;margin-bottom:36px;opacity:0}
.hero-cta{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;opacity:0}

.reveal-up{animation:heroUp .9s var(--ease) forwards}
.delay-3{animation-delay:.9s}
.delay-4{animation-delay:1.3s}
@keyframes heroUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero.is-ready .hero-title .word{animation:wordUp .9s var(--ease) forwards}
.hero.is-ready .hero-title .line:nth-child(1) .word:nth-child(1){animation-delay:.15s}
.hero.is-ready .hero-title .line:nth-child(1) .word:nth-child(2){animation-delay:.28s}
.hero.is-ready .hero-title .line:nth-child(2) .word:nth-child(1){animation-delay:.42s}
.hero.is-ready .hero-title .line:nth-child(2) .word:nth-child(2){animation-delay:.55s}
@keyframes wordUp{to{transform:translateY(0);opacity:1}}

.hero-slide-dots{position:absolute;bottom:100px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:2}
.hero-slide-dots span{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.4);transition:all .4s ease}
.hero-slide-dots span.is-active{background:var(--terracotta);width:26px;border-radius:5px}

.scroll-cue{
  position:absolute;bottom:34px;left:50%;transform:translateX(-50%);z-index:2;
  width:26px;height:42px;border:2px solid rgba(255,255,255,.6);border-radius:20px;
}
.scroll-cue span{
  position:absolute;top:6px;left:50%;transform:translateX(-50%);width:4px;height:8px;border-radius:2px;
  background:#fff;animation:cue 1.8s ease-in-out infinite;
}
@keyframes cue{0%{opacity:1;top:6px}80%{opacity:0;top:22px}100%{opacity:0;top:6px}}

/* ===== Section shared ===== */
section{padding:110px 0}
.eyebrow{
  text-transform:uppercase;letter-spacing:.28em;font-size:.78rem;font-weight:600;
  color:var(--terracotta);margin-bottom:14px;
}
.eyebrow-light{color:var(--terracotta)}
.section-title{
  font-family:var(--font-display);font-weight:700;color:var(--accent);
  font-size:clamp(1.9rem,3.6vw,2.9rem);line-height:1.18;margin-bottom:18px;max-width:640px;
}
.section-title-light{color:#fff}
.section-sub{color:#5c554c;max-width:520px;margin-bottom:50px}

/* ===== About ===== */
.about{background:var(--paper);position:relative}
.about-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:70px;align-items:start}
.about-media{position:relative}
.img-main{border-radius:var(--radius-lg);box-shadow:var(--shadow-soft);width:100%;height:520px;object-fit:cover}
.img-float{
  position:absolute;bottom:-40px;left:-60px;width:52%;border-radius:var(--radius-md);
  border:6px solid var(--paper);box-shadow:var(--shadow-lift);
}
.about-badge{
  position:absolute;top:24px;right:-24px;background:var(--terracotta);color:#fff;
  border-radius:50%;width:120px;height:120px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;box-shadow:0 16px 30px -12px rgba(199,107,74,.6);
}
.about-badge-num{font-family:var(--font-display);font-size:1.6rem;font-weight:700}
.about-badge-label{font-size:.68rem;letter-spacing:.05em;margin-top:4px}

.about-lede{font-size:1.05rem;color:#4a453e;margin-bottom:36px}
.about-tabs{display:grid;gap:22px;margin-bottom:42px}
.about-tabs h3{font-family:var(--font-display);color:var(--accent);font-size:1.15rem;margin-bottom:6px}
.about-tabs p{color:#5c554c;font-size:.95rem}

.facilities-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.facility{
  display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;
  background:#fff;border-radius:var(--radius-sm);padding:18px 10px;font-size:.82rem;font-weight:500;
  box-shadow:0 10px 24px -16px rgba(43,38,34,.25);transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.facility:hover{transform:translateY(-6px);box-shadow:0 18px 30px -16px rgba(199,107,74,.35)}
.facility-icon{width:30px;height:30px;border-radius:50%;background:var(--accent);position:relative;flex:none}
.facility-icon::after{content:'';position:absolute;inset:9px;background:var(--greige);border-radius:2px}

/* ===== Stats ===== */
.stats-bar{background:var(--accent);margin-top:90px;padding:50px 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);text-align:center;gap:20px}
.stat-num{display:block;font-family:var(--font-display);font-size:clamp(2rem,4vw,2.8rem);color:var(--terracotta);font-weight:700}
.stat-label{color:var(--greige);font-size:.85rem;letter-spacing:.05em;text-transform:uppercase}
/* =========================================
   STATS — MOBILE
   ========================================= */

@media (max-width: 768px) {

    .stats-bar {
        margin-top: 60px;
        padding: 35px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
        padding: 0 15px;
    }

    .stat-num {
        font-size: 2rem;
        line-height: 1.1;
    }

    .stat-label {
        font-size: .72rem;
        line-height: 1.4;
        letter-spacing: .04em;
    }

}

/* ===== Rooms (Dusty Blue theme) ===== */
.rooms{background:var(--dusty-deep);position:relative}
.rooms .eyebrow{color:var(--terracotta)}
.rooms .section-sub{color:rgba(255,255,255,.78)}
.room-tabs{display:flex;gap:14px;margin-bottom:44px;flex-wrap:wrap}
.room-tab{
  padding:10px 22px;border-radius:999px;border:1.5px solid rgba(255,255,255,.4);color:#fff;
  font-size:.85rem;font-weight:600;transition:all .3s ease;
}
.room-tab.is-active,.room-tab:hover{background:var(--terracotta);border-color:var(--terracotta)}
.room-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:32px}
.room-card{
  background:var(--paper);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-soft);
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);display:none;
}
.room-card.is-visible{display:block}
.room-card:hover{transform:translateY(-10px);box-shadow:0 34px 60px -20px rgba(15,30,38,.55)}
.room-media{position:relative;overflow:hidden;height:260px}
.room-media img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.room-card:hover .room-media img{transform:scale(1.08)}
.room-tag{
  position:absolute;top:16px;left:16px;background:var(--accent);color:#fff;padding:6px 14px;
  border-radius:999px;font-size:.72rem;font-weight:700;letter-spacing:.05em;
}
.room-tag-alt{background:var(--terracotta)}
.room-body{padding:28px}
.room-head{display:flex;justify-content:space-between;align-items:baseline;gap:10px;margin-bottom:10px}
.room-head h3{font-family:var(--font-display);color:var(--accent);font-size:1.25rem}
.room-price{color:var(--terracotta);font-weight:700;font-size:1.1rem}
.room-price span{color:#8a8377;font-weight:400;font-size:.75rem}
.room-desc{color:#5c554c;font-size:.9rem;margin-bottom:16px}
.room-amenities{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
.room-amenities li{
  background:var(--greige);color:var(--accent);font-size:.72rem;font-weight:600;
  padding:6px 12px;border-radius:999px;
}
/* ===== Rooms - Mobile View ===== */
@media (max-width: 768px){

  .rooms{
    padding: 60px 20px;
  }

  .rooms .section-sub{
    font-size: .85rem;
    line-height: 1.6;
  }

  /* Room Tabs */
  .room-tabs{
    gap: 8px;
    margin-bottom: 30px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .room-tabs::-webkit-scrollbar{
    display:none;
  }

  .room-tab{
    flex:0 0 auto;
    padding:9px 17px;
    font-size:.75rem;
    white-space:nowrap;
  }

  /* Room Grid */
  .room-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  /* Room Card */
  .room-card{
    width:100%;
    border-radius:var(--radius-md);
  }

  .room-card:hover{
    transform:none;
    box-shadow:var(--shadow-soft);
  }

  /* Room Image */
  .room-media{
    height:220px;
  }

  .room-card:hover .room-media img{
    transform:none;
  }

  /* Room Tag */
  .room-tag{
    top:12px;
    left:12px;
    padding:5px 11px;
    font-size:.68rem;
  }

  /* Room Content */
  .room-body{
    padding:20px;
  }

  .room-head{
    align-items:flex-start;
    gap:8px;
    margin-bottom:8px;
  }

  .room-head h3{
    font-size:1.1rem;
    line-height:1.3;
  }

  .room-price{
    font-size:.95rem;
    white-space:nowrap;
  }

  .room-price span{
    font-size:.68rem;
  }

  .room-desc{
    font-size:.82rem;
    line-height:1.6;
    margin-bottom:14px;
  }

  /* Amenities */
  .room-amenities{
    gap:6px;
    margin-bottom:18px;
  }

  .room-amenities li{
    font-size:.65rem;
    padding:5px 10px;
  }

}


/* ===== Extra Small Phones ===== */
@media (max-width: 480px){

  .rooms{
    padding:50px 15px;
  }

  .room-media{
    height:200px;
  }

  .room-body{
    padding:17px;
  }

  .room-head h3{
    font-size:1rem;
  }

  .room-price{
    font-size:.88rem;
  }

  .room-desc{
    font-size:.78rem;
  }

  .room-tab{
    padding:8px 14px;
    font-size:.7rem;
  }

}

/* ===== Booking ===== */
.booking{background:var(--paper);position:relative}
.booking-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:start}
.booking-points{margin-top:28px;display:grid;gap:14px}
.booking-points li{
  padding-left:28px;position:relative;color:#4a453e;font-size:.95rem;
}
.booking-points li::before{
  content:'✓';position:absolute;left:0;top:0;color:var(--terracotta);font-weight:700;
}
.booking-form{
  background:#fff;border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow-soft);
  display:grid;gap:20px;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.form-row-3{grid-template-columns:1fr 1fr 1fr}
.form-field{display:flex;flex-direction:column;gap:8px;position:relative}
.form-field label{font-size:.82rem;font-weight:600;color:var(--accent)}
.form-field .optional{color:#9a9388;font-weight:400}
.form-field input,.form-field select,.form-field textarea{
  border:1.5px solid #E3DED4;border-radius:var(--radius-sm);padding:13px 16px;font-family:inherit;
  font-size:.92rem;background:var(--paper);transition:border-color .3s ease, box-shadow .3s ease;
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{
  outline:none;border-color:var(--terracotta);box-shadow:0 0 0 4px rgba(199,107,74,.15);
}
.field-error{display:none;color:#B23B3B;font-size:.76rem}
.form-field.has-error input,.form-field.has-error select,.form-field.has-error textarea{border-color:#B23B3B}
.form-field.has-error .field-error{display:block}

.booking-success{
  position:fixed;inset:0;background:rgba(21,56,69,.6);backdrop-filter:blur(4px);
  display:flex;align-items:center;justify-content:center;z-index:1000;opacity:0;visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;padding:20px;
}
.booking-success.is-visible{opacity:1;visibility:visible}
.booking-success-card{
  background:#fff;border-radius:var(--radius-lg);padding:44px;text-align:center;max-width:380px;
  transform:scale(.9);transition:transform .35s var(--ease);box-shadow:var(--shadow-lift);
}
.booking-success.is-visible .booking-success-card{transform:scale(1)}
.success-tick{width:64px;height:64px;margin:0 auto 20px}
.success-tick svg{width:100%;height:100%;fill:none;stroke:var(--terracotta);stroke-width:3}
.success-tick circle{stroke-dasharray:160;stroke-dashoffset:160;animation:tickCircle .6s ease forwards}
.success-tick path{stroke-dasharray:40;stroke-dashoffset:40;animation:tickPath .4s ease .5s forwards}
@keyframes tickCircle{to{stroke-dashoffset:0}}
@keyframes tickPath{to{stroke-dashoffset:0}}
.booking-success-card h3{font-family:var(--font-display);color:var(--accent);font-size:1.4rem;margin-bottom:10px}
.booking-success-card p{color:#5c554c;font-size:.92rem;margin-bottom:26px}

/* ===== Tourist ===== */
.tourist{background:var(--greige)}
.tourist-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.tourist-card{
  background:#fff;border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-soft);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tourist-card:hover{transform:translateY(-8px)}
.tourist-card img{height:190px;object-fit:cover;transition:transform .6s var(--ease)}
.tourist-card:hover img{transform:scale(1.07)}
.tourist-body{padding:22px}
.tourist-body h3{font-family:var(--font-display);color:var(--accent);font-size:1.1rem;margin-bottom:8px}
.tourist-meta{display:flex;gap:8px;color:var(--terracotta);font-size:.78rem;font-weight:600;margin-bottom:10px}
.tourist-body p{color:#5c554c;font-size:.88rem;margin-bottom:16px}
.tourist-link{color:var(--accent);font-weight:600;font-size:.85rem;transition:gap .3s ease}
.tourist-link:hover{color:var(--terracotta)}

/* ===== Blog ===== */
.blog{background:var(--paper)}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.blog-card{
  border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-soft);background:#fff;
  transition:transform .4s var(--ease);
}
.blog-card:hover{transform:translateY(-8px)}
.blog-card img{height:200px;object-fit:cover}
.blog-body{padding:22px}
.blog-date{color:var(--terracotta);font-size:.75rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase}
.blog-body h3{font-family:var(--font-display);color:var(--accent);font-size:1.1rem;margin:8px 0}
.blog-body p{color:#5c554c;font-size:.88rem;margin-bottom:16px}

/* ===== Contact ===== */
.contact{background:var(--accent);color:#fff}
.contact .section-title{color:#fff}
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start}
.contact-list{display:grid;gap:26px;margin:30px 0 34px}
.contact-list li{display:flex;gap:16px;align-items:flex-start}
.contact-list strong{color:var(--terracotta)}
.contact-list div{color:rgba(255,255,255,.85);font-size:.92rem}
.contact-list a{color:rgba(255,255,255,.85)}
.contact-list a:hover{color:var(--terracotta)}
.contact-icon{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.12);flex:none;position:relative}
.contact-icon::after{content:'';position:absolute;inset:12px;background:var(--terracotta);border-radius:2px}

.contact-form{background:#fff;border-radius:var(--radius-lg);padding:40px;display:grid;gap:20px;box-shadow:var(--shadow-lift)}
.contact-form .form-field label{color:var(--accent)}

/* ===== Footer ===== */
.footer{background:var(--dark);color:rgba(255,255,255,.8)}
.footer-grid{padding:80px 0 50px;display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px}
.footer-brand p{margin:14px 0 20px;font-size:.88rem;color:rgba(255,255,255,.55)}
.brand-mark-light{color:#fff}
.brand-sub-light{color:var(--terracotta)}
.footer-social{display:flex;gap:12px}
.social-icon{
  width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;position:relative;transition:all .3s ease;
}
.social-icon::after{content:'';width:14px;height:14px;background:rgba(255,255,255,.7);border-radius:3px}
.social-icon:hover{background:var(--terracotta);border-color:var(--terracotta)}
.footer-col h4{color:#fff;font-family:var(--font-display);font-size:1rem;margin-bottom:18px}
.footer-col{display:flex;flex-direction:column;gap:12px;font-size:.88rem}
.footer-col a:hover{color:var(--terracotta)}
.footer-newsletter p{font-size:.85rem;color:rgba(255,255,255,.55);margin-bottom:14px}
.newsletter-form{display:flex;border-radius:999px;overflow:hidden;background:rgba(255,255,255,.08)}
.newsletter-form input{flex:1;background:none;border:none;padding:12px 16px;color:#fff;font-size:.85rem}
.newsletter-form input::placeholder{color:rgba(255,255,255,.5)}
.newsletter-form button{background:var(--terracotta);color:#fff;padding:0 18px;font-weight:700}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:22px 0}
.footer-bottom-inner{text-align:center;font-size:.8rem;color:rgba(255,255,255,.5)}

/* ===== Floating buttons ===== */
.whatsapp-float{
  position:fixed;bottom:26px;left:26px;width:56px;height:56px;border-radius:50%;background:#25D366;
  display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 12px 26px -8px rgba(0,0,0,.4);
  z-index:500;transition:transform .3s ease;
}
.whatsapp-float svg{width:28px;height:28px}
.whatsapp-float:hover{transform:scale(1.1)}
.back-to-top{
  position:fixed;bottom:26px;right:26px;width:48px;height:48px;border-radius:50%;background:var(--accent);
  color:#fff;font-size:1.2rem;box-shadow:0 12px 26px -8px rgba(0,0,0,.4);z-index:500;
  opacity:0;visibility:hidden;transform:translateY(12px);transition:all .35s ease;
}
.back-to-top.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:var(--terracotta)}

/* ===== Scroll reveal base ===== */
.reveal-left,.reveal-right{opacity:0;transition:opacity .8s var(--ease), transform .8s var(--ease)}
.reveal-left{transform:translateX(-40px)}
.reveal-right{transform:translateX(40px)}
.about .reveal-up,.rooms .reveal-up,.tourist .reveal-up,.blog .reveal-up,.facility.reveal-up{
  opacity:0;transform:translateY(30px);transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.in-view{opacity:1 !important;transform:none !important}
.room-card.in-view{transition-delay:calc(var(--i,0) * .08s)}
.tourist-card.in-view,.blog-card.in-view,.facility.in-view{transition-delay:calc(var(--i,0) * .07s)}

/* ===========================================================
   RESPONSIVE
=========================================================== */
@media (max-width:1080px){
  .about-grid,.booking-grid,.contact-grid{grid-template-columns:1fr;gap:56px}
  .img-main{height:420px}
  .facilities-grid{grid-template-columns:repeat(4,1fr)}
  .room-grid{grid-template-columns:1fr 1fr}
  .tourist-grid,.blog-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}

/* =========================================
   MOBILE NAVIGATION
   ========================================= */

@media (max-width: 860px) {

    .nav-inner {
        width: 92%;
        position: relative;
    }

    /* Hamburger button */

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        width: 44px;
        height: 44px;

        gap: 5px;

        background: rgba(255, 255, 255, 0.10);

        border: 1px solid rgba(255, 255, 255, 0.25);

        border-radius: 12px;

        z-index: 1001;

        flex-shrink: 0;
    }

    .nav-toggle span {
        display: block;

        width: 21px;
        height: 2px;

        background: #fff;

        border-radius: 5px;

        transition: transform 0.3s ease,
                    opacity 0.3s ease;
    }


    /* Mobile menu */

    .nav-links {

        position: fixed;

        top: 0;
        right: -100%;

        width: min(320px, 82vw);
        height: 100vh;

        padding: 110px 28px 40px;

        display: flex;
        flex-direction: column;

        justify-content: flex-start;
        align-items: stretch;

        gap: 8px;

        background: rgba(21, 56, 69, 0.97);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border-left: 1px solid rgba(255,255,255,0.15);

        box-shadow:
            -20px 0 50px rgba(0,0,0,0.30);

        transition: right 0.4s ease;

        z-index: 1000;
    }


    /* OPEN */

    .nav-links.is-open {
        right: 0;
    }


    /* Links */

    .nav-links .nav-link {

        display: block;

        width: 100%;

        padding: 14px 16px;

        border-radius: 12px;

        color: #fff;

        font-size: 1rem;

        font-weight: 500;

        transition:
            background 0.25s ease,
            color 0.25s ease,
            transform 0.25s ease;
    }


    .nav-links .nav-link:hover {

        background: rgba(255,255,255,0.08);

        color: #fff;

        transform: translateX(5px);
    }


    .nav-links .nav-link.active {

        background: rgba(199,107,74,0.18);

        color: var(--terracotta);
    }


    /* Hide desktop Book Now */

    .nav-cta {
        display: none;
    }


    /* Hamburger → X */

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}
@media (max-width:480px){
  .hero-title{font-size:clamp(2rem,9vw,2.8rem)}
  .booking-form,.contact-form{padding:26px}
  .whatsapp-float{width:50px;height:50px;bottom:18px;left:18px}
  .back-to-top{width:42px;height:42px;bottom:18px;right:18px}
}
/* FORCE HERO GLASS TO RIGHT SIDE */

/* =====================================================
   MOBILE — STOP HORIZONTAL MOVEMENT
   ===================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

body {
    position: relative;
}


/* Keep every major section inside the screen */

.hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100svh;
    min-height: 600px;
    overflow: hidden !important;
}


/* Stop hero background from creating horizontal overflow */

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* Mobile hero image */

.hero-slide {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* Hero content stays inside viewport */

.hero-content {
    width: 100%;
    max-width: 100vw;

    overflow: hidden;

    box-sizing: border-box;
}


/* Mobile navigation stays attached to screen */

@media (max-width: 860px) {

    .navbar {
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
    }

    .navbar .nav-inner {
        width: 92%;
        max-width: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 2000;
        flex-shrink: 0;
    }

}
@media (max-width: 860px) {

    .nav-links {
        position: fixed !important;

        top: 0;
        right: -100%;

        height: 100dvh;

        width: min(320px, 82vw);

        z-index: 1500;
    }

    .nav-links.is-open {
        right: 0;
    }

}

/* =====================================================
   FINAL HERO LAYOUT
   ===================================================== */

/* DESKTOP */

@media (min-width: 861px) {

    .hero-content {
        position: relative;

        width: 100%;
        min-height: 100vh;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 40px 3vw 40px 40px;

        box-sizing: border-box;

        overflow: visible;
    }

    .hero-glass {
        position: relative;

        display: block;

        visibility: visible;
        opacity: 1;

        width: 420px;
        max-width: 38vw;

        margin: 0;

        transform: translateZ(0);
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 860px) {

    .hero-content {
        position: relative;

        width: 100%;
        max-width: 100vw;

        min-height: 100vh;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 20px 15px;

        box-sizing: border-box;

        overflow: hidden;
    }

    .hero-glass {
        position: relative;

        display: block;

        visibility: visible;
        opacity: 1;

        width: min(430px, 100%);

        max-width: 100%;

        margin: 0;

        transform: translateZ(0);
    }

}
/* =========================================
   FINAL HERO GLASS TEXT SIZE
   ========================================= */

@media (min-width: 861px) {

    .hero-glass {
        width: 420px;
        padding: 32px 34px;
        box-sizing: border-box;
    }

    .hero-eyebrow {
        font-size: 10px !important;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 42px !important;
        line-height: 1.02 !important;
        letter-spacing: -1px !important;
        margin: 0;
    }

    .hero-tagline {
        font-size: 12px !important;
        line-height: 1.45 !important;
        margin-top: 15px;
    }

    .hero-cta {
        margin-top: 20px;
        gap: 9px;
    }

    .hero-cta .btn {
        padding: 9px 18px;
        font-size: 12px;
    }

}
/* =========================================
   ABOUT SECTION — MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 768px) {

    /* About main layout */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: start;
    }


    /* Main image */
    .about-media {
        width: 100%;
        position: relative;
        padding-bottom: 45px;
    }

    .img-main {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }


    /* Floating image */
    .img-float {
        position: absolute;

        width: 48%;
        max-width: 190px;

        left: 15px;
        bottom: 0;

        border: 5px solid var(--paper);

        border-radius: var(--radius-md);

        box-shadow: var(--shadow-lift);
    }


    /* Badge */
    .about-badge {
        top: 18px;
        right: 12px;

        width: 90px;
        height: 90px;

        box-shadow:
            0 12px 25px -10px rgba(199,107,74,.6);
    }

    .about-badge-num {
        font-size: 1.25rem;
    }

    .about-badge-label {
        font-size: .58rem;
        margin-top: 2px;
    }


    /* About text */
    .about-lede {
        font-size: .98rem;
        line-height: 1.65;

        margin-bottom: 28px;
    }


    /* Tabs / information */
    .about-tabs {
        display: grid;
        gap: 20px;

        margin-bottom: 32px;
    }

    .about-tabs h3 {
        font-size: 1.08rem;
        margin-bottom: 5px;
    }

    .about-tabs p {
        font-size: .9rem;
        line-height: 1.6;
    }


    /* Facilities */
    .facilities-grid {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .facility {
        padding: 16px 8px;

        min-height: 90px;

        justify-content: center;

        font-size: .78rem;
    }

    .facility-icon {
        width: 28px;
        height: 28px;
    }

    .facility-icon::after {
        inset: 8px;
    }

}

/* =========================================
   MOBILE ROOMS - FORCE ONE COLUMN
   ========================================= */

@media screen and (max-width: 768px) {

  .room-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 24px !important;
  }

  .room-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: 1 / -1 !important;
  }

  .room-card.is-visible {
    display: block !important;
  }

  .room-media {
    width: 100% !important;
    height: 230px !important;
  }

  .room-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .room-body {
    width: 100% !important;
    box-sizing: border-box !important;
  }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media screen and (max-width: 480px) {

  .room-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .room-card {
    width: 100% !important;
    grid-column: 1 !important;
  }

  .room-media {
    height: 210px !important;
  }

  .room-body {
    padding: 20px !important;
  }

}
/* =========================================
   BOOKING - MOBILE VIEW
   ========================================= */

@media screen and (max-width: 768px) {

  /* Booking section */
  .booking {
    padding: 60px 20px !important;
  }

  /* Main booking layout */
  .booking-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 35px !important;
    width: 100% !important;
  }

  /* Intro section */
  .booking-intro {
    width: 100% !important;
    text-align: left !important;
  }

  .booking-intro .section-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  .booking-intro .section-sub {
    font-size: .85rem !important;
    line-height: 1.6 !important;
  }

  /* Booking points */
  .booking-points {
    padding-left: 20px !important;
    margin-top: 20px !important;
  }

  .booking-points li {
    font-size: .82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
  }

  /* Booking form */
  .booking-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 25px !important;
  }

  /* All form rows become one column */
  .booking-form .form-row,
  .booking-form .form-row-3 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }

  /* Individual fields */
  .booking-form .form-field {
    width: 100% !important;
    margin-bottom: 18px !important;
    box-sizing: border-box !important;
  }

  /* Labels */
  .booking-form label {
    font-size: .78rem !important;
    margin-bottom: 7px !important;
  }

  /* Inputs */
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: .85rem !important;
  }

  .booking-form input,
  .booking-form select {
    min-height: 46px !important;
  }

  .booking-form textarea {
    min-height: 90px !important;
    resize: vertical;
  }

  /* Book button */
  .booking-form .btn-block {
    width: 100% !important;
    min-height: 50px !important;
    font-size: .9rem !important;
    margin-top: 5px !important;
  }

  /* Success popup */
  .booking-success {
    padding: 20px !important;
  }

  .booking-success-card {
    width: 100% !important;
    max-width: 400px !important;
    box-sizing: border-box !important;
    padding: 28px 20px !important;
  }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media screen and (max-width: 480px) {

  .booking {
    padding: 50px 15px !important;
  }

  .booking-grid {
    gap: 28px !important;
  }

  .booking-intro .section-title {
    font-size: 1.55rem !important;
  }

  .booking-intro .section-sub {
    font-size: .8rem !important;
  }

  .booking-form {
    padding: 20px !important;
    border-radius: 15px !important;
  }

  .booking-form .form-field {
    margin-bottom: 15px !important;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: .82rem !important;
  }

  .booking-form input,
  .booking-form select {
    min-height: 44px !important;
  }

  .booking-form textarea {
    min-height: 85px !important;
  }

}
/* ===== Tourist Places Image Fix ===== */

.tourist-card {
  overflow: hidden;
}

.tourist-card > img {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Keep every tourist image the same size */
.tourist-grid .tourist-card {
  display: flex;
  flex-direction: column;
}

.tourist-grid .tourist-body {
  flex: 1;
}


/* ===== Tablet ===== */

@media (max-width: 900px) {

  .tourist-card > img {
    height: 210px !important;
  }

}


/* ===== Mobile ===== */

@media (max-width: 768px) {

  .tourist-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .tourist-card {
    width: 100% !important;
  }

  .tourist-card > img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

}


/* ===== Small Mobile ===== */

@media (max-width: 480px) {

  .tourist-card > img {
    height: 200px !important;
  }

}
/* =========================================
   BLOG / FROM OUR JOURNAL - MOBILE
   ========================================= */

@media screen and (max-width: 768px) {

  /* Blog section */
  .blog {
    padding: 60px 20px !important;
    overflow: hidden;
  }

  /* One card per row */
  .blog-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
  }

  /* Blog card */
  .blog-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Full-width image */
  .blog-card img {
    display: block !important;
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* Blog content */
  .blog-body {
    padding: 20px !important;
    box-sizing: border-box !important;
  }

  /* Date */
  .blog-date {
    font-size: .7rem !important;
  }

  /* Title */
  .blog-body h3 {
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
    margin: 8px 0 !important;
  }

  /* Description */
  .blog-body p {
    font-size: .82rem !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
  }

  /* Disable desktop hover movement on mobile */
  .blog-card:hover {
    transform: none !important;
  }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media screen and (max-width: 480px) {

  .blog {
    padding: 50px 15px !important;
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .blog-card {
    width: 100% !important;
  }

  .blog-card img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
  }

  .blog-body {
    padding: 18px !important;
  }

  .blog-body h3 {
    font-size: 1rem !important;
  }

  .blog-body p {
    font-size: .78rem !important;
  }

}
/* =========================================
   CONTACT - MOBILE VIEW
   ========================================= */

@media screen and (max-width: 768px) {

  /* Contact section */
  .contact {
    padding: 60px 20px !important;
    overflow: hidden;
  }

  /* One column layout */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 35px !important;
    width: 100% !important;
  }

  /* Contact information */
  .contact-grid > div:first-child {
    width: 100% !important;
  }

  .contact .section-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  .contact .section-sub {
    font-size: .85rem !important;
    line-height: 1.6 !important;
  }

  /* Contact list */
  .contact-list {
    display: grid !important;
    gap: 20px !important;
    margin: 25px 0 28px !important;
    padding: 0 !important;
  }

  .contact-list li {
    display: flex !important;
    gap: 13px !important;
    align-items: flex-start !important;
  }

  .contact-icon {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
  }

  .contact-list strong {
    font-size: .82rem !important;
  }

  .contact-list div {
    font-size: .8rem !important;
    line-height: 1.5 !important;
  }

  .contact-list a {
    font-size: .8rem !important;
    word-break: break-word;
  }

  /* Contact form */
  .contact-form {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 25px !important;
    gap: 16px !important;
    border-radius: 18px !important;
  }

  /* Form rows become one column */
  .contact-form .form-row,
  .contact-form .form-row-3 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .contact-form .form-field {
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  /* Inputs */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: .85rem !important;
  }

  .contact-form input,
  .contact-form select {
    min-height: 46px !important;
  }

  .contact-form textarea {
    min-height: 100px !important;
    resize: vertical;
  }

  /* Button */
  .contact-form button {
    width: 100% !important;
    min-height: 50px !important;
  }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media screen and (max-width: 480px) {

  .contact {
    padding: 50px 15px !important;
  }

  .contact-grid {
    gap: 28px !important;
  }

  .contact .section-title {
    font-size: 1.55rem !important;
  }

  .contact .section-sub {
    font-size: .8rem !important;
  }

  .contact-list {
    gap: 17px !important;
    margin: 22px 0 25px !important;
  }

  .contact-icon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .contact-form {
    padding: 20px !important;
    gap: 14px !important;
    border-radius: 15px !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: .82rem !important;
  }

}
/* =========================================
   FOOTER - MOBILE VIEW
   ========================================= */

@media screen and (max-width: 768px) {

  /* Footer */
  .footer {
    overflow: hidden;
  }

  /* Footer grid - ONE COLUMN */
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 35px !important;
    padding: 55px 20px 40px !important;
    text-align: center !important;
  }

  /* Footer brand */
  .footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-brand p {
    max-width: 400px !important;
    margin: 12px auto 18px !important;
    font-size: .82rem !important;
    line-height: 1.6 !important;
  }

  /* Social icons */
  .footer-social {
    justify-content: center !important;
    gap: 10px !important;
  }

  .social-icon {
    width: 38px !important;
    height: 38px !important;
  }

  /* Footer columns */
  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 9px !important;
    font-size: .82rem !important;
  }

  .footer-col h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  .footer-col a {
    line-height: 1.5 !important;
  }

  /* Newsletter */
  .footer-newsletter {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }

  .footer-newsletter p {
    font-size: .8rem !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  /* Newsletter form */
  .newsletter-form {
    width: 100% !important;
    min-height: 46px !important;
    box-sizing: border-box !important;
  }

  .newsletter-form input {
    min-width: 0 !important;
    width: 100% !important;
    padding: 11px 14px !important;
    font-size: .8rem !important;
  }

  .newsletter-form button {
    flex: 0 0 auto !important;
    padding: 0 16px !important;
    font-size: .78rem !important;
  }

  /* Footer bottom */
  .footer-bottom {
    padding: 18px 20px !important;
  }

  .footer-bottom-inner {
    font-size: .72rem !important;
    line-height: 1.6 !important;
  }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media screen and (max-width: 480px) {

  .footer-grid {
    padding: 45px 15px 30px !important;
    gap: 30px !important;
  }

  .footer-brand p {
    font-size: .78rem !important;
  }

  .footer-col {
    font-size: .78rem !important;
  }

  .footer-col h4 {
    font-size: .95rem !important;
  }

  .newsletter-form {
    min-height: 44px !important;
  }

  .newsletter-form input {
    padding: 10px 12px !important;
    font-size: .75rem !important;
  }

  .newsletter-form button {
    padding: 0 13px !important;
    font-size: .72rem !important;
  }

  .footer-bottom {
    padding: 16px 15px !important;
  }

}
/* =========================================
   MOBILE HAMBURGER COLOR ON SCROLL
   ========================================= */

@media (max-width: 860px) {

    /* Top of page - white hamburger */
    .navbar .nav-toggle span {
        background: #fff;
        transition: background .35s ease;
    }

    /* After scrolling - dark accent hamburger */
    .navbar.is-scrolled .nav-toggle span {
        background: var(--accent);
    }

    /* When mobile menu is open - white X */
    .navbar .nav-toggle.is-open span {
        background: #fff;
    }

}
