/* 
   MLS Homestay Banjarmasin - Homiq Aesthetic Style Sheet
   Palette: Pure White, Slate Black, High Contrast Greys, Gold
   Font: DM Sans (SANS-SERIF GLOBALLY)
*/

:root {
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-dark: #09090B;
    --bg-dark-secondary: #18181B;
    --bg-grey-light: #F4F4F5;
    
    --color-gold: #C5A059;
    --color-gold-dark: #A6803C;
    --color-gold-light: #F4EAD4;
    
    --color-text-dark: #09090B;
    --color-text-muted: #374151; /* Darker high contrast grey, WCAG AAA compliant */
    --color-text-light: #FAFAFA;
    --color-text-light-muted: #D4D4D8;
    --color-white: #FFFFFF;
    
    --font-global: 'DM Sans', system-ui, -apple-system, sans-serif;
    
    --border-light: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(197, 160, 89, 0.25);
    --border-gold-heavy: rgba(197, 160, 89, 0.5);
    
    --transition-smooth: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-global);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden !important;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-global);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-text-dark);
}

p {
    font-family: var(--font-global);
    font-weight: 400;
}

/* Sections global spacing */
section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

section.white-bg {
    background-color: var(--bg-white);
}

section.light-bg {
    background-color: var(--bg-light);
}

/* Category Bullets (Homiq Style: ■ CATEGORY) */
.category-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.category-bullet .square-bullet {
    color: var(--color-text-dark);
    font-size: 0.85rem;
}

.category-bullet.white-bullet .square-bullet {
    color: var(--color-white);
}

.category-bullet .category-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    text-transform: uppercase;
}

.category-bullet.white-bullet .category-text {
    color: var(--color-white);
}

/* Headings Homiq Style */
.section-large-title {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    line-height: 1.25;
    font-weight: 500;
    max-width: 850px;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    letter-spacing: -0.8px;
}

/* Pill Buttons with Arrow (Homiq Style) */
.btn-pill-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-text-dark);
    border: 1px solid var(--color-text-dark);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-pill-arrow:hover {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-pill-arrow.dark-btn {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    border: none;
}

.btn-pill-arrow.dark-btn:hover {
    background-color: var(--bg-dark-secondary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.btn-pill-arrow.block-btn {
    width: 100%;
}

.btn-pill-arrow-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    color: var(--color-text-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-pill-arrow-white:hover {
    background-color: var(--bg-grey-light);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 4px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 20px;
}

.logo-img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-item:hover {
    color: var(--color-text-dark);
}

.nav-admin-btn-pill {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-text-dark);
    padding: 10px 24px;
    border-radius: 40px;
    transition: var(--transition-smooth);
}

.nav-admin-btn-pill:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
}

.lang-toggle-btn {
    font-family: var(--font-global);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
    background-color: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-toggle-btn:hover {
    background-color: var(--bg-dark);
    color: var(--color-white);
    border-color: var(--bg-dark);
}

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

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

/* Hero Section (Aerolift Style) */
.hero-section {
    position: relative;
    padding: clamp(90px, 12vw, 140px) 0 clamp(50px, 8vw, 100px);
    min-height: clamp(420px, 70vh, 720px);
    background-color: var(--bg-dark);
    background-image: linear-gradient(180deg, rgba(9, 9, 11, 0.7) 0%, rgba(9, 9, 11, 0.95) 100%), url('../assets/gedung.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    color: var(--color-white);
}

.hero-watermark {
    position: absolute;
    font-size: 16vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.015);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    letter-spacing: 15px;
    text-align: center;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-light-muted);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    color: var(--bg-dark);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-explore:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.hero-right-media {
    display: flex;
    justify-content: flex-end;
}

.media-card-wrapper {
    width: 100%;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.media-card-wrapper:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold-heavy);
}

.media-card-img {
    width: 100%;
    height: clamp(220px, 30vw, 380px);
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.media-card-info {
    padding: 24px;
}

.media-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-gold);
    background-color: rgba(197, 160, 89, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.media-card-info h3 {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 6px;
    font-weight: 600;
}

.media-card-info p {
    font-size: 0.85rem;
    color: var(--color-text-light-muted);
    line-height: 1.5;
}

/* Intro Section */
.intro-section {
    padding-top: clamp(50px, 7vw, 100px);
    padding-bottom: clamp(50px, 7vw, 100px);
}

.intro-text {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 500;
    line-height: 1.35;
    color: var(--color-text-dark);
    max-width: 1050px;
    letter-spacing: -0.8px;
}

.intro-text .text-muted {
    color: var(--color-text-muted);
}

/* Benefits (Fasilitas) Cards Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.benefit-icon-box {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.benefit-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.property-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    border-color: var(--border-gold-heavy);
}

.property-img-wrapper {
    height: 320px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.property-card:hover .property-img {
    transform: scale(1.02);
}

.property-badge-new {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--color-text-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.property-details {
    padding: 20px;
}

.property-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.property-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin-bottom: 8px;
}

.property-location {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* Calculator Box Homiq style */
.calculator-box-new {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    margin-top: 48px;
    box-shadow: var(--card-shadow);
}

.calc-header-new h3 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.calc-header-new p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.calc-inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid var(--bg-grey-light);
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.calc-inputs-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-label-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.calc-radio-group, .calc-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Inputs check containers */
.radio-container, .checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    color: var(--color-text-dark);
}

.radio-container input, .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark, .checkbox-checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--bg-grey-light);
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.radio-checkmark {
    border-radius: 50%;
}

.checkbox-checkmark {
    border-radius: 4px;
}

.radio-container:hover input ~ .radio-checkmark,
.checkbox-container:hover input ~ .checkbox-checkmark {
    border-color: var(--color-gold);
}

.radio-container input:checked ~ .radio-checkmark,
.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: var(--color-text-dark);
    border-color: var(--color-text-dark);
}

.radio-checkmark:after, .checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .radio-checkmark:after,
.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}

.radio-container .radio-checkmark:after {
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bg-white);
}

.checkbox-container .checkbox-checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--bg-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-grey-light);
    padding: 24px 32px;
    border-radius: 16px;
}

.result-sub-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.result-price-wrapper-new {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.result-price-wrapper-new .price-symbol {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.price-val-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.result-price-wrapper-new .price-period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Featured Black Box Section (Homiq Style) */
.featured-black-box {
    background-color: var(--color-text-dark);
    border-radius: clamp(16px, 3vw, 28px);
    padding: clamp(30px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(24px, 4vw, 50px);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
    min-height: clamp(380px, 50vh, 520px);
}

.featured-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: clamp(20px, 5vw, 90px);
}

.featured-box-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.featured-box-desc {
    font-size: 0.9rem;
    color: var(--color-text-light-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.featured-overlap-card {
    position: absolute;
    bottom: -40px;
    left: 40px;
    width: 220px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--color-text-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: rotate(-3deg);
    z-index: 10;
}

.overlap-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-right-col {
    height: 100%;
    min-height: 380px;
    border-radius: 20px;
    overflow: hidden;
}

.featured-big-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-section .container {
    overflow: hidden;
}

.testimonials-grid-new {
    display: flex;
    gap: 24px;
    width: max-content;
}

.scroll-loop {
    animation: scrollLoop 30s linear infinite;
}


@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); } /* 12px is half gap */
}

.testimonial-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    flex-shrink: 0;
    white-space: normal;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold-dark);
}

/* Contact Us Section */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-headline {
    font-size: 2.2rem;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -0.8px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.contact-info-item p {
    font-size: 1rem;
    color: var(--color-text-dark);
}

.info-link:hover {
    color: var(--color-gold-dark);
    text-decoration: underline;
}

.maps-box-new {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-top: 36px;
    box-shadow: var(--card-shadow);
}

/* Booking form styling Homiq style */
.form-card-new {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-title {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-field label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.form-group-field input, 
.form-group-field select, 
.form-group-field textarea {
    background-color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--color-text-dark);
    padding: 14px 18px;
    border-radius: 12px;
    font-family: var(--font-global);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group-field input:focus, 
.form-group-field select:focus, 
.form-group-field textarea:focus {
    outline: none;
    border-color: var(--color-text-dark);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

.form-group-field select option {
    background-color: var(--bg-white);
}

/* Footer Section Homiq style */
.footer-h {
    background-color: var(--bg-white);
    color: var(--color-text-dark);
    padding: clamp(60px, 8vw, 100px) 0 40px;
    border-top: 1px solid var(--border-light);
}

.footer-top-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: clamp(24px, 4vw, 50px);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.footer-sub-lbl {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-intro-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-text-dark);
}

.footer-contact-val {
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.footer-menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.footer-menu-links a:hover {
    color: var(--color-text-dark);
}

.footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 10;
}

.footer-social-flex {
    display: flex;
    gap: 10px;
}

.footer-social-flex a:hover {
    color: var(--color-text-dark);
}

/* Giant Bottom Brand Watermark (Homiq style) */
.footer-giant-brand {
    font-size: 11vw;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.015);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.03);
    letter-spacing: 15px;
    text-align: center;
    pointer-events: none;
    z-index: 1;
    margin-top: 60px;
    margin-bottom: -20px;
    white-space: nowrap;
    user-select: none;
}

/* ==========================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   (Mobile-First, Compact UX for phones)
   ========================================== */

/* Large tablets / small desktops */
@media (max-width: 1200px) {
    .hero-split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .footer-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-top-row > *:last-child {
        grid-column: 1 / -1;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-black-box {
        grid-template-columns: 1fr;
    }

    .featured-left-col {
        padding-bottom: 0;
    }

    .featured-right-col {
        min-height: 240px;
    }

    section {
        padding: 70px 0;
    }
}

/* ==========================================
   LANDMARK GRID (Location Section)
   ========================================== */
.landmark-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 0;
}

.landmark-card {
    background-color: var(--bg-grey-light);
    padding: 20px 16px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.landmark-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.landmark-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 4px;
}

.landmark-dist {
    color: var(--color-gold-dark);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.landmark-name {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .landmark-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

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

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

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-caption {
    opacity: 1;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.gallery-lightbox p {
    color: white;
    margin-top: 16px;
    font-size: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Availability Section */
.availability-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.availability-stats-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
}
.availability-stats-box .stat-item {
    padding: 10px 0;
}

/* Mobile — Tablet portrait */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .availability-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    .availability-stats-box {
        padding: 24px 16px !important;
        gap: 12px !important;
    }
    .availability-stats-box .stat-item strong {
        font-size: 2.2rem !important;
    }

    .container {
        padding: 0 16px;
    }

    /* Navbar compact */
    .menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 32px;
    }

    .nav-container {
        padding: 10px 16px;
    }

    .nav-links {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 56px);
        height: calc(100dvh - 56px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-top: 1px solid var(--border-light);
        padding: 40px 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        font-size: 1rem;
    }

    /* Hero: single col, compact */
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-right-media {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 90px 0 48px;
    }

    .hero-badge {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7.5vw, 2.4rem);
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }

    .btn-explore {
        font-size: 0.88rem;
        padding: 12px 24px;
    }

    /* Intro */
    .intro-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .intro-text {
        font-size: clamp(1.15rem, 4.5vw, 1.6rem);
    }

    /* Category bullet smaller */
    .category-bullet {
        margin-bottom: 16px;
    }

    .category-bullet .category-text {
        font-size: 0.65rem;
    }

    /* Section title */
    .section-large-title {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
        margin-bottom: 24px;
    }

    /* Benefits: 2 col */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefit-card {
        padding: 18px;
        border-radius: 16px;
        gap: 10px;
    }

    .benefit-icon-box {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .benefit-title {
        font-size: 0.9rem;
    }

    .benefit-desc {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    /* Properties grid */
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .property-img-wrapper {
        height: 300px !important;
        background-color: #121212 !important;
    }

    .property-img {
        object-fit: cover !important;
    }

    .property-details {
        padding: 16px;
    }

    .property-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    /* Featured black box */
    .featured-black-box {
        grid-template-columns: 1fr;
        padding: 28px 20px;
        min-height: auto;
        border-radius: 20px;
    }

    .featured-box-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .featured-box-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .featured-overlap-card {
        display: none;
    }

    .featured-right-col {
        min-height: 200px;
    }

    /* Testimonials */
    .testimonial-box {
        width: 260px;
        padding: 22px;
        border-radius: 16px;
    }

    .testimonial-text {
        font-size: 0.82rem;
        margin-bottom: 16px;
    }

    /* Steps / form row */
    .steps-grid-new,
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Calculator */
    .calc-inputs-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calc-result-row {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .calc-result-row .btn-pill-arrow {
        width: 100%;
    }

    /* Contact section */
    #kontak {
        padding: 40px 0 !important;
    }

    /* Footer */
    .footer-h {
        padding: 48px 0 32px;
    }

    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
        margin-bottom: 24px;
    }

    .footer-intro-title {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .footer-contact-val {
        font-size: 0.85rem;
    }

    .footer-copyright-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        font-size: 0.78rem;
    }

    /* Button pills compact */
    .btn-pill-arrow,
    .btn-pill-arrow-white {
        font-size: 0.82rem;
        padding: 10px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Extra-small phones (≤480px) */
@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 8.5vw, 1.9rem);
    }

    .hero-desc {
        font-size: 0.83rem;
    }

    .btn-explore {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-actions {
        width: 100%;
    }

    .testimonial-box {
        width: 240px;
        padding: 18px;
    }

    .property-card {
        border-radius: 14px;
    }

    .benefit-card {
        padding: 16px;
        gap: 8px;
    }

    .featured-black-box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .featured-right-col {
        min-height: 160px;
    }

    /* Maps iframe mobile height */
    .maps-box-full iframe {
        height: 280px !important;
    }

    /* Landmark grid mobile */
    .landmark-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .landmark-card {
        padding: 14px 10px;
        border-radius: 12px;
        gap: 6px;
    }

    .landmark-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .landmark-icon svg {
        width: 18px;
        height: 18px;
    }

    .landmark-dist {
        font-size: 0.82rem;
    }

    .landmark-name {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .landmark-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* Custom Added Room Buttons and styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    font-family: var(--font-global);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white) !important;
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
}

/* ==========================================
   SPLASH SCREEN STYLE (OPENING ANIMATION)
   ========================================== */
.splash-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for iOS/mobile */
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2147483647; /* Max z-index — above everything including navbar */
    transition: opacity 1s ease-in-out;
    opacity: 1;
    pointer-events: all;
    overflow: hidden;
}

/* Animasi saat splash screen memudar keluar (fade-out) */
.splash-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Video MP4 Fullscreen Menutup Seluruh Layar */
.splash-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
