:root {
    --yellow: #ffeb3b;
    --cyan: #00d2ff;
    --red: #ff3d00;
    --black: #1a1a1a;
    --white: #ffffff;
    --grid-color: rgba(0,0,0,0.04);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--yellow);
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 45px 45px;
    color: var(--black);
    overflow-x: hidden;
}

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

/* =====================
   UNIFIED HEADER BAR
   ===================== */

/* Scroll offset so nav doesn't cover section headings */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0 clamp(16px, 4%, 40px);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00bcd4;
    border: 4px solid var(--black);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 10px 24px;
    box-shadow: 0 8px 0px rgba(0,0,0,0.25);
    gap: 20px;
}

/* Logo inside header */
.main-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.main-logo-img {
    height: clamp(36px, 5vw, 52px);
    width: auto;
    display: block;
    object-fit: contain;
}

/* Hamburger (mobile only) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav links */
.nav-container {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-container a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-container a:hover { color: var(--cyan); text-decoration: underline; }

/* =====================
   HERO — SPLIT LAYOUT
   Left: text | Right: carousel
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 clamp(24px, 5vw, 80px);
    overflow: hidden;
}

/* ── Left text panel ── */
.hero-text-panel {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(100px, 12vw, 160px);
    padding-bottom: clamp(40px, 6vw, 80px);
    position: relative;
    z-index: 2;
}

/* ── Right carousel panel ── */
.hero-carousel-panel {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(80px, 10vw, 100px);
    padding-bottom: clamp(40px, 6vw, 80px);
    position: relative;
    z-index: 2;
}

/* Override homie-carousel sizing for the hero */
.hero-carousel {
    width: clamp(280px, 38vw, 550px) !important;
    height: clamp(240px, 36vw, 550px) !important;
    border-radius: 16px !important;
    border: 4px solid var(--black) !important;
    box-shadow: 10px 10px 0px var(--black) !important;
    aspect-ratio: unset !important;
    overflow: visible !important;
    transform: rotate(1deg);
}

/* Clip only the image track, not the whole carousel */
.hero-carousel .homie-car-track-wrap {
    border-radius: 14px;
    overflow: hidden;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Hide prev/next arrows on hero carousel */
.hero-carousel .homie-car-btn {
    display: none !important;
}

/* ── Text styles ── */
.title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.certified-title-img {
    width: clamp(320px, 44vw, 720px);
    height: auto;
    display: block;
}

.sub-badge {
    position: absolute;
    top: -14px;
    right: -10px;
    transform: rotate(6deg);
    transform-origin: top right;
    background: var(--red);
    color: var(--white);
    padding: 5px 14px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.72rem, 1.4vw, 0.95rem);
    border: 3px solid var(--black);
    border-radius: 6px;
    box-shadow: 4px 4px 0px var(--black);
    white-space: nowrap;
    z-index: 10;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Arial', sans-serif;
    background: #00bcd4;
    color: var(--white);
    font-size: clamp(1.2rem, 0.1vw, 2.4rem);
    padding: 7px 22px;
    border-radius: 6px;
    box-shadow: 5px 5px 0px var(--black);
    letter-spacing: 1px;
    display: inline-block;
    position: absolute;
    bottom: -18px;
    left: -50px;
    transform: skew(-5deg) rotate(7deg);
    white-space: nowrap;
    z-index: 10;
    margin: 0;
    border: 4px solid var(--black);
}

.hero-description {
    font-weight: 700;
    font-size: clamp(0.88rem, 1.4vw, 1rem);
    max-width: 400px;
    color: var(--black);
    line-height: 1.75;
    text-shadow: none;
    margin-bottom: 0;
    margin-left: clamp(16px, 1vw, 48px);
}

/* ── Mobile: stack vertically ── */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: stretch;
        min-height: unset;
        padding-bottom: 48px;
    }

    .hero-text-panel {
        flex: none;
        padding: 110px 6% 24px;
        align-items: center;
        text-align: center;
    }

    .hero-description { max-width: 100%; }

    .hero-carousel-panel {
        flex: none;
        padding: 0 6% 48px;
    }

    .hero-carousel {
        height: clamp(220px, 55vw, 380px) !important;
    }
}

@media (max-width: 480px) {
    .certified-title-img { width: clamp(180px, 75vw, 320px); }
    .sub-badge { display: none; }
}




/* Shared deco positioning */
.deco {
    position: absolute;
    pointer-events: none;
}

/* Pink 4-point star — clip-path polygon */
.deco-star-pink {
    width: clamp(60px, 8vw, 110px);
    height: clamp(60px, 8vw, 110px);
    background: #ff80ab;
    clip-path: polygon(
        50% 0%,   62% 38%, 100% 50%,  62% 62%,
        50% 100%, 38% 62%,   0% 50%,  38% 38%
    );
    top: 15%;
    left: 5%;
    animation: spin-slow 14s linear infinite;
    border: none;
    box-shadow: none;
}

/* Teal 6-point star — clip-path polygon */
.deco-star-teal {
    width: clamp(50px, 7vw, 95px);
    height: clamp(50px, 7vw, 95px);
    background: #00d2ff;
    clip-path: polygon(
        50%  0%, 61% 35%, 98% 35%, 68% 57%,
        79% 91%, 50% 70%, 21% 91%, 32% 57%,
         2% 35%, 39% 35%
    );
    bottom: clamp(60px, 10vh, 130px);
    right: clamp(20px, 5vw, 80px);
    animation: spin-slow 18s linear infinite reverse;
}

/* 12-pointed red star — pinned to top-right corner of hero carousel */
.deco-star-12 {
    width: clamp(64px, 8vw, 108px);
    height: clamp(64px, 8vw, 108px);
    top: -32px;
    right: -32px;
    filter: drop-shadow(3px 3px 0px #1a1a1a);
    animation: spin-slow 22s linear infinite;
    z-index: 20;
    pointer-events: none;
    transform-origin: center center;
}

/* Lightbulb SVG */
.deco-bulb {
    width: clamp(45px, 6vw, 80px);
    top: clamp(90px, 12vh, 150px);
    right: clamp(20px, 6vw, 100px);
    animation: bob 4s ease-in-out infinite;
    filter: drop-shadow(3px 3px 0px #1a1a1a);
}

/* Lightbulb inside featured-perks-img — top-left, bigger, bob only */
.featured-perks-img .deco-bulb,
#offers .featured-perks-img .deco-bulb {
    width: clamp(70px, 8vw, 110px);
    height: clamp(70px, 8vw, 110px);
    top: -20px;
    left: -20px;
    right: auto;
    animation: bob 4s ease-in-out infinite;
}

/* Pink star inside a sticker card — top-right corner */
.sticker-card .deco-star-pink {
    width: clamp(50px, 6vw, 80px);
    height: clamp(50px, 6vw, 80px);
    top: -18px;
    right: -18px;
    left: auto;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes bob {
    0%, 100% { transform: translateY(0px) rotate(-6deg); }
    50%       { transform: translateY(-12px) rotate(6deg); }
}

/* =====================
   SECTIONS
   ===================== */
section { padding: clamp(50px, 8vw, 100px) clamp(16px, 6%, 8%); }

#offers { padding-top: 20px; padding-bottom: 60px; }

/* ── Section decos for #offers and #bundles ── */
/* Decos are now inside sticker cards; position relative to the card */
#offers .sticker-card,
#bundles .sticker-card {
    overflow: visible; /* allow deco to peek outside card edge */
}

#offers .deco,
#bundles .deco {
    pointer-events: none;
    position: absolute;
    animation: spin-slow 20s linear infinite;
}

/* OFFERS: pink 4-point star — top-right corner of card 1 */
#offers .deco-s1 {
    width: clamp(44px, 5vw, 72px);
    height: clamp(44px, 5vw, 72px);
    background: #ff80ab;
    clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
    top: -22px;
    right: -22px;
    animation-duration: 16s;
    z-index: 10;
}

/* OFFERS: cyan 6-point star — bottom-left corner of card 3 */
#offers .deco-s2 {
    width: clamp(40px, 5vw, 68px);
    height: clamp(40px, 5vw, 68px);
    background: #00d2ff;
    clip-path: polygon(
        50%  0%, 61% 35%, 98% 35%, 68% 57%,
        79% 91%, 50% 70%, 21% 91%, 32% 57%,
         2% 35%, 39% 35%
    );
    bottom: -20px;
    left: -20px;
    animation: spin-slow 18s linear infinite reverse;
    z-index: 10;
}

/* BUNDLES: red 6-point star — bottom-right corner of card 4 */
#bundles .deco-s1 {
    width: clamp(44px, 5vw, 72px);
    height: clamp(44px, 5vw, 72px);
    background: var(--red);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    bottom: -20px;
    right: -20px;
    animation-duration: 18s;
    z-index: 10;
}

/* BUNDLES: cyan 4-point star — top-left corner of card 1 */
#bundles .deco-s3 {
    width: clamp(40px, 4.5vw, 65px);
    height: clamp(40px, 4.5vw, 65px);
    background: var(--cyan);
    clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
    top: -20px;
    left: -20px;
    animation-duration: 24s;
    animation-direction: reverse;
    z-index: 10;
}




.cafe-bar-card {
    background-image: url('img/cafe.webp') !important;
    background-size: calc(100% - 24px) auto !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: clamp(20px, 3vw, 35px) !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: stretch;
}

/* Dark overlay so text is readable over the image */
.cafe-bar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 14px;
    z-index: 0;
    transition: opacity 0.3s;
}

.cafe-bar-card:hover::before {
    opacity: 0.6;
}

.cafe-bar-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cafe-bar-label {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.4);
}

.cafe-bar-card p {
    color: var(--white);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    flex-grow: 1;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}

.cafe-bar-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--yellow);
    border: 3px solid var(--black);
    border-radius: 50%;
    color: var(--black);
    box-shadow: 4px 4px 0px var(--black);
    transition: transform 0.25s, box-shadow 0.25s;
    align-self: flex-start;
    margin-top: auto;
}

.cafe-bar-card:hover .cafe-bar-arrow {
    transform: translateX(4px) scale(1.1);
    box-shadow: 6px 6px 0px var(--black);
}

.section-title {
    display: inline-block;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.6rem, 5vw, 3rem);
    background: var(--red);
    color: var(--white);
    padding: 8px 24px;
    margin-bottom: clamp(30px, 5vw, 60px);
    transform: skew(-10deg);
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0px var(--black);
    border-radius: 8px;
}

/* =====================
   PERKS LAYOUT
   ===================== */
.perks-container {
    display: flex;
    align-items: center;
    gap: clamp(30px, 5vw, 60px);
    margin-top: 20px;
}

.featured-perks-img {
    flex: 1;
    position: relative;
    transform: rotate(-1.5deg);
}

.featured-perks-img img {
    width: 100%;
    height: clamp(260px, 40vw, 550px);
    object-fit: cover;
    border: 6px solid var(--black);
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--black);
}

.img-caption-tag {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--red);
    color: white;
    font-family: 'Oswald', sans-serif;
    padding: 10px 20px;
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    border: 4px solid var(--white);
    box-shadow: 8px 8px 0px var(--black);
    transform: rotate(-3deg);
    z-index: 5;
}

.perks-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 2vw, 25px);
}

.perks-grid .sticker-card {
    min-height: 200px;
    padding: clamp(20px, 3vw, 35px);
}

/* =====================
   STICKER CARDS
   ===================== */
.sticker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 40px);
}

.sticker-card {
    background: var(--white);
    padding: clamp(18px, 3vw, 25px);
    border: 5px solid var(--black);
    border-radius: 20px;
    box-shadow: 12px 12px 0px var(--black);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    --tilt: 2deg;
    transform: rotate(var(--tilt));
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticker-card:nth-child(even) { --tilt: -2deg; }
.sticker-card:nth-child(odd)  { --tilt:  2deg; }

.sticker-card:hover {
    transform: scale(1.04) rotate(0deg) !important;
    box-shadow: 15px 15px 0px var(--cyan);
    z-index: 10;
}

.cyan-card { background: var(--cyan); color: white; }
.red-card  { background: var(--red);  color: white; }

.sticker-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 4px solid var(--black);
    border-radius: 10px;
    margin-bottom: 20px;
    transform: rotate(-1deg);
}

.sticker-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sticker-card p { flex-grow: 1; font-size: clamp(0.85rem, 1.5vw, 1rem); }


/* =====================
   ROOMS GRID (2×2)
   ===================== */
#rooms { position: relative; }

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 4vw, 60px);
    max-width: 2000px;
    margin: 0 auto;
}

.room-card:hover {
    transform: scale(1.02) !important;
    box-shadow: 16px 16px 0px var(--cyan) !important;
    z-index: 10;
}

/* Alternate accent shadows per card */
.room-card:nth-child(1) { box-shadow: 12px 12px 0px var(--black); }
.room-card:nth-child(2) { box-shadow: 12px 12px 0px var(--black); }
.room-card:nth-child(3) { box-shadow: 12px 12px 0px var(--black); }
.room-card:nth-child(4) { box-shadow: 12px 12px 0px var(--black); }

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rooms-grid {
        gap: 20px;
    }
}

/* =====================
   ROOMS & BUNDLES
   ===================== */
#bundles .sticker-grid {
    grid-template-columns: repeat(2, 1fr);
}


.bundle-badge {
    display: inline-block;
    background: var(--black);
    color: white;
    padding: 4px 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.red-badge   { background: var(--red); }
.cyan-badge  { background: var(--cyan); color: var(--black); }
.green-badge { background: #43a047; }

#bundles .sticker-card p { margin-bottom: 20px; }

/* =====================
   PRICE & BOOKING
   ===================== */
.price-tag {
    background: var(--red);
    color: white;
    padding: 5px 15px;
    font-weight: 900;
    display: inline-block;
    margin-top: auto;
    border: 3px solid var(--black);
    align-self: flex-start;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.price-tag.academic-rate {
    background: #e0f7fa;
    color: #00796b;
    border: 2px solid #00bcd4;
}

.price-tag.corporate-rate {
    background: #fff3e0;
    color: #e65100;
    border: 2px solid #ff9800;
}

.price-tag.academic-rate,
.price-tag.corporate-rate {
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 700;
    border-radius: 8px;
    padding: 7px 14px;
    box-shadow: 2px 2px 0px var(--black);
    text-align: center;
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    min-width: 130px;
    text-decoration: none;
    background: var(--black);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    padding: 10px 18px;
    border: 3px solid var(--white);
    border-radius: 8px;
    box-shadow: 6px 6px 0px rgba(0,0,0,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.45);
}

.spaces-bg { background: rgba(0,0,0,0.03); }

/* =====================
   CAFE BAR SECTION
   ===================== */
.cafe-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cafe-section .section-title {
    box-shadow: 8px 8px 0px var(--cyan);
}

/* Cafe section title image */
.cafe-title-img {
    display: inline-block;
    height: clamp(250px, 8vw, 100px);
    width: auto;
    object-fit: contain;
    margin-bottom: clamp(12px, 2vw, 24px);
}

.cafe-tagline {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--black);
    margin-top: -20px;
    margin-bottom: clamp(30px, 5vw, 50px);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cafe-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.cafe-gallery-main {
    position: relative;
    border: 4px solid #f37e19;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 8px 8px 0px #f37e19;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cafe-gallery-main img {
    width: 100%;
    flex: 1;
    min-height: 0;
    max-width: unset;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cafe-gallery-main:hover img {
    transform: scale(1.04);
}

.cafe-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
    justify-items: center;
    align-content: stretch;
}

.cafe-gallery-item {
    position: relative;
    border: 3px solid var(--black);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 5px 5px 0px #f37e19;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cafe-gallery-item img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.cafe-img-label {
    position: relative;
    background: var(--black);
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    padding: 5px 0;
    border-top: 2px solid var(--yellow);
    flex-shrink: 0;
}

.cafe-gallery-main .cafe-img-label {
    font-size: 1rem;
    padding: 8px 0;
    border-top: 3px solid var(--yellow);
}

.cafe-cta {
    text-align: center;
    margin-top: clamp(24px, 4vw, 40px);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(0,0,0,0.5);
}

.cafe-cta a {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cafe-gallery {
        grid-template-columns: 1fr;
        padding: 0 8px;
    }
    .cafe-gallery-main {
        height: 425px;
    }
    .cafe-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cafe-gallery-item {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .cafe-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* =====================
   AMENITIES
   ===================== */
.amenities-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 14px;
    border-bottom: 2px solid var(--black);
    display: inline-block;
    margin-bottom: 8px;
}

.amenities-list {
    list-style: none;
    margin-bottom: 16px;
}

.amenities-list li {
    font-size: 0.82rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.amenities-list li i {
    width: 18px;
    color: var(--red);
    text-align: center;
    flex-shrink: 0;
}

/* =====================
   TERMS
   ===================== */
.terms-bg {
    background: var(--white);
    border-top: 10px solid var(--black);
}

.terms-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 3vw, 30px);
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: clamp(16px, 2.5vw, 25px);
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0px var(--black);
    border-radius: 20px;
    --tilt: -0.5deg;
    transform: rotate(var(--tilt));
    transition: transform 0.3s, box-shadow 0.3s;
}

.term-item:nth-child(even) { --tilt: 0.5deg; }

.term-number {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
    font-weight: 900;
    color: var(--white);
    background: var(--black);
    padding: 8px 14px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* =====================
   FOOTER
   ===================== */
footer {
    background: var(--black);
    color: var(--white);
    padding: clamp(60px, 10vw, 100px) clamp(20px, 8%, 10%) 40px;
    clip-path: polygon(0% 1%, 100% 1%, 100% 100%, 0% 100%);
    
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 3.2fr;
    gap: 2rem;
    align-items: start;
}

/* Find Us + map side by side */
.footer-findus-map {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.footer-findus-info {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-findus-info h4 {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-findus-info p,
.footer-findus-info a {
    line-height: 1.4;
    font-size: 0.9rem;
    word-break: break-all;
    overflow-wrap: break-word;
}

.footer-map-col {
    flex: 1 1 auto;
    min-width: 0;
}

.footer-map-col iframe {
    display: block;
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.15);
    margin-top: 0;
}

.footer-section h4 {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    text-decoration: none;
    line-height: 2;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--cyan);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 1.1rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-links a i {
    display: block;
    line-height: 1;
    margin: 0;
    width: auto;
    color: inherit;
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px) scale(1.08);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* — TABLET LANDSCAPE / SMALL DESKTOP (≤1024px) — */
@media (max-width: 1024px) {
    .perks-container { flex-direction: column; }
    .featured-perks-img { width: 100%; max-width: 600px; margin: 0 auto 50px; transform: none; }
    .perks-grid { width: 100%; grid-template-columns: repeat(2, 1fr); }
    #bundles .sticker-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

/* — TABLET PORTRAIT (≤768px) — */
@media (max-width: 768px) {

    /* Show hamburger, hide inline nav links */
    .nav-toggle { display: flex; }

    .nav-container {
        display: none;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--black);
        border: 4px solid var(--white);
        border-radius: 0 0 12px 12px;
        overflow: hidden;
        box-shadow: 0 8px 0px rgba(0,0,0,0.25);
    }

    .nav-container.open { display: flex; }

    .nav-container a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        font-size: 1rem;
        white-space: normal;
    }

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

    /* Hero — mobile handled inside hero block above */
    .hero-subtitle { font-size: clamp(0.6rem, 0.1vw, 1rem); bottom: -14px; left: 55px; transform: skew(-5deg) rotate(0deg); }

    /* Sections */
    section { padding: 50px 5%; }

    /* Perks */
    .perks-grid { grid-template-columns: 1fr; }
    .perks-grid .sticker-card { min-height: unset; }

    /* Rooms — single column on tablet portrait */
    .rooms-grid { grid-template-columns: 1fr; }

    /* Bundles */
    #bundles .sticker-grid { grid-template-columns: 1fr; }

    /* Remove tilt on mobile — too cramped */
    .sticker-card,
    .sticker-card:nth-child(even),
    .sticker-card:nth-child(odd) { transform: none !important; }
    .sticker-card:hover { transform: scale(1.02) !important; }

    /* Prices */
    .price-row { flex-direction: column; gap: 8px; }

    /* Terms */
    .terms-container { grid-template-columns: 1fr; }
    .term-item,
    .term-item:nth-child(even),
    .term-item:nth-child(odd) { flex-direction: column; gap: 10px; transform: none !important; }

    /* Footer */
    footer { clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%); }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer-findus-map { grid-column: span 2; }
}

/* — MOBILE (≤480px) — */
@media (max-width: 480px) {
    .main-logo { font-size: 1.4rem; }

    .certified-title-img {
        width: clamp(200px, 85vw, 480px);
    }

    .sub-badge { display: none; }

    .section-title {
    text-align: center; font-size: 1.4rem; padding: 6px 16px; box-shadow: 5px 5px 0px var(--red); }

    .featured-perks-img img { height: 220px; }

    .img-caption-tag { font-size: 0.85rem; padding: 8px 14px; left: 0; bottom: -10px; }

    .sticker-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; gap: 20px; }

    .price-tag.academic-rate,
    .price-tag.corporate-rate { font-size: 0.75rem; padding: 6px 10px; }

    .book-now-btn { width: 100%; font-size: 1rem; padding: 12px; }

    .term-number { font-size: 1.3rem; padding: 6px 12px; }

    .footer-content { grid-template-columns: 1fr; }
    .footer-findus-map { grid-column: span 1; flex-direction: column; }
    .footer-map-col iframe { margin-top: 0; }
    footer { clip-path: none; padding-top: 40px; }
}

/* — SMALL MOBILE (≤360px) — */
@media (max-width: 360px) {
    .main-logo { font-size: 1.2rem; }
    .hero-subtitle { font-size: 0.5rem,0.1vw,0.85rem; padding: 5px 14px; bottom: -12px; left: -10px; transform: skew(-5deg) rotate(7deg); }
    .sticker-card h3 { font-size: 1.2rem; }
    .rooms-grid { gap: 16px; }
}

/* =====================
   SCROLL DOWN INDICATOR
   ===================== */


@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px) rotate(var(--tilt, 0deg)); }
    to   { opacity: 1; transform: translateY(0)    rotate(var(--tilt, 0deg)); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-55px) rotate(var(--tilt, 0deg)); }
    to   { opacity: 1; transform: translateX(0)     rotate(var(--tilt, 0deg)); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(55px)  rotate(var(--tilt, 0deg)); }
    to   { opacity: 1; transform: translateX(0)     rotate(var(--tilt, 0deg)); }
}

/* Pre-animation: hide via animation itself using fill-mode backwards */
.slide-in.slide-from-bottom { animation: fadeUp    0.55s ease both paused; }
.slide-in.slide-from-left   { animation: fadeLeft  0.55s ease both paused; }
.slide-in.slide-from-right  { animation: fadeRight 0.55s ease both paused; }

/* JS adds .visible → unpause */
.slide-in.visible.slide-from-bottom { animation-play-state: running; }
.slide-in.visible.slide-from-left   { animation-play-state: running; }
.slide-in.visible.slide-from-right  { animation-play-state: running; }

/* Stagger delays — only effective once running */
.slide-in.visible.delay-1 { animation-delay: 0.05s; }
.slide-in.visible.delay-2 { animation-delay: 0.15s; }
.slide-in.visible.delay-3 { animation-delay: 0.25s; }
.slide-in.visible.delay-4 { animation-delay: 0.35s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .slide-in,
    .slide-in.visible { opacity: 1 !important; animation: none !important; }
}

/* =====================
   REVIEWS SECTION
   ===================== */
.reviews-bg {
    background-color: var(--black);
    background-image:
        linear-gradient(rgba(243, 219, 8, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 230, 4, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    color: var(--white);
}

.reviews-bg .section-title {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 8px 8px 0px rgba(255,235,59,0.3);
}

/* ── Homie photo carousel (inside review badge) ── */
.homie-carousel {
    position: relative;
    width: 520px;
    height: 300px;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    border-radius: 14px;    
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.35);
}

.homie-car-track-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.homie-car-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.42s cubic-bezier(0.35, 0.85, 0.35, 1);
    will-change: transform;
    align-items: stretch;
}

.homie-car-slide {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.homie-car-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Placeholder shown until real images are added */
.homie-car-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.25);
}

.homie-car-placeholder i  { font-size: 1.8rem; }
.homie-car-placeholder span { font-size: 0.68rem; letter-spacing: 0.5px; }

/* Prev / Next buttons */
.homie-car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 26px;
    height: 26px;
    background: var(--black);
    color: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s, transform 0.2s;
    padding: 0;
}

.homie-carousel:hover .homie-car-btn { opacity: 1; }
.homie-car-prev { left: 6px; }
.homie-car-next { right: 6px; }

.homie-car-btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-50%) scale(1.12);
}

.homie-car-btn:disabled { opacity: 0 !important; pointer-events: none; }

/* Dots */
.homie-car-dots {
    position: absolute;
    bottom: 26px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    z-index: 5;
}

.homie-car-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, width 0.2s;
}

.homie-car-dot.active {
    background: var(--yellow);
    width: 14px;
    border-radius: 3px;
}

/* Auto-play progress bar */
.homie-car-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: var(--yellow);
    width: 0%;
    z-index: 6;
    border-radius: 0 2px 2px 0;
}

/* ─── Badge card layout ─── */
.google-badge-wrap {
    display: flex;
    justify-content: center;
}

.google-badge-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    border: 3px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 24px 28px;
    max-width: 100%;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.3);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.google-badge-card:hover {
    border-color: rgba(255,235,59,0.3);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
}

/* Google rating column */
.google-badge-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    min-width: 130px;
}

.google-full-logo {
    width: 80px;
    height: auto;
}

.google-badge-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
}

.google-badge-score {
    font-family: 'Oswald', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
}

.google-badge-stars {
    font-size: 1.25rem;
    color: var(--yellow);
    letter-spacing: 2px;
    white-space: nowrap;
}

.google-badge-stars .star-dim { opacity: 0.28; }

.google-badge-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    line-height: 1.4;
}

/* Dividers */
.google-badge-divider {
    width: 2px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    flex-shrink: 0;
    align-self: center;
}

/* CTA column */
.google-badge-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.google-badge-cta-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.25;
    white-space: nowrap;
}

.google-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 12px 22px;
    border: 3px solid var(--black);
    border-radius: 8px;
    box-shadow: 5px 5px 0px var(--yellow);
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
    white-space: nowrap;
}

.google-badge-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--yellow);
}

.google-badge-write-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
    align-self: flex-start;
    white-space: nowrap;
}

.google-badge-write-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ─── Responsive ─── */
@media (max-width: 860px) {
    .google-badge-card {
        flex-wrap: wrap;
        justify-content: center;
        padding: 28px 24px;
        gap: 20px;
    }
    .google-badge-divider { display: none; }
    .homie-carousel {
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        border-radius: 12px;
        order: -1;
    }
    .google-badge-left  { order: 0; }
    .google-badge-right { order: 1; align-items: center; text-align: center; }
    .google-badge-btn,
    .google-badge-write-link { align-self: center; }
    .google-badge-cta-text { white-space: normal; text-align: center; }
}



.reviews-google-badge {
    display: flex;
    align-items: center;
    gap: 18px;
}

.google-g-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.reviews-rating-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviews-score {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
}

.reviews-stars {
    display: flex;
    gap: 2px;
    font-size: 1.3rem;
    color: var(--yellow);
}

.reviews-stars .star-half {
    opacity: 0.4;
}

.reviews-count {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.reviews-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 14px 28px;
    border: 3px solid var(--black);
    border-radius: 8px;
    box-shadow: 5px 5px 0px rgba(255,235,59,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.reviews-cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px rgba(255,235,59,0.4);
}

/* Reviews grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
}

/* Individual review card */
.review-card {
    background: rgba(255,255,255,0.05);
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: clamp(18px, 2.5vw, 26px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    position: relative;
    overflow: visible;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -14px;
    left: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--yellow);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,235,59,0.4);
    background: rgba(255,235,59,0.06);
}

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

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-info strong {
    font-size: 0.92rem;
    color: var(--white);
    font-weight: 700;
}

.review-stars {
    font-size: 0.9rem;
    color: var(--yellow);
    letter-spacing: 1px;
}

.review-google-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.review-text {
    font-size: clamp(0.82rem, 1.3vw, 0.92rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
    flex: 1;
}

.review-tag {
    display: inline-block;
    background: rgba(255,235,59,0.12);
    color: var(--yellow);
    border: 1.5px solid rgba(255,235,59,0.3);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-summary { flex-direction: column; align-items: flex-start; }
    .reviews-cta-btn { align-self: stretch; justify-content: center; }
}

@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* =====================
   FOOTER LOCATION LINK
   ===================== */
.location-link {
    color: var(--white);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: inline-block;
}

.location-link:hover { color: var(--cyan); text-decoration: underline; }

.location-link i,
.footer-section p a i {
    margin-right: 6px;
    color: var(--cyan);
    width: 16px;
}
/* =====================
   ROOM IMAGE CAROUSEL
   ===================== */
.img-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--black);
    background: #111;
    aspect-ratio: 16 / 9;
}

.img-car-track-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-car-track {
    display: flex;
    height: 100%;
    transition: transform 0.42s cubic-bezier(0.35, 0.85, 0.35, 1);
    will-change: transform;
}

.img-car-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Prev / Next buttons */
.img-car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 5;
    width: 30px;
    height: 30px;
    background: var(--black);
    color: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
    padding: 0;
}

.img-car-prev { left: 8px; }
.img-car-next { right: 8px; }

.img-car-btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-60%) scale(1.15);
}

.img-car-btn:disabled {
    opacity: 0 !important;
    pointer-events: none;
    cursor: default;
}

/* Dot indicators */
.img-car-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;
}

.img-car-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: 1.5px solid var(--black);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s, width 0.2s;
}

.img-car-dot.active {
    background: var(--yellow);
    transform: scale(1.2);
    width: 18px;
    border-radius: 5px;
}
/* ── Thought bubble hint ── */
.swipe-hint-bubble {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 35px;
    transform: none;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.6s ease;
}

.swipe-hint-bubble.bubble-show {
    opacity: 1;
}

.swipe-hint-bubble.bubble-hide {
    opacity: 0;
}

.swipe-hint-bubble-body {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 12px;
    border: 2.5px solid var(--black);
    box-shadow: 3px 3px 0px var(--black);
    position: relative;
}

/* Tail dot — large */
.swipe-hint-bubble-body::before {
    content: '';
    position: absolute;
    bottom: -11px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border: 2px solid var(--black);
    border-radius: 50%;
}

/* Tail dot — small */
.swipe-hint-bubble-body::after {
    content: '';
    position: absolute;
    bottom: -21px;
    right: 6px;
    width: 5px;
    height: 5px;
    background: var(--yellow);
    border: 2px solid var(--black);
    border-radius: 50%;
}


/* =====================
   FOOTER CONTACT ITEMS
   ===================== */
.footer-contact-item {
    margin-top: 4px;
}

/* =====================
   AMENITIES LIST SPACED
   ===================== */
.amenities-list--spaced {
    margin-top: 10px;
}

/* =====================
   SECTION TITLE WRAPPER
   ===================== */
.section-title-wrap {
    text-align: center;
    width: 100%;
}