body {
    background-color: #F4F6FB;
    font-family: 'Poppins', sans-serif;
}

/* ============================= */
/* ===== HERO FINAL VERSION ==== */
/* ============================= */

.hero {
    position: relative;
    min-height: 100vh;
    background: url('../images/hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    animation: slowZoom 12s ease-in-out infinite alternate;
}

/* Luxury blue overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(3, 23, 59, 0.98),
        rgba(19, 36, 71, 0.95),
        rgba(134, 151, 199, 0.88)
    );
}
/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 20px;
}

/* Small badge */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
}

/* Main title */
.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 
        0 8px 30px rgba(0,0,0,0.6),
        0 0 25px rgba(59,130,246,0.2);
}

/* Highlight text */
.hero-title span {
    color: #60A5FA;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 35px;
    color: #e5e7eb;
}

/* Buttons wrapper */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Primary button */
.btn-hero-primary {
    background: #ffffff;
    color: #1E3A8A;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Outline button */
.btn-hero-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: #1E3A8A;
}
@keyframes slowZoom {
    from { background-size: 100%; }
    to { background-size: 110%; }
}


/* ===== REASONS SECTION ULTRA ===== */

.reasons-section {
    background: #0c1a3a;
    color: white;
}

.section-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.ultra-room-section .section-title {
    color: white;
}
.section-title {
    font-size: 38px;
    font-weight: 700;
}

/* Card */
.reason-card {
    background: rgba(255,255,255,0.05);
    padding: 35px 25px;
    border-radius: 18px;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
}

.reason-card i {
    font-size: 32px;
    color: #60A5FA;
    margin-bottom: 18px;
    display: inline-block;
    transition: 0.3s;
}

.reason-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 14px;
    opacity: 0.85;
}

/* Hover Ultra Effect */
.reason-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.reason-card:hover i {
    transform: scale(1.15);
    color: #93C5FD;
}

/* ===== ULTRA ELITE DIVIDER LINE ===== */

.reasons-section {
    position: relative;
    background: #0c1a3a;
    color: white;
    overflow: hidden;
}

/* Gradient line atas */
.reasons-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(96,165,250,0.8),
        transparent
    );
}

/* ===== RADIAL GLOW BACKGROUND ===== */

.reasons-section::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(59,130,246,0.15),
        transparent 70%
    );
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(59,130,246,0.18),
        transparent 70%
    );
    top: -150px;
    right: -150px;
    pointer-events: none;
    transition: transform 0.2s ease-out;
}


/* =============================== */
/* ===== FINAL OUR ROOM SECTION === */
/* =============================== */

.ultra-room-section {
    position: relative;
    background: url('../images/room-bg.jpg') center center / cover no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

/* Dark elegant overlay */
.ultra-room-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.85),
        rgba(10, 10, 20, 0.9)
    );
}

/* Content above overlay */
.ultra-room-section .container {
    position: relative;
    z-index: 2;
}

/* Section Title */
.ultra-room-section .section-title {
    color: #ffffff;
    font-weight: 700;
}

/* =============================== */
/* ===== ROOM CARD STYLE ========= */
/* =============================== */

.ultra-room-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ultra-room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

/* Image Portrait */
.room-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ultra-room-card:hover img {
    transform: scale(1.05);
}

/* Content */
.room-content {
    padding: 25px;
}

.room-content h5 {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 10px;
}

.room-content p {
    color: #475569;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Price Box */
.price-box {
    background: #f1f5f9;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    color: #334155;
}

.price-box strong {
    color: #1E3A8A;
}
/* ===== NAVBAR LOGO ===== */
.logo-navbar {
    height: 45px;
    transition: 0.3s ease;
}

.logo-navbar:hover {
    transform: scale(1.05);
}

.btn-cozy {
    background-color: white;
    color: #1E3A8A;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-cozy:hover {
    background-color: #e5e7eb;
}

/* Section spacing */
.section-padding {
    padding: 80px 0;
}

/* ===== NAVBAR PREMIUM ===== */
.navbar-cozy {
    background: linear-gradient(180deg, #0F1E46, #1E3A8A);
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar-cozy .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar-cozy .nav-link::after {
    content: '';
    width: 0;
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.navbar-cozy .nav-link:hover::after {
    width: 100%;
}

.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
}

/* Offset body karena navbar fixed */
body {
    padding-top: 90px;
}

/* ===== FADE IN ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* FORCE WHITE TEXT IN ULTRA ROOM SECTION */

.ultra-room-section .section-badge {
    color: #ffffff !important;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
}

.ultra-room-section .section-title {
    color: #ffffff !important;
}

.ultra-room-section h2 {
    color: #ffffff;
}

.room-graded {
    filter:
        brightness(1.05)
        contrast(1.08)
        saturate(1.08)
        sepia(0.08)
        hue-rotate(-5deg);
}

/* ===================================== */
/* ===== ULTRA FACILITY ELITE MODE ===== */
/* ===================================== */

.ultra-facility-section {
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    color: #0f172a;
}

/* ===== CARD ===== */

.facility-card {
    position: relative;
    background: #ffffff;
    padding: 45px 30px;
    text-align: center;
    border-radius: 18px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    overflow: hidden;
}

/* Soft lift */
.facility-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* ===== ICON BASE ===== */

.facility-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    position: relative;
    transition: all 0.4s ease;
}

/* Subtle breathing glow */
.facility-icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 25px;
    background: radial-gradient(
        circle,
        rgba(59,130,246,0.5),
        transparent 70%
    );
    opacity: 0.5;
    animation: glowPulse 3s infinite ease-in-out;
    z-index: -1;
}

/* Hover stronger glow */
.facility-card:hover .facility-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(59,130,246,0.4);
}

/* ===== SHINE EFFECT ===== */

.facility-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: rotate(25deg);
    transition: all 0.8s ease;
}

.facility-card:hover::after {
    left: 130%;
}

/* ===== TEXT ===== */

.facility-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    transition: 0.3s;
}

.facility-card p {
    font-size: 14px;
    color: #475569;
    transition: 0.3s;
}

/* Slight text emphasis on hover */
.facility-card:hover h5 {
    color: #1E3A8A;
}

/* ===== ANIMATION ===== */

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}
/* ===== FOOTER CLEAN BOX ===== */

.footer-cozy {
    background: linear-gradient(180deg, #0F1E46, #1E3A8A);
    color: rgba(255,255,255,0.85);
    padding: 80px 0 30px;
    border-radius: 0;
    position: relative;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ===== GLASS ROOM CARD ===== */
.room-card {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* =============================== */
/* ===== FOOTER LINK FIX ========= */
/* =============================== */

.footer-cozy a {
    color: #ffffff !important;
    text-decoration: none !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Smooth underline animation */
.footer-cozy a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-cozy a:hover {
    color: #ffffff !important;
}

.footer-cozy a:hover::after {
    width: 100%;
}


/* ===== ABOUT HERO ===== */
.about-hero {
    position: relative;
    padding: 140px 0 100px;
    background: url('../images/hero.jpg') center/cover no-repeat;
    text-align: center;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.85),
        rgba(10,10,20,0.9)
    );
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-subtitle {
    color: #e5e7eb;
    font-size: 16px;
}

/* ===== DARK SECTION ===== */
.about-dark {
    background: #0c1a3a;
}

.about-card {
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 20px;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ===== VALUE CARD ===== */
.value-card {
    padding: 40px 25px;
    background: white;
    border-radius: 18px;
    transition: 0.3s ease;
}

.value-card i {
    font-size: 32px;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== CTA ===== */
.about-cta {
    background: linear-gradient(135deg, #0F1E46, #1E3A8A);
}

/* =============================== */
/* ===== LOCATION SECTION ======== */
/* =============================== */

.location-section {
    padding: 100px 0 0;
    background: #f8fafc;
}

.location-subtitle {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Map wrapper */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 40px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) contrast(1.05);
}

/* Floating card */
.location-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 25px 35px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    min-width: 280px;
}

.location-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.location-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

/* =============================== */
/* ===== CONTACT HERO ============ */
/* =============================== */

.contact-hero {
    position: relative;
    padding: 140px 0 100px;
    background: url('../images/hero.jpg') center/cover no-repeat;
    text-align: center;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.85),
        rgba(10,10,20,0.9)
    );
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
}

.contact-subtitle {
    color: #e5e7eb;
}

/* =============================== */
/* ===== CONTACT CARD ============ */
/* =============================== */

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 22px;
    color: #1E3A8A;
}

/* =============================== */
/* ===== ULTRA MAP SECTION ======= */
/* =============================== */

.ultra-map-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #0c1a3a;
}

.ultra-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) brightness(0.7) contrast(1.1);
    transition: 0.5s ease;
}

.ultra-map-section:hover iframe {
    filter: grayscale(30%) brightness(0.9);
}

/* Glow effect */
.ultra-map-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(59,130,246,0.25),
        transparent 70%
    );
    top: -150px;
    right: -150px;
    pointer-events: none;
}

/* Floating glass card */
.ultra-map-card {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* =============================== */
/* ===== WA BUTTON MINIMAL ======= */
/* =============================== */

.btn-wa-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 50px;
    background: #1E3A8A;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-wa-minimal:hover {
    background: #162C6E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30,58,138,0.3);
    color: white;
}

/* =============================== */
/* ===== LOGIN PAGE PREMIUM ====== */
/* =============================== */

.login-section {
    position: relative;
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.85),
        rgba(10,10,20,0.9)
    );
}

.login-card {
    position: relative;
    z-index: 2;
    width: 380px;
    padding: 50px 40px;
    border-radius: 25px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.login-title {
    font-weight: 700;
    letter-spacing: 1px;
}

.login-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.login-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 15px;
}

.login-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.login-input:focus {
    background: rgba(255,255,255,0.15);
    border-color: #3B82F6;
    box-shadow: none;
    color: white;
}

.btn-login {
    padding: 12px;
    border-radius: 50px;
    border: none;
    background: #1E3A8A;
    color: white;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-login:hover {
    background: #162C6E;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30,58,138,0.4);
}

.login-footer small {
    opacity: 0.6;
}