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

:root {
    --orange: #2563EB;
    --purple: #6B4CE6;
    --blue: #4ECDC4;
    --yellow: #FFD93D;
    --dark: #1E3A5F;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --gray: #6B7280;
    --grad-orange: linear-gradient(135deg, #2563EB, #3B82F6);
    --grad-purple: linear-gradient(135deg, #6B4CE6, #9B7CE8);
    --grad-blue: linear-gradient(135deg, #4ECDC4, #7DE5DE);
    --grad-dark: linear-gradient(135deg, #1E3A5F, #2563EB);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* ===== SHAPES - Lebih besar & visible seperti referensi ===== */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--grad-orange);
    opacity: 0.15;
    top: -200px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--grad-blue);
    opacity: 0.12;
    bottom: -100px;
    left: -150px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--grad-purple);
    opacity: 0.1;
    top: 40%;
    right: 5%;
}

.shape-4 {
    width: 450px;
    height: 450px;
    background: var(--yellow);
    opacity: 0.1;
    top: -150px;
    left: -100px;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: var(--grad-purple);
    opacity: 0.12;
    bottom: -100px;
    right: -50px;
}

.shape-6 {
    width: 400px;
    height: 400px;
    background: var(--grad-blue);
    opacity: 0.1;
    top: 10%;
    left: -150px;
}

.shape-7 {
    width: 500px;
    height: 500px;
    background: var(--grad-orange);
    opacity: 0.08;
    bottom: -100px;
    right: -200px;
}

.shape-8 {
    width: 350px;
    height: 350px;
    background: var(--yellow);
    opacity: 0.1;
    top: 0;
    left: -80px;
}

.shape-9 {
    width: 400px;
    height: 400px;
    background: var(--grad-purple);
    opacity: 0.1;
    bottom: 0;
    right: -100px;
}

.shape-10 {
    width: 450px;
    height: 450px;
    background: var(--grad-blue);
    opacity: 0.1;
    top: -150px;
    right: -50px;
}

/* ===== NAVBAR - Compact & Premium ===== */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
}

.logo-icon {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrapper {
    display: block;
}

.logo-text {
    display: block;
    letter-spacing: -0.3px;
}

.logo-subtext {
    display: block;
    font-size: 0.5rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.85rem;
    transition: 0.2s;
}

.nav-menu a:hover {
    color: var(--orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.2s;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--grad-orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid #ddd;
}

.btn-secondary:hover {
    border-color: var(--text);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 12px 28px;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 12px;
}

.btn-cta {
    background: var(--white);
    color: var(--dark);
    padding: 14px 36px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--orange);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.badge-center {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(107, 76, 230, 0.1);
    color: var(--purple);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

/* ===== SECTION HEADERS ===== */
.section-header-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-header-left {
    flex: 1 1 auto;
    max-width: 600px;
}

.section-header-left .section-title {
    margin-bottom: 0.5rem;
}

a.section-view-all,
.section-view-all {
    color: #2563EB !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    padding: 0.55rem 1.5rem;
    border: 2px solid #2563EB;
    border-radius: 50px;
    transition: all 0.25s ease;
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
    background: #fff;
    margin-top: 0.2rem;
    cursor: pointer;
    line-height: 1.3;
}

a.section-view-all:hover,
.section-view-all:hover {
    background: #2563EB !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== HERO - Mirip referensi ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 2rem 0 3rem;
    background: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text);
}

.gradient-text {
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.stat-icon { font-size: 1.8rem; }
.stat-number { font-size: 1.4rem; font-weight: 700; color: var(--text); }
.stat-label { font-size: 0.8rem; color: var(--gray); }

/* Hero Illustration - Lingkaran besar seperti referensi */
.hero-illustration {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: var(--grad-purple);
    border-radius: 50%;
    z-index: 0;
    animation: blob-morph 8s ease-in-out infinite, blob-rotate 20s linear infinite;
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.03);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%;
        transform: scale(0.97);
    }
    75% {
        border-radius: 40% 60% 50% 40% / 60% 30% 60% 40%;
        transform: scale(1.02);
    }
}

@keyframes blob-rotate {
    0% { rotate: 0deg; }
    100% { rotate: 360deg; }
}

.illustration-person {
    position: relative;
    z-index: 1;
    width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(107, 78, 255, 0.3)) brightness(1.05);
    animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.03);
    }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.floating-card.card-1 {
    top: 5%; left: 5%;
    animation: orbit-1 10s ease-in-out infinite;
}
.floating-card.card-2 {
    top: 25%; right: -10px;
    animation: orbit-2 12s ease-in-out infinite 0.5s;
}
.floating-card.card-3 {
    bottom: 30%; left: 0%;
    animation: orbit-3 11s ease-in-out infinite 1s;
}
.floating-card.card-4 {
    top: 5%; right: 10%;
    animation: orbit-4 13s ease-in-out infinite 1.5s;
}
.floating-card.card-5 {
    top: 50%; left: -5%;
    animation: orbit-5 10s ease-in-out infinite 2s;
}
.floating-card.card-6 {
    bottom: 10%; right: 5%;
    animation: orbit-6 12s ease-in-out infinite 2.5s;
}

@keyframes orbit-1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, 15px); }
    50% { transform: translate(10px, -20px); }
    75% { transform: translate(-20px, 10px); }
}
@keyframes orbit-2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-25px, 20px); }
    50% { transform: translate(-15px, -15px); }
    75% { transform: translate(20px, -10px); }
}
@keyframes orbit-3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -25px); }
    50% { transform: translate(-10px, 15px); }
    75% { transform: translate(15px, 20px); }
}
@keyframes orbit-4 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-20px, -15px); }
    50% { transform: translate(25px, 10px); }
    75% { transform: translate(-10px, 25px); }
}
@keyframes orbit-5 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(15px, 25px); }
    50% { transform: translate(25px, -10px); }
    75% { transform: translate(-15px, -20px); }
}
@keyframes orbit-6 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-25px, -20px); }
    50% { transform: translate(15px, 25px); }
    75% { transform: translate(20px, -15px); }
}

/* ===== ROOM CARDS ===== */
.pick-room { background: var(--light); overflow: visible !important; }

.room-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.room-card.featured { border: 2px solid var(--purple); }

.room-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 100%);
}

.room-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90% 40%;
    filter: brightness(1.02);
}

.room-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--orange);
    z-index: 2;
}

.room-badge.premium { background: var(--yellow); color: var(--dark); }

.room-illust-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
    z-index: 2;
}

.room-content { padding: 1.2rem 1.5rem 1.5rem; }
.room-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.room-description { color: var(--gray); margin-bottom: 0.8rem; font-size: 0.85rem; }

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(107, 76, 230, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--purple);
    font-weight: 500;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    padding-top: 0.8rem;
    border-top: 1px solid #f0f0f0;
}

.price { font-size: 1.4rem; font-weight: 700; color: var(--orange); }
.period { color: var(--gray); font-size: 0.85rem; }

/* ===== FACILITIES ===== */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.facility-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
}

.facility-card:hover {
    border-color: rgba(107, 76, 230, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.facility-icon { font-size: 3rem; margin-bottom: 0.8rem; }

.facility-icon-img { width: 48px; height: 48px; object-fit: contain; }

.facility-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.facility-description { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

/* ===== FEATURES ===== */
.features { background: var(--light); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-wrapper { flex-shrink: 0; }

.feature-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-description { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--grad-dark);
    color: var(--white);
    padding: 3.5rem 0;
}

.testimonials .section-title,
.testimonials .section-description { color: var(--white); }

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    scroll-snap-align: start;
    transition: 0.3s;
    min-width: 240px;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.author-avatar {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: rgba(255, 255, 255, 0.7); }

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
}

.slider-btn:hover { background: rgba(255, 255, 255, 0.25); }

/* ===== REGISTRATION ===== */
.registration { background: var(--light); padding: 4rem 0; }

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.registration-title { font-size: 2rem; font-weight: 800; margin-bottom: 0.8rem; line-height: 1.2; }
.registration-description { font-size: 0.95rem; color: var(--gray); margin-bottom: 2rem; line-height: 1.7; }

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-item { display: flex; align-items: center; gap: 1rem; }

.contact-icon {
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-orange);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-label { font-size: 0.78rem; color: var(--gray); }
.contact-value { font-weight: 600; font-size: 0.95rem; color: var(--text); }

.registration-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.2rem; }

.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(107, 76, 230, 0.08);
}

.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.78rem; color: var(--gray); margin-top: 0.8rem; text-align: center; }

/* ===== CTA - Banner dengan warna kuning/orange seperti referensi ===== */
.cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1a365d 70%, #0f172a 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}
.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: #2563EB;
    top: -100px;
    right: -100px;
    animation: cta-pulse 6s ease-in-out infinite;
}
.cta-glow-2 {
    width: 300px;
    height: 300px;
    background: #6B4CE6;
    bottom: -80px;
    left: -80px;
    animation: cta-pulse 6s ease-in-out infinite 3s;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.15); }
}

.cta-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.cta-content { max-width: 650px; margin: 0 auto 2.5rem; }
.cta-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.cta-description { font-size: 1.05rem; margin-bottom: 0; opacity: 0.75; line-height: 1.7; }

.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.cta-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-label {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.cta-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.btn-cta {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(37, 99, 235, 0.4);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(37, 99, 235, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: #ffffff;
    color: var(--text);
    padding: 0;
    border-top: 1px solid #e5e7eb;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

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

.footer-brand-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.footer-brand-sub {
    font-size: 0.55rem;
    color: #9ca3af;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-nav a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #2563EB;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: #2563EB;
}

.footer-contact-divider {
    color: #d1d5db;
    font-size: 0.75rem;
}

.footer-bottom {
    padding: 0.8rem 0;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #9ca3af;
}

.footer-social { display: flex; gap: 1.5rem; }
.social-link { color: #9ca3af; text-decoration: none; transition: 0.2s; font-size: 0.7rem; font-weight: 500; }
.social-link:hover { color: #2563EB; }

/* ===== REGISTRATION ROOM PICKER ===== */
.reg-room-picker {
    max-height: 200px;
    overflow-y: auto;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reg-room-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reg-room-card:hover {
    border-color: #93c5fd;
    background: #f0f7ff;
}

.reg-room-card.selected {
    border-color: #2563EB;
    background: #eff6ff;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.reg-room-card.selected::after {
    content: '✓';
    color: #2563EB;
    font-weight: 800;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.reg-room-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.reg-room-number {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
}

.reg-room-meta {
    font-size: 0.7rem;
    color: var(--gray);
}

.reg-room-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2563EB;
    white-space: nowrap;
}

/* ===== AUTH FORM STYLES =====*/
.form-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 16px;
    height: 16px;
    accent-color: #2563EB;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
    cursor: pointer;
}

.form-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
}

.form-link {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.form-link:hover {
    text-decoration: underline;
}

/* ===== AUTH MODAL ===== */
.auth-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.auth-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 460px;
    width: 100%;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    animation: modalSlideUp 0.3s ease-out;
}

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

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.auth-modal-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.auth-modal-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.modal-hint {
    font-size: 0.8rem !important;
    color: #9ca3af !important;
    margin-bottom: 1.5rem !important;
}

.modal-card {
    background: linear-gradient(135deg, #f0f7ff, #f5f3ff);
    border: 1px solid #e0e7ff;
    border-radius: 14px;
    padding: 1.5rem;
    margin: 1.2rem 0;
    text-align: left;
}

.modal-card-title {
    font-weight: 700 !important;
    color: var(--text) !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
}

.modal-steps {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.modal-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #9ca3af;
}

.modal-step.done {
    color: #16a34a;
}

.modal-step.active {
    color: #2563EB;
    font-weight: 600;
}

.step-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.step-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid currentColor;
    flex-shrink: 0;
}

.modal-step.active .step-dot {
    background: #2563EB;
    border-color: #2563EB;
    position: relative;
}

.modal-step.active .step-dot::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== MEMBER AREA ===== */
.member-header {
    background: linear-gradient(135deg, #1e3a5f, #2563EB);
    color: #fff;
    padding: 2.5rem 0;
    margin-top: 70px;
}

.member-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.member-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.member-email-text {
    font-size: 0.85rem;
    opacity: 0.75;
}

.member-rooms {
    padding: 2.5rem 0 3rem;
}

.member-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.member-section-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.rooms-loading {
    text-align: center;
    padding: 2rem;
    color: var(--gray);
}

.rooms-empty {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}

.floor-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e5e7eb;
}

.floor-title:first-child {
    margin-top: 0;
}

.rooms-floor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
}

.member-room-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.room-card-img {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90% 40%;
}

.room-card-img .room-status-badge {
    position: absolute;
    top: 8px;
    right: 8px;
}

.room-card-content {
    padding: 0.8rem;
}

.member-room-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.member-room-card.room-available {
    border-color: #bbf7d0;
}

.member-room-card.room-occupied {
    opacity: 0.6;
    cursor: default;
}

.member-room-card.room-occupied:hover {
    transform: none;
    box-shadow: none;
}

.room-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.room-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.room-status-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.room-status-badge.room-available {
    background: #dcfce7;
    color: #16a34a;
}

.room-status-badge.room-occupied {
    background: #fef2f2;
    color: #dc2626;
}

.room-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.room-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
}

.room-info-label {
    color: var(--gray);
}

.room-info-value {
    font-weight: 600;
    color: var(--text);
}

.room-price {
    color: #2563EB;
    font-weight: 700;
}

.room-card-action {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: #2563EB;
    font-weight: 600;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}

/* Room Detail Modal */
.room-detail-image {
    position: relative;
    width: calc(100% + 5rem);
    margin: -2.5rem -2.5rem 1.2rem;
    height: 200px;
    overflow: hidden;
}

.room-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail-illust-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

.room-detail-note {
    font-size: 0.72rem !important;
    color: #9ca3af !important;
    font-style: italic;
    margin-top: 0.8rem !important;
    margin-bottom: 0 !important;
}

.room-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.room-detail-header h3 {
    margin-bottom: 0;
}

.detail-status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.detail-status-badge.room-available {
    background: #dcfce7;
    color: #16a34a;
}

.detail-status-badge.room-occupied {
    background: #fef2f2;
    color: #dc2626;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.room-detail-item {
    background: #f9fafb;
    border-radius: 10px;
    padding: 0.8rem;
}

.room-detail-item.full-width {
    grid-column: 1 / -1;
}

.room-detail-label {
    font-size: 0.75rem;
    color: var(--gray);
    display: block;
    margin-bottom: 0.2rem;
}

.room-detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.room-detail-facilities {
    margin-bottom: 0.5rem;
}

.room-detail-facilities ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    margin-top: 0.4rem;
}

.room-detail-facilities li {
    font-size: 0.8rem;
    color: var(--text);
    padding: 0.3rem 0;
}

.room-detail-facilities li::before {
    content: '✓ ';
    color: #16a34a;
    font-weight: 700;
}

/* ===== AVAILABLE ROOMS PANEL (Landing Page) ===== */
.available-rooms-panel {
    margin-top: 2.5rem;
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    animation: panelSlideUp 0.35s ease-out;
}

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

.available-rooms-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.available-rooms-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.available-rooms-tabs {
    display: flex;
    gap: 0.4rem;
}

.tab-btn {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: var(--gray);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.tab-btn.active {
    background: #2563EB;
    color: #fff;
    border-color: #2563EB;
}

.available-rooms-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 1.2rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.available-rooms-close:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.available-rooms-count {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.available-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
}

.available-room-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.available-room-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.ar-img {
    position: relative;
    height: 110px;
    overflow: hidden;
    background: #e8f0fe;
}

.ar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90% 40%;
}

.ar-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.58rem;
    font-weight: 600;
    color: #16a34a;
    background: rgba(255,255,255,0.92);
    padding: 0.12rem 0.5rem;
    border-radius: 50px;
}

.ar-info {
    padding: 0.6rem 0.8rem 0.7rem;
}

.ar-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.ar-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
}

.ar-floor {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gray);
    background: #f3f4f6;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.ar-row-price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.ar-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2563EB;
}

.ar-period {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.7rem; }
    .room-cards, .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero { min-height: auto; padding: 2rem 0; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { justify-content: center; }
    .hero-illustration { height: 350px; }
    .illustration-bg { width: 280px; height: 280px; }
    .illustration-person { width: 160px; }

    .room-cards, .facilities-grid, .features-grid { grid-template-columns: 1fr; }
    .section-header-row { flex-direction: column !important; align-items: center !important; text-align: center; }
    .section-view-all { margin-top: 0.5rem !important; }
    .registration-content { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .footer-top {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 0;
        text-align: center;
    }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .footer-contact { flex-direction: column; gap: 0.3rem; }
    .footer-contact-divider { display: none; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .cta-title { font-size: 1.6rem; }
    .cta-stats { gap: 1rem; }
    .cta-stat-number { font-size: 1.4rem; }
    .cta-stat-label { font-size: 0.65rem; }

    .member-header-content { flex-direction: column; text-align: center; gap: 1rem; }
    .rooms-floor-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .available-rooms-header { flex-direction: column; align-items: flex-start; }
    .available-rooms-close { position: absolute; top: 1rem; right: 1rem; }
    .available-rooms-panel { position: relative; }
    .available-rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .room-detail-grid { grid-template-columns: 1fr; }
    .room-detail-facilities ul { grid-template-columns: 1fr; }
    .cta-stat-divider { height: 30px; }

    section { padding: 3rem 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    section { padding: 2.5rem 0; }
    .container { padding: 0 1rem; }
}
