:root {
    --bg-card: rgba(255, 255, 255, 0.92);
    --bg-card-soft: rgba(248, 250, 252, 0.95);
    --bg-chip: rgba(255, 255, 255, 0.8);

    --border-subtle: rgba(148, 163, 184, 0.7);

    --primary: #1d4ed8;
    --primary-soft: rgba(37, 99, 235, 0.08);
    --accent: #f59e0b;

    --text-main: #0f172a;
    --text-sub: #111827;
    --text-muted: #6b7280;
    --text-inverse: #f9fafb;

    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.25);

    --radius-xl: 22px;
    --radius-lg: 16px;
}

body.dark-mode {
    --bg-card: rgba(15, 23, 42, 0.94);
    --bg-card-soft: rgba(15, 23, 42, 0.88);
    --bg-chip: rgba(15, 23, 42, 0.7);

    --border-subtle: rgba(31, 41, 55, 0.9);

    --primary: #3b82f6;
    --primary-soft: rgba(37, 99, 235, 0.12);
    --accent: #facc15;

    --text-main: #e5e7eb;
    --text-sub: #f9fafb;
    --text-muted: #9ca3af;
    --text-inverse: #020617;

    --shadow-soft: 0 24px 55px rgba(15, 23, 42, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: color 0.25s ease, background 0.25s ease;
}

body.loading * {
    cursor: progress;
}

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

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
}

/* REAL LOGO — round and animated */
.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffffaa;
    backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover expand effect */
.logo-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

.logo-circle {
    animation: subtlePulse 6s ease-in-out infinite;
}



/* LARGE MOVING BACKGROUND IMAGE */
.page-wrapper::before {
    content: "";
    position: fixed;
    inset: -5%;
    z-index: -2;
    background-image: url('https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1600');
    /* TODO: replace with real Mwitongo hero image path or local: ../images/mwitongo_hero.jpg */
    background-size: cover;
    background-position: center;
    filter: saturate(1.1) contrast(1.05);
    animation: bgDrift 40s ease-in-out infinite alternate;
}

@keyframes bgDrift {
    0% {
        transform: scale(1.06) translate3d(0, 0, 0);
        background-position: 48% 40%;
    }
    50% {
        transform: scale(1.12) translate3d(-14px, -8px, 0);
        background-position: 55% 60%;
    }
    100% {
        transform: scale(1.09) translate3d(10px, 6px, 0);
        background-position: 42% 50%;
    }
}

/* SOFT OVERLAY */
.page-wrapper::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.90), transparent 55%),
        linear-gradient(to bottom right, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
    mix-blend-mode: screen;
}

body.dark-mode .page-wrapper::after {
    background:
        radial-gradient(circle at top left, rgba(15,23,42,0.6), transparent 60%),
        linear-gradient(to bottom right, rgba(15,23,42,0.85), rgba(30,64,175,0.55));
    mix-blend-mode: multiply;
}

/* SHIMMER / SKELETON LOADING */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

body.loading .skeleton {
    position: relative;
    color: transparent !important;
}

body.loading .skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(226,232,240,0.55) 0px,
        rgba(255,255,255,0.9) 40px,
        rgba(226,232,240,0.55) 80px
        );
    background-size: 200px 100%;
    animation: shimmer 1.2s infinite;
}

body.dark-mode.loading .skeleton::before {
    background: linear-gradient(
        90deg,
        rgba(15,23,42,0.6) 0px,
        rgba(30,64,175,0.7) 40px,
        rgba(15,23,42,0.6) 80px
        );
}

/* NAVBAR */
.nav {
    width: 100%;
    padding: 18px 5vw 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 20% 0%, #facc15, #fb923c 40%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
    animation: floatLogo 3.5s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px) scale(1.02);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 1.05rem;
    font-weight: 600;
}

.brand-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.9rem;
    color: var(--text-sub);
}

.nav-link {
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.22s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-phone {
    display: none;
    font-size: 0.8rem;
    color: var(--text-sub);
}

.nav-phone small {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.btn-outline,
.btn-primary {
    border-radius: 999px;
    font-size: 0.85rem;
    padding: 9px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease,
        background 0.16s ease, color 0.16s ease;
    font-weight: 500;
}

.btn-outline {
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-sub);
}

body.dark-mode .btn-outline {
    background: rgba(15, 23, 42, 0.9);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-inverse);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.6);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.6);
}

.toggle-theme-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

body.dark-mode .toggle-theme-btn {
    background: rgba(15, 23, 42, 0.95);
}

.toggle-theme-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
}

/* HERO LAYOUT */
.hero {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    padding: 18px 5vw 36px;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 10px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 26px;
    padding: 24px 22px 20px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

body.dark-mode .glass-panel {
    background: rgba(15, 23, 42, 0.92);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-sub);
    font-size: 0.75rem;
    margin-bottom: 16px;
}

body.dark-mode .eyebrow {
    background: rgba(15, 23, 42, 0.92);
}

.eyebrow-dot {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inverse);
    font-size: 0.85rem;
}

.eyebrow span {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* MAIN TYPEWRITER HEADING PANE – fixed height, no cursor */
.hero-title {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
    line-height: 1.15;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Fixed area, but allow wrapping inside */
.typewriter-pane {
    height: 4.6em;          /* enough for up to 2 lines with your font-size */
    max-width: 620px;
    display: block;
    overflow: hidden;       /* prevents layout jump even if text wants 3 lines */
}

/* Let text wrap, no cursor, stable top alignment */
#typewriter {
    display: block;
    background: linear-gradient(120deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    color: transparent;

    border-right: none;
    padding-right: 0;

    white-space: normal;    /* ✅ allow line break */
    line-height: 1.15;
}


.hero-subtitle {
    font-size: 0.98rem;
    color: var(--text-sub);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 14px;
}

.tag {
    font-size: 0.75rem;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--bg-chip);
    color: var(--text-sub);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag i {
    color: var(--primary);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.8rem;
}

.hero-meta-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.hero-meta-value {
    font-weight: 500;
    color: var(--text-sub);
}

/* LEFT: MOVING IMAGES ABOVE TEXT */
.image-strip-wrapper {
    width: 100%;
    max-width: 640px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.28);
}

body.dark-mode .image-strip-wrapper {
    background: rgba(15,23,42,0.9);
}

.image-strip-inner {
    display: flex;
    width: max-content;
    animation: slideImages 60s linear infinite;
}

@keyframes slideImages {
    0%   {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.image-slide {
    width: 260px;
    height: 150px;
    flex: 0 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Example images – replace with your real lodge photos or local paths */
.img-1  {
    background-image: url('https://mwitongo.himas.co.tz/images/image1.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-2  {
    background-image: url('https://mwitongo.himas.co.tz/images/image2.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-3  {
    background-image: url('https://mwitongo.himas.co.tz/images/image3.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-4  {
    background-image: url('https://mwitongo.himas.co.tz/images/image4.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-5  {
    background-image: url('https://mwitongo.himas.co.tz/images/image5.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-6  {
    background-image: url('https://mwitongo.himas.co.tz/images/image6.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-7  {
    background-image: url('https://mwitongo.himas.co.tz/images/image7.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-8  {
    background-image: url('https://mwitongo.himas.co.tz/images/image8.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-9  {
    background-image: url('https://mwitongo.himas.co.tz/images/image9.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-10 {
    background-image: url('https://mwitongo.himas.co.tz/images/image10.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.img-11 {
    background-image: url('https://mwitongo.himas.co.tz/images/image11.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-12 {
    background-image: url('https://mwitongo.himas.co.tz/images/image12.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-13 {
    background-image: url('https://mwitongo.himas.co.tz/images/image13.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-14 {
    background-image: url('https://mwitongo.himas.co.tz/images/image14.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-15 {
    background-image: url('https://mwitongo.himas.co.tz/images/image15.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-16 {
    background-image: url('https://mwitongo.himas.co.tz/images/image16.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-17 {
    background-image: url('https://mwitongo.himas.co.tz/images/image17.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-18 {
    background-image: url('https://mwitongo.himas.co.tz/images/image18.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-19 {
    background-image: url('https://mwitongo.himas.co.tz/images/image19.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-20 {
    background-image: url('https://mwitongo.himas.co.tz/images/image20.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.img-21 {
    background-image: url('https://mwitongo.himas.co.tz/images/image21.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-22 {
    background-image: url('https://mwitongo.himas.co.tz/images/image22.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-23 {
    background-image: url('https://mwitongo.himas.co.tz/images/image23.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-24 {
    background-image: url('https://mwitongo.himas.co.tz/images/image24.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-25 {
    background-image: url('https://mwitongo.himas.co.tz/images/image25.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-26 {
    background-image: url('https://mwitongo.himas.co.tz/images/image26.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-27 {
    background-image: url('https://mwitongo.himas.co.tz/images/image27.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-28 {
    background-image: url('https://mwitongo.himas.co.tz/images/image28.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-29 {
    background-image: url('https://mwitongo.himas.co.tz/images/image29.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-30 {
    background-image: url('https://mwitongo.himas.co.tz/images/image30.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.img-31 {
    background-image: url('https://mwitongo.himas.co.tz/images/image31.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-32 {
    background-image: url('https://mwitongo.himas.co.tz/images/image32.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-33 {
    background-image: url('https://mwitongo.himas.co.tz/images/image33.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-34 {
    background-image: url('https://mwitongo.himas.co.tz/images/image34.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-35 {
    background-image: url('https://mwitongo.himas.co.tz/images/image35.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-36 {
    background-image: url('https://mwitongo.himas.co.tz/images/image36.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-37 {
    background-image: url('https://mwitongo.himas.co.tz/images/image37.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-38 {
    background-image: url('https://mwitongo.himas.co.tz/images/image38.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.img-39 {
    background-image: url('https://mwitongo.himas.co.tz/images/image39.jpeg?auto=compress&cs=tinysrgb&w=800');
}



/* RIGHT: BOOKING ONLY */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.booking-card {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card-soft));
    box-shadow: var(--shadow-soft);
    padding: 22px 22px 20px;
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.7s ease forwards 0.3s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 10px;
}

.booking-title {
    font-size: 1.06rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.booking-subtitle {
    font-size: 0.8rem;
    color: var(--text-sub);
}

.badge-best-rate {
    font-size: 0.72rem;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.booking-form {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.8rem;
}

.field-full {
    grid-column: 1 / -1;
}

.field-label {
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.field-label span {
    font-size: 0.7rem;
    color: #ef4444;
}

.field-input-wrapper {
    position: relative;
}

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    padding: 9px 11px 9px 32px;
    font-size: 0.82rem;
    font-family: inherit;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.dark-mode .field-input,
body.dark-mode .field-select,
body.dark-mode .field-textarea {
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-main);
}

.field-textarea {
    border-radius: 16px;
    min-height: 70px;
    padding-left: 11px;
    resize: vertical;
}

.field-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%),
        linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 16px) 13px, calc(100% - 11px) 13px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
    background: #ffffff;
}

body.dark-mode .field-input:focus,
body.dark-mode .field-select:focus,
body.dark-mode .field-textarea:focus {
    background: rgba(15, 23, 42, 0.95);
}

.field-input::placeholder,
.field-textarea::placeholder {
    color: var(--text-muted);
}

.field-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #9ca3af;
}

.field-hint {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.booking-footer {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-sub);
}

.price-row span:last-child {
    font-weight: 600;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@keyframes pulseBook {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
    }
    50% {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 20px 45px rgba(37, 99, 235, 0.65);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
    }
}

.btn-book {
    width: 100%;
    justify-content: center;
    animation: pulseBook 2.4s ease-in-out infinite;
}

.booking-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.booking-guarantee i {
    color: #16a34a;
}

.feedback-message {
    margin-bottom: 10px;
    font-size: 0.78rem;
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid #22c55e33;
    background: #ecfdf3;
    color: #166534;
    display: none;
}

.feedback-message.error {
    border-color: #ef444433;
    background: #fef2f2;
    color: #7f1d1d;
}

/* HIGHLIGHTS */
.highlights {
    padding: 0 5vw 32px;
    position: relative;
    z-index: 1;
}

.highlights-inner {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.94);
    padding: 14px 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(12px);
}

body.dark-mode .highlights-inner {
    background: rgba(15,23,42,0.92);
}

.highlight-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.highlight-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.highlight-title {
    font-size: 0.8rem;
    font-weight: 500;
}

.highlight-desc {
    font-size: 0.72rem;
    color: var(--text-sub);
}

/* FOOTER */
.footer {
    padding: 12px 5vw 18px;
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(148,163,184,0.7);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
}

body.dark-mode .footer {
    background: rgba(15,23,42,0.96);
    border-top-color: rgba(31,41,55,0.9);
}

.footer a {
    color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 10px;
    }

    .hero-left {
        padding-right: 0;
    }

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

    .nav-links {
        display: none;
    }

    .nav-phone {
        display: block;
    }
}

@media (max-width: 640px) {
    .nav {
        padding-inline: 18px;
    }

    .hero {
        padding-inline: 18px;
    }

    .highlights {
        padding-inline: 18px;
    }

    .highlights-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .glass-panel,
    .booking-card,
    .image-strip-wrapper {
        padding-inline: 18px;
    }

    .booking-form {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ===== ROOMS LIST PAGE (STEP 2) ===== */

.rooms-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.room-card {
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.96);
    padding: 14px 14px 12px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.dark-mode .room-card {
    background: rgba(15,23,42,0.96);
}

.room-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.room-select {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-sub);
    cursor: pointer;
}

.room-select input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary);
}

.room-price-chip {
    font-size: 0.78rem;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    white-space: nowrap;
}

.room-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.room-number {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.room-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    font-size: 0.78rem;
    margin-top: 4px;
}

.room-meta dt {
    font-weight: 500;
    color: var(--text-muted);
}

.room-meta dd {
    margin: 0;
    color: var(--text-sub);
}

.room-spec {
    grid-column: 1 / -1;
}

/* Small summary block on the right side */
.booking-summary {
    margin-top: 6px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-row span:first-child {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.summary-row span:last-child {
    font-weight: 500;
    color: var(--text-sub);
}

.summary-note {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* FULLSCREEN EXPERIENCES POPUP */
.experience-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96); /* light background */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}




.experience-overlay.open {
    display: flex;
}

.experience-overlay-inner {
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    margin: 1.5rem;
    border-radius: 22px;
    background: #ffffff; /* white card */
    padding: 1.5rem 1.5rem 1.2rem;
    box-shadow: 0 30px 90px rgba(15,23,42,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #111827; /* dark text */
    animation: popupIn 0.45s ease-out;

    < audio id="experienceAudio" loop>
    <!-- change the src to your real melody file -->
    <source src="../audio/mwitongo-melody.mp3" type="audio/mpeg">
    </audio>

}



.experience-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    background: rgba(15,23,42,0.85);
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.experience-overlay-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.experience-overlay-header p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* 4 images grid (2 x 2) */
.experience-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.experience-image {
    border-radius: 18px;
    min-height: 210px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 14px 30px rgba(15,23,42,0.18);
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.experience-image:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(15,23,42,0.28);
}


.experience-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(15,23,42,0.0), rgba(15,23,42,0.35));
    pointer-events: none;
}

.experience-image:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 26px 60px rgba(0,0,0,0.9);
}


/* Controls */
.experience-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.4rem;
}

.experience-btn {
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(148,163,184,0.5);
    background: rgba(15,23,42,0.9);
    color: #e5e7eb;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.experience-btn.primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: transparent;
    color: #022c22;
    font-weight: 600;
}

.experience-btn:hover {
    filter: brightness(1.08);
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .experience-image {
        min-height: 170px;
    }
}

@keyframes popupIn {
    0% {
        opacity: 0;
        transform: translateY(26px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CONTACT POPUP – same light style as page */
.contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.contact-overlay.open {
    display: flex;
}

.contact-overlay-inner {
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    margin: 1.5rem;
    border-radius: 22px;
    background: #ffffff;
    padding: 1.5rem 1.5rem 1.4rem;
    box-shadow: 0 30px 90px rgba(15,23,42,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #111827;
    animation: popupIn 0.4s ease-out;
}

.contact-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    background: #eef2ff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.contact-close:hover {
    background: #e0e7ff;
}

.contact-header h2 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.contact-header p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Cards layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #f9fafb;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e7eb;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out, background 0.22s ease-out;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(15,23,42,0.14);
    border-color: #c7d2fe;
    background: #eef2ff;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
}

/* Color accents for different channels */
.contact-icon.whatsapp {
    background: #dcfce7;
    color: #16a34a;
}

.contact-icon.email {
    background: #e0f2fe;
    color: #0369a1;
}

.contact-icon.web {
    background: #fef3c7;
    color: #b45309;
}

.contact-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #f97316, #e11d48, #7c3aed);
    color: #f9fafb;
}

.contact-icon.facebook {
    background: #dbeafe;
    color: #1d4ed8;
}

.contact-icon.map {
    background: #fce7f3;
    color: #be185d;
}

.contact-body h3 {
    font-size: 0.98rem;
    margin-bottom: 0.1rem;
}

.contact-body p {
    font-size: 0.85rem;
    margin: 0;
    color: #4b5563;
}

.contact-meta {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Mobile layout */
@media (max-width: 768px) {
    .contact-overlay-inner {
        margin: 1rem;
        padding: 1.2rem 1.1rem 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* LOCATION POPUP – light overlay with map */
.location-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.location-overlay.open {
    display: flex;
}

.location-overlay-inner {
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    margin: 1.5rem;
    border-radius: 22px;
    background: #ffffff;
    padding: 1.5rem 1.5rem 1.4rem;
    box-shadow: 0 30px 90px rgba(15,23,42,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    color: #111827;
    animation: popupIn 0.4s ease-out; /* you already have @keyframes popupIn */
}

.location-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    background: #eef2ff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.location-close:hover {
    background: #e0e7ff;
}

.location-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.location-header p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Layout: map + info side by side */
.location-body {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
    gap: 1rem;
    align-items: stretch;
}

/* Map */
.location-map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15,23,42,0.18);
    background: #e5e7eb;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

/* Info side */
.location-info h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.location-info p {
    font-size: 0.87rem;
    color: #4b5563;
    margin-bottom: 0.4rem;
}

.location-note {
    font-style: italic;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.6rem 0 0.8rem;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 0.82rem;
    text-decoration: none;
    color: #111827;
    cursor: pointer;
    transition: background 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out;
}

.location-btn.primary {
    background: #4f46e5;
    color: #f9fafb;
    border-color: #4f46e5;
}

.location-btn i {
    font-size: 0.9rem;
}

.location-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(15,23,42,0.16);
    border-color: #c7d2fe;
}

/* Meta info */
.location-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    margin-top: 0.3rem;
    font-size: 0.8rem;
}

.location-label {
    display: block;
    color: #6b7280;
}

.location-value {
    font-weight: 500;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .location-overlay-inner {
        margin: 1rem;
        padding: 1.1rem 1rem 1rem;
    }

    .location-body {
        grid-template-columns: 1fr;
    }

    .location-map-wrapper iframe {
        min-height: 260px;
    }
}
/* LOCATION POPUP – light overlay with map */
.location-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.location-overlay.open {
    display: flex;
}

.location-overlay-inner {
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    margin: 1.5rem;
    border-radius: 22px;
    background: #ffffff;
    padding: 1.5rem 1.5rem 1.4rem;
    box-shadow: 0 30px 90px rgba(15,23,42,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    color: #111827;
    animation: popupIn 0.4s ease-out; /* you already have @keyframes popupIn */
}

.location-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    background: #eef2ff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.location-close:hover {
    background: #e0e7ff;
}

.location-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.location-header p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Layout: map + info side by side */
.location-body {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
    gap: 1rem;
    align-items: stretch;
}

/* Map */
.location-map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15,23,42,0.18);
    background: #e5e7eb;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

/* Info side */
.location-info h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.location-info p {
    font-size: 0.87rem;
    color: #4b5563;
    margin-bottom: 0.4rem;
}

.location-note {
    font-style: italic;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.6rem 0 0.8rem;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 0.82rem;
    text-decoration: none;
    color: #111827;
    cursor: pointer;
    transition: background 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out;
}

.location-btn.primary {
    background: #4f46e5;
    color: #f9fafb;
    border-color: #4f46e5;
}

.location-btn i {
    font-size: 0.9rem;
}

.location-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(15,23,42,0.16);
    border-color: #c7d2fe;
}

/* Meta info */
.location-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    margin-top: 0.3rem;
    font-size: 0.8rem;
}

.location-label {
    display: block;
    color: #6b7280;
}

.location-value {
    font-weight: 500;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .location-overlay-inner {
        margin: 1rem;
        padding: 1.1rem 1rem 1rem;
    }

    .location-body {
        grid-template-columns: 1fr;
    }

    .location-map-wrapper iframe {
        min-height: 260px;
    }
}

/* CONCIERGE POPUP STYLES */
.concierge-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.concierge-overlay.open {
    opacity: 1;
    visibility: visible;
}

.concierge-overlay-inner {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card-soft));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.55);
    padding: 22px 22px 18px;
    overflow-y: auto; /* scrollable */
}

.concierge-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.concierge-header {
    margin-bottom: 12px;
    padding-right: 28px;
}

.concierge-header h2 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.concierge-header p {
    font-size: 0.86rem;
    color: var(--text-sub);
}

/* Cards list */
.concierge-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

/* Single card */
.concierge-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.concierge-avatar {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(148, 163, 184, 0.5);
}

.concierge-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concierge-info h3 {
    font-size: 0.98rem;
    margin: 0;
}

.concierge-role {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.concierge-bio {
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: var(--text-sub);
}

.concierge-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
}

.concierge-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    color: var(--text-main);
}

.concierge-contacts a:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
}

/* =============== SUITES & ROOMS POPUP =============== */

.rooms-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.rooms-overlay.open {
    opacity: 1;
    visibility: visible;
}

.rooms-overlay-inner {
    position: relative;
    width: 100%;
    max-width: 980px;
    max-height: 92vh;
    border-radius: 28px;
    background: radial-gradient(circle at top left, #eff6ff, #ffffff);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.8);
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rooms-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.rooms-header {
    padding-right: 42px;
    margin-bottom: 10px;
}

.rooms-header h2 {
    font-size: 1.3rem;
    margin: 0 0 4px;
}

.rooms-header p {
    font-size: 0.86rem;
    color: #64748b;
}

/* Layout: left text, right 3 images */
.rooms-body {
    display: flex;
    gap: 18px;
    flex: 1;
}

/* Left column: room details */
.rooms-details {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rooms-name-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
}

.rooms-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.rooms-number {
    font-size: 0.78rem;
    padding: 3px 9px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
}

.rooms-type-tag {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
}

.rooms-desc {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.45;
    margin-top: 6px;
}

.rooms-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 8px;
    font-size: 0.8rem;
}

.rooms-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0f172a;
}

.rooms-meta-item i {
    font-size: 0.9rem;
    color: #1d4ed8;
}

/* Right column: 3 thumbs */
.rooms-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.rooms-thumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #020617;
}

.rooms-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.rooms-thumb:hover img {
    transform: scale(1.04);
    opacity: 0.95;
}

.rooms-thumb-label {
    position: absolute;
    inset-inline: 8px;
    bottom: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rooms-thumb-label i {
    font-size: 0.75rem;
    color: #facc15;
}

/* Controls */
.rooms-controls {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rooms-arrows {
    display: flex;
    gap: 8px;
}

.rooms-arrow-btn {
    border-radius: 999px;
    border: 1px solid #cbd5f5;
    background: #ffffff;
    padding: 6px 12px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.rooms-arrow-btn i {
    font-size: 0.9rem;
}

.rooms-arrow-btn:hover {
    background: #eff6ff;
    border-color: #3b82f6;
}

/* Dots + counter */
.rooms-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #64748b;
}

.rooms-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #cbd5f5;
    transition: transform 0.2s ease, background 0.2s ease;
}

.rooms-dot.active {
    background: #1d4ed8;
    transform: scale(1.5);
}

.rooms-counter {
    margin-left: 8px;
}

/* Fullscreen viewer for room photos */
.rooms-fullscreen {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.rooms-fullscreen.open {
    opacity: 1;
    visibility: visible;
}

.rooms-fullscreen-inner {
    position: relative;
    max-width: 1000px;
    width: 100%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rooms-fullscreen-inner img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 18px;
    object-fit: cover;
}

.rooms-fullscreen-caption {
    margin-top: 10px;
    text-align: center;
    color: #e5e7eb;
}

.rooms-fullscreen-title {
    font-size: 1rem;
    font-weight: 600;
}

.rooms-fullscreen-sub {
    font-size: 0.85rem;
    color: #cbd5f5;
    margin-top: 4px;
}

.rooms-fullscreen-close {
    position: absolute;
    top: -6px;
    right: -6px;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .rooms-overlay-inner {
        padding: 18px 14px 14px;
    }
    .rooms-body {
        flex-direction: column;
    }
    .rooms-gallery {
        grid-template-columns: 1fr;
    }
    .rooms-thumb img {
        height: 190px;
    }
}






