/* --- COLORS & ROOT --- */
:root {
    --gold: #C5A059;
    --gold-dark: #A67C37;
    --black: #0F0F0F;
    --dark-gray: #1A1A1A;
    --light-gray: #2A2A2A;
    --white: #FFFFFF;
    --text-muted: #AAAAAA;
    --whatsapp: #25D366;
    --dark-blue: #1A2234;
    --dark-blue-95: #1A2234F2;
    --dark-blue-85: #1A2234D9;
    --dark-blue-50: #1A223480;
    --mid-blue: #25314A;
}

/* --- RESET & BASICS --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--dark-blue); color: var(--white); line-height: 1.7; overflow-x: hidden; }
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 800px; }
.section-padding { padding: 100px 0; }
.dark-bg { background-color: var(--mid-blue); }
.center { text-align: center; }

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: var(--dark-blue-95);
    position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid #333;
}
.logo { font-weight: 800; font-size: 1.5rem; color: var(--gold); letter-spacing: 1px; }
.logo span { color: white; }
.nav-links a { color: white; text-decoration: none; margin-left: 25px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* --- HERO WHITE SECTION --- */
.hero-white { background-color: #ffffff; padding: 120px 0 0 0; overflow: hidden; display: flex; align-items: center; min-height: 90vh; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-content { flex: 1.5; }
.hero-content h1 { font-size: 3.1rem; font-weight: 900; line-height: 1.1; color: #1a1a1a; margin-bottom: 20px; }
.hero-content h1 span { color: #c5a059; }
.hero-content p { font-size: 1.2rem; color: #444; margin-bottom: 35px; max-width: 100%; }
.hero-action-btns { display: flex; gap: 15px; }
.btn-gold { background-color: #c5a059; color: #000; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 4px; transition: 0.3s; }
.btn-outline-dark { border: 2px solid #1a1a1a; color: #1a1a1a; padding: 13px 35px; text-decoration: none; font-weight: bold; border-radius: 4px; transition: 0.3s; }
.btn-gold:hover { background-color: #b08d48; }
.btn-outline-dark:hover { background: #1a1a1a; color: #fff; }
.hero-profile-img { flex: 1; display: flex; justify-content: flex-end; align-self: flex-end; }
.hero-profile-img img { max-width: 100%; height: auto; display: block; }

/* --- KENALI SECTION MODIFICATIONS --- */
.about-container { display: flex; gap: 60px; align-items: flex-start; }
.about-gallery { flex: 0.7; display: flex; flex-direction: column; gap: 15px; }
.main-img { border: 5px solid var(--gold); border-radius: 15px; overflow: hidden; max-height: 450px; display: flex; justify-content: center; background: #fff; }
.main-img img { width: 100%; height: 100%;object-fit: contain; display: block; }
.thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.thumb-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; border: 2px solid transparent; transition: 0.3s; cursor: pointer; }
.thumb-grid img:hover { border-color: var(--gold); }

.about-content { flex: 1.2; }
.about-list { list-style: none; margin: 25px 0; }
.about-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.about-list i { color: var(--gold); }
.quote { border-left: 4px solid var(--gold); padding-left: 20px; font-style: italic; font-size: 1.1rem; color: var(--gold); }

/* --- ORIGINAL REMAINING SECTIONS --- */
.section-header { margin-bottom: 30px; }
.section-header h2 {
    font-size: 2.5rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: inline-block;
    max-width: calc(100% - 40px);
    word-wrap: break-word;
}
.subtitle { color: var(--gold); font-weight: bold; display: block; margin-bottom: 5px; }
.bar { height: 4px; background: var(--gold); margin-top: 15px; }
.center-bar { width: 100%; max-width: 100%; margin: 15px auto 0 auto; }

/* --- MOBILE SPECIFIC TWEAKS --- */

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem; /* Slightly scales down text size so it fits mobile cleanly */
    }

    /* Re-enforcing desktop widths vs mobile limits */
    .bar { max-width: 100%;} /* Prevents the bar from expanding beyond screen viewports */
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.service-card { background: var(--mid-blue); padding: 40px; border-radius: 10px; transition: 0.4s; border: 1px solid #444; }
.service-card:hover { border-color: var(--gold); transform: translateY(-10px); background: #333; }
.icon-box { width: 60px; height: 60px; background: var(--gold); display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 20px; }
.icon-box i { font-size: 1.5rem; color: var(--dark-blue); }

.soldSwiper { padding: 20px 0 50px 0; }
.gallery-tile { position: relative; border-radius: 8px; overflow: hidden; border: 2px solid #333; transition: 0.3s; }
.gallery-tile:hover { border-color: #c5a059; }
.gallery-tile img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.tile-label { background: var(--dark-blue); color: #fff; text-align: center; padding: 10px; font-size: 0.9rem; font-weight: bold; }

.faq-item { background: var(--mid-blue); margin-bottom: 15px; border-radius: 8px; }
.faq-btn { width: 100%; padding: 25px; text-align: left; background: none; border: none; color: white; font-size: 1.1rem; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-content { padding: 0 25px 25px; color: var(--text-muted); display: none; }

.final-cta { background: var(--gold); color: var(--dark-blue); padding: 80px 0; }
.final-cta h2 { font-size: 2.8rem; margin-bottom: 15px; }

footer { text-align: center; padding: 40px; border-top: 1px solid #333; color: var(--text-muted); font-size: 0.9rem; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: var(--whatsapp); width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; color: white; z-index: 2000; box-shadow: 0 10px 25px rgba(0,0,0,0.4); transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

.liputan-container { display: flex; flex-direction: column; gap: 40px; margin-top: 40px; }
.region-group h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; border-left: 3px solid var(--gold); padding-left: 15px; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.area-pill { text-decoration: none; color: white; background: var(--dark-blue-50); border: 1px solid #444; padding: 8px 18px; border-radius: 10px; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; }
.area-pill:hover { background: var(--gold); color: var(--dark-blue); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3); }

/* --- LIGHTBOX MODAL --- */
.modal { display: none; position: fixed; z-index: 9999; padding-top: 100px; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); overflow: hidden; }
.modal-content { margin: auto; display: block; max-width: 90%; max-height: 80vh; border: 3px solid var(--gold); border-radius: 8px; animation: zoom 0.5s; }
@keyframes zoom { from {transform: scale(0.5); opacity: 0;} to {transform: scale(1); opacity: 1;} }
.close-modal { position: absolute; top: 40px; right: 40px; color: #fff; font-size: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--gold); transform: rotate(90deg); }
#captionModal { text-align: center; color: var(--gold); font-size: 1.5rem; padding: 20px; text-transform: uppercase; font-weight: bold; }

@media (max-width: 992px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-action-btns { justify-content: center; }
    .hero-profile-img { justify-content: center; width: 100%; }
    .about-container { flex-direction: column; text-align: center; }
    .about-gallery { width: 100%; max-width: 400px; margin: 0 auto; }
    .quote { border-left: none; border-top: 2px solid var(--gold); padding: 20px 0; }
    nav .nav-links { display: none; }
}

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 15px; /* Makes the button rounded */
    font-size: 1.1rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.green-btn {
    background-color: var(--whatsapp); /* Uses the green #25D366 from your root */
    color: white !important;
}

.green-btn:hover {
    background-color: #128C7E; /* A slightly darker green for the hover effect */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* --- MAP SECTION --- */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--gold); /* Matches your brand style */
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(110%); /* Subtle professional look */
}