@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #111827;
    --muted: #657184;
    --line: #e6eaf0;
    --paper: #ffffff;
    --soft: #f6f8fb;
    --mist: #e8f8f3;
    --green: #0f8f72;
    --green-dark: #08705a;
    --terracotta: #f97316;
    --amber: #f6b73c;
    --blue: #2563eb;
    --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
    --radius: 8px;
    --font-display: 'Manrope', Arial, sans-serif;
    --font-body: 'Manrope', Arial, sans-serif;
}

.section {
    padding: 80px 0;
    position: relative;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(15, 143, 114, 0.11), transparent 30vw),
        linear-gradient(180deg, #ffffff 0%, var(--soft) 48%, #ffffff 100%);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--soft);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    border: 3px solid var(--soft);
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ── Page Reveal Animation ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    background: rgba(17, 24, 39, 0.85); /* Deep dark background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #111827; /* Solid ink color */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nav-shell {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo,
.footer strong {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
    color: #fff; /* White logo text if no image */
}

.logo img,
.footer strong img {
    width: auto;
    max-width: 210px;
    height: 46px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Force white logo for dark menu */
}

.logo span,
.footer span {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 800;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--green);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 18px;
}

.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 130px 0 56px;
    overflow: hidden;
}

.hero-carousel,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 18, 24, 0.72), rgba(4, 18, 24, 0.28) 58%, rgba(4, 18, 24, 0.06)),
        linear-gradient(0deg, rgba(4, 18, 24, 0.52), transparent 45%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    gap: 48px;
}

.hero-copy {
    color: var(--paper);
    max-width: 790px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero .eyebrow {
    color: #f4c56a;
}

.hero h1,
.section-heading h2,
.intro-copy h2,
.contact-section h2,
.admin-topbar h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
}

.hero h1 {
    max-width: 840px;
    font-size: clamp(42px, 7vw, 96px);
    letter-spacing: -0.05em;
    color: var(--paper);
}

.hero p {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    font-weight: 600;
}

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

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border: 0;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--green), #13b89a);
    color: var(--paper);
    box-shadow: 0 10px 25px rgba(31, 111, 91, 0.2);
}

.btn-cta {
    background: linear-gradient(135deg, #f97316, #fb923c); /* Vibrant Sunset Orange */
    color: #fff;
    font-size: 16px;
    padding: 18px 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.35);
    position: relative;
    overflow: hidden;
    animation: pulse-orange 3s infinite;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #fb923c, #f97316);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.45);
}

/* ── Shine Effect ── */
.btn-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
    animation: shine-btn 4s infinite;
}

@keyframes shine-btn {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.btn-light {
    background: var(--paper);
    color: var(--ink);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.hero-panel {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.hero-panel div {
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.hero-panel div:last-child {
    padding: 0;
    margin: 0;
    border: 0;
}

.hero-panel span,
.room-meta span,
.admin-note span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-panel strong {
    display: block;
    margin-top: 4px;
    font-size: 18px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 3;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 38px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dots button.active {
    background: #ffffff;
}

.hero-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-times span {
    padding: 12px;
    border-radius: 14px;
    background: var(--mist);
    color: var(--green-dark);
}

.section {
    padding: 82px 0;
}

.intro-section,
.contact-section {
    background: var(--paper);
}

.intro-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 52px;
}

.intro-image img,
.map-card,
.room-card,
.admin-card,
.admin-note,
.status-message,
.form-error {
    border-radius: 18px;
}

.intro-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.intro-copy h2,
.section-heading h2,
.contact-section h2 {
    font-size: clamp(34px, 5vw, 64px);
    letter-spacing: -0.045em;
}

.intro-copy p,
.section-heading p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.feature-row div,
.service-list div {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--mist);
    border: 1px solid #dce9e5;
    border-radius: 18px;
    color: var(--green-dark);
    font-weight: 800;
}

.feature-row i,
.service-list i {
    color: var(--terracotta);
    font-size: 22px;
}

.rooms-section {
    background: var(--soft);
}

.blog-section,
.facebook-section {
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-post {
    display: none !important;
}

.blog-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.blog-card {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.blog-card div {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card h3 {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-card a {
    color: var(--green);
    font-weight: 900;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card a::after {
    content: '→';
    transition: transform 0.2s;
}

.blog-card a:hover::after {
    transform: translateX(3px);
}

.churin-section {
    background: #0d1b22;
    color: var(--paper);
}

.churin-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: start;
}

.churin-panel {
    position: sticky;
    top: 96px;
    padding: 28px;
    background: linear-gradient(135deg, #0f8f72, #1e6bd6);
    color: var(--paper);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.churin-panel h2 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.churin-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.thermal-list {
    display: grid;
    gap: 14px;
}

.thermal-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.thermal-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: #65f0d0;
    font-size: 22px;
}

.thermal-card h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--paper);
}

.thermal-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.travel-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.travel-tips div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
}

.travel-tips strong {
    display: block;
    margin-bottom: 4px;
    color: #65f0d0;
}

.travel-tips span {
    color: rgba(255, 255, 255, 0.72);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading.compact {
    margin: 0;
}

/* ── Rooms grid ── */
.rooms-grid,
.rooms-grid-extra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rooms-grid-extra {
    margin-top: 24px;
}

/* ── Room Card ── */
.room-card {
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(17,24,39,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(17,24,39,0.12);
}

/* Image */
.room-img-wrap {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
}

.room-img-wrap img,
.room-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.room-card:hover .room-img-wrap img,
.room-card:hover > img {
    transform: scale(1.04);
}

/* Body */
.room-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

/* Title row: name left, price right */
.room-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.room-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--ink);
}

.room-price-tag {
    display: inline-block;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 900;
    color: var(--green-dark);
    background: var(--mist);
    border-radius: 8px;
    padding: 4px 10px;
    flex-shrink: 0;
}

/* Description */
.room-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Meta: capacity + CTA */
.room-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.room-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.room-meta span i {
    color: var(--green);
}

.room-link-simple {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.room-link-simple:hover {
    color: var(--green);
    text-decoration: underline;
}

.room-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #25d366; /* WhatsApp Green */
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.room-wa-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    color: #fff;
}

/* Badge (used in both grids) */
.room-badge {
    display: none;
}

.services-section {
    background: linear-gradient(135deg, #111827, #12332d);
    color: var(--paper);
}

.services-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 44px;
}

.services-section h2 {
    color: var(--paper);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.service-list div {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--paper);
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 28px 0 32px;
}

.contact-list p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.contact-list i {
    width: 26px;
    color: var(--blue);
    text-align: center;
}

.social-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.social-showcase a {
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 900;
}

.social-showcase i {
    font-size: 24px;
}

.map-card {
    overflow: hidden;
    min-height: 440px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.map-card iframe {
    width: 100%;
    height: 440px;
    border: 0;
}

.footer {
    padding: 34px 0;
    background: #101820;
    color: var(--paper);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.facebook-embed {
    overflow: hidden;
    max-width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--soft);
}

.facebook-embed iframe {
    width: 100%;
}

.footer-copy {
    display: grid;
    gap: 4px;
    text-align: right;
}

.footer-copy small,
.footer-copy a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.footer-copy a {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
    font-weight: 900;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.detail-page {
    padding-top: 74px;
}

.static-links {
    display: flex;
}

.room-hero-detail {
    padding: 70px 0;
    background: linear-gradient(135deg, #ffffff, #ecf8f5);
}

.room-detail-grid,
.room-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.room-detail-grid h1,
.blog-detail h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.room-detail-grid p,
.blog-detail .lead {
    color: var(--muted);
    font-size: 20px;
}

.room-detail-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

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

.detail-card {
    height: 100%;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 16px 46px rgba(17, 24, 39, 0.08);
}

.detail-card h2 {
    margin: 0 0 12px;
}

.detail-card p {
    color: var(--muted);
}

.accent-card {
    background: #101820;
    color: #ffffff;
}

.accent-card p {
    color: rgba(255, 255, 255, 0.72);
}

.room-facts {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.room-facts li {
    display: grid;
    grid-template-columns: 28px 110px 1fr;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: var(--soft);
}

.room-facts i {
    color: var(--green);
}

.room-facts span {
    color: var(--muted);
}

.gallery-section,
.blog-detail {
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
}

.blog-detail {
    padding: 70px 0;
}

.blog-detail-inner {
    max-width: 880px;
}

.blog-detail img {
    width: 100%;
    margin: 32px 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 24px;
}

.article-content {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.admin-body {
    min-height: 100vh;
    background: #eef2f1;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-card,
.admin-note,
.status-message,
.form-error {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 10px 35px rgba(24, 33, 47, 0.06);
}

.login-card {
    width: min(440px, 100%);
    padding: 32px;
}

.login-card h1,
.admin-card h2 {
    margin: 0 0 10px;
}

.login-card p {
    margin: 0 0 24px;
    color: var(--muted);
}

.admin-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--green);
    font-weight: 800;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px min(32px, 5vw);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.admin-topbar h1 {
    font-size: 40px;
}

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

.admin-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 28px auto 80px;
}

.status-message,
.form-error,
.admin-note {
    padding: 16px 18px;
    margin-bottom: 18px;
}

.status-message {
    border-color: #b8d8cd;
    background: #eef8f3;
    color: var(--green-dark);
    font-weight: 800;
}

.form-error {
    border-color: #eac0b1;
    background: #fff1ec;
    color: #8b3f24;
    font-weight: 800;
}

.admin-note {
    display: grid;
    gap: 6px;
}

.admin-note code {
    display: block;
    width: 100%;
    padding: 12px;
    overflow-x: auto;
    background: #f3f5f7;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--blue);
}

.admin-form {
    display: grid;
    gap: 18px;
}

.admin-card {
    padding: 24px;
}

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

.span-2 {
    grid-column: span 2;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfcfd;
    color: var(--ink);
    font: inherit;
    padding: 12px 13px;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31, 111, 91, 0.12);
}

.room-editor {
    display: grid;
    gap: 18px;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.image-preview-grid div {
    min-height: 150px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 12px;
    background: #f7fafc;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.image-preview-grid span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.image-preview-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.image-preview-grid strong {
    font-size: 18px;
}

.admin-help {
    margin-top: -4px;
    color: var(--muted);
}

.repeat-fields {
    display: grid;
    gap: 14px;
}

.mini-editor,
.blog-edit-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fbfcfd;
}

.blog-edit-card {
    display: grid;
    gap: 14px;
}

.room-edit-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfcfd;
}

.room-edit-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    border-radius: var(--radius);
}

.sticky-save {
    position: sticky;
    bottom: 18px;
    display: flex;
    justify-content: flex-end;
    padding: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
    .hero-grid,
    .intro-grid,
    .contact-grid,
    .services-grid,
    .churin-grid,
    .split-heading,
    .facebook-grid,
    .room-detail-grid,
    .room-info-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .rooms-grid,
    .rooms-grid-extra,
    .blog-grid,
    .gallery-grid,
    .service-list,
    .image-preview-grid,
    .travel-tips {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .room-card:nth-child(1) {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .room-card:nth-child(1) .room-img-wrap {
        height: 340px;
    }

    .churin-panel {
        position: static;
    }

    .room-edit-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav-shell {
        min-height: 66px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 66px;
        right: 16px;
        left: 16px;
        display: none;
        padding: 18px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: grid;
        gap: 0;
    }

    .nav-links.open a {
        color: var(--ink);
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid var(--line);
    }

    .nav-links.open li:last-child a {
        border-bottom: none;
    }

    .hero {
        padding-bottom: 34px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .section {
        padding: 58px 0;
    }

    .feature-row,
    .rooms-grid,
    .rooms-grid-extra,
    .blog-grid,
    .gallery-grid,
    .service-list,
    .image-preview-grid,
    .travel-tips,
    .form-grid,
    .hero-times {
        grid-template-columns: 1fr;
    }

    .room-card:nth-child(1) {
        grid-column: auto;
    }

    .room-card:nth-child(1) .room-img-wrap {
        height: 280px;
    }

    .room-card:nth-child(2) .room-img-wrap,
    .room-card:nth-child(3) .room-img-wrap {
        height: 220px;
    }

    .room-card:nth-child(2) .room-body p,
    .room-card:nth-child(3) .room-body p {
        display: block;
    }

    .logo img,
    .footer strong img {
        max-width: 170px;
        height: 40px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        min-height: 54px;
        padding: 14px 16px;
    }

    .whatsapp-float span {
        display: none;
    }

    .span-2 {
        grid-column: span 1;
    }

    .footer-inner,
    .admin-topbar,
    .admin-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-copy {
        text-align: left;
    }

    .admin-actions,
    .admin-actions form,
    .admin-actions .btn {
        width: 100%;
    }
}


/* Cleaned up conflicting styles */

.blog-detail {
    background:
        radial-gradient(circle at 20% 10%, rgba(15, 143, 114, 0.12), transparent 28vw),
        #ffffff;
}

.blog-detail-inner {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 65px rgba(17, 24, 39, 0.09);
}

.article-content {
    padding: 4px 2px;
}

.footer {
    padding: 42px 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(15, 143, 114, 0.22), transparent 28%),
        #101820;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(260px, 1.1fr);
    align-items: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 20px;
}

.footer-socials a:hover {
    background: var(--green);
}



@media (max-width: 720px) {
    .room-detail-grid > div:first-child,
    .blog-detail-inner {
        padding: 22px;
        border-radius: 22px;
    }

    .room-facts li {
        grid-template-columns: 26px 1fr;
    }

    .room-facts li span {
        grid-column: 2;
    }
}
/* ══════════════════════════════════
   ADMIN IMPROVEMENTS
   ══════════════════════════════════ */
.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.gallery-admin-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--line);
    background: var(--soft);
}

.gallery-admin-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-admin-item .btn-delete {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ef4444;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.gallery-admin-item .btn-delete:hover {
    transform: scale(1.1);
}

.room-edit-card {
    position: relative;
    margin-bottom: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

@media (max-width: 900px) {
    .room-edit-card {
        flex-direction: column;
    }
}

.room-edit-side {
    width: 220px;
    background: #fafafa;
    border-right: 1px solid var(--line);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.room-edit-main {
    flex-grow: 1;
    padding: 30px;
}

.room-thumb-preview {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-thumb-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.room-edit-card .btn-delete-room {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ef4444;
    cursor: pointer;
    background: #fff;
    border: 1px solid #fee2e2;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.room-edit-card .btn-delete-room:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.status-badge.inactive {
    background: #f3f4f6;
    color: #4b5563;
}

.room-edit-card .btn-delete-room:hover {
    transform: scale(1.2);
}

.visibility-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 12px 20px;
    border-radius: 12px;
    width: fit-content;
}

.visibility-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.admin-thumb {
    position: relative;
    width: 120px;
    height: 80px;
    flex-shrink: 0;
}

.admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

/* ══════════════════════════════════
   POST DETAIL PAGE
   ══════════════════════════════════ */
.post-detail-shell {
    padding-top: 74px;
}

.post-detail-header {
    position: relative;
    padding: 80px 0 60px;
    color: white;
    overflow: hidden;
}

.post-header-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.post-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
}

.post-header-content {
    max-width: 800px;
}

.post-header-content h1 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    margin: 15px 0 25px;
    letter-spacing: -0.04em;
}

.post-lead {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.post-body {
    padding: 60px 0;
    background: white;
}

.narrow-container {
    max-width: 800px;
    margin: 0 auto;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.post-gallery-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.post-gallery-section h2 {
    margin-bottom: 25px;
}

.post-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.post-gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.post-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-gallery-item:hover img {
    transform: scale(1.05);
}

.post-footer-actions {
    margin-top: 60px;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 40px;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}


/* ══════════════════════════════════
   FACEBOOK SECTION (SOFT LIGHT PATTERN)
   ══════════════════════════════════ */
.facebook-section {
    background: #f1f5f9 !important; /* Soft Clear Grey */
    padding: 100px 0;
    color: #000;
}

.facebook-section .section-heading h2 {
    color: #000 !important;
    font-weight: 900;
}

.facebook-section .section-heading p {
    color: #000;
    opacity: 0.8;
}

.facebook-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.facebook-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.fb-benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.fb-benefit-icon {
    width: 54px;
    height: 54px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 22px;
    transition: all 0.3s ease;
}

.fb-benefit-item:hover .fb-benefit-icon {
    transform: translateY(-5px);
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.fb-benefit-item strong {
    display: block;
    font-size: 17px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 800;
}

.fb-benefit-item span {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.fb-cta-box.premium {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.fb-cta-box.premium h3 {
    color: #000 !important;
    font-weight: 800;
    margin-bottom: 10px;
}

.fb-cta-box.premium p {
    color: #4b5563;
    margin-bottom: 25px;
}

.fb-cta-btns {
    display: flex;
    gap: 15px;
}

.facebook-btn {
    background: var(--blue);
    color: #fff !important;
}

.fb-wa-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #000 !important;
}

.facebook-frame {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.fb-frame-label {
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--blue);
}

.fb-live-badge {
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    animation: pulse-red 2s infinite;
}

@media (max-width: 1024px) {
    .facebook-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ══════════════════════════════════
   FAQ SECTION (FINAL CONSOLIDATED)
   ══════════════════════════════════ */
.faq-section {
    background: #ffffff !important; /* Pure White */
    padding: 100px 0 0 !important;
    color: #000 !important;
}

.faq-section .section-heading .eyebrow {
    color: #000 !important;
    opacity: 0.6;
}

.faq-section .section-heading h2 {
    color: #000 !important;
    font-weight: 900 !important;
}

.faq-section .section-heading p {
    color: #000 !important;
    opacity: 0.9 !important;
    font-weight: 600 !important;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 15px;
    margin-top: 40px;
    padding-bottom: 80px; /* Internal spacing instead of section padding */
}

.faq-item {
    background: #ffffff;
    border: 1px solid #000; /* Thin black border for contrast on white */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--green);
    border-width: 2px;
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #000 !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 28px;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px 28px;
    border-top: 1px solid #000;
}

.faq-answer p {
    margin: 0;
    color: #000 !important;
    opacity: 0.8;
    line-height: 1.7;
    font-weight: 500;
}

/* -- WhatsApp Widget Enhanced -- */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.wa-bubble {
    background: #fff;
    padding: 15px 20px;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 250px;
    position: relative;
    border: 1px solid var(--line);
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-bubble-content p {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
}

.wa-status {
    font-size: 11px;
    color: #25d366;
    font-weight: 700;
    text-transform: uppercase;
}

.wa-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--muted);
    cursor: pointer;
}

.whatsapp-float-enhanced {
    width: 64px;
    height: 64px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float-enhanced:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
}

.wa-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4757;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 2px solid #fff;
}

/* -- Weather Widget -- */
.weather-section {
    padding: 40px 0;
    background: transparent;
}

.weather-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--line);
    max-width: 900px;
    margin: 0 auto;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.weather-main h2 {
    font-size: 48px;
    margin: 0;
    font-weight: 900;
    color: var(--green);
}

.weather-main p {
    margin: 5px 0 0;
    font-weight: 600;
    color: var(--muted);
    text-transform: capitalize;
}

.weather-icon {
    font-size: 64px;
    color: #f6b73c; /* Amber */
}

.weather-details {
    display: flex;
    gap: 30px;
}

.w-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.w-detail i {
    font-size: 20px;
    color: var(--green);
    margin-bottom: 5px;
}

.w-detail span {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
}

.w-detail small {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .weather-card {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .weather-info {
        flex-direction: column;
        gap: 15px;
    }
    .wa-bubble {
        display: none; /* Hide bubble on mobile to avoid clutter */
    }
}
