/* =========================================
   1. VARIABLES & RESET (NATURE, SILVER & BALI GOLD)
   ========================================= */
:root {
    /* Nuansa Alam Sidemen: Deep Tropical Forest */
    --primary: #1C2E24;          
    --primary-light: #2A4436;    

    /* Nuansa Perak 925: Bright Sheen & Polished Metallic */
    --silver: #E2E8F0;           
    --silver-dark: #8E9BAE;      
    --silver-sheen: #F1F5F9;     
    --border-silver: rgba(142, 155, 174, 0.28);

    /* Nuansa Emas Pengrajin Bali: Warm Gold & Antique Gold */
    --accent: #C5A880;           /* Warm Balinese Gold */
    --accent-gold: #C5A880;      
    --gold-light: #DFCAAC;       /* Champagne Gold Highlight */
    --gold-dark: #9E7D52;        /* Burnished Bronze Gold */

    /* Warna Teks & Latar Belakang */
    --text: #242926;             /* Charcoal Slate */
    --text-muted: #5E6962;       
    --bg-light: #F7F5F0;         /* Natural Rice Paper / Linen */
    --white: #FFFFFF;
    --border-color: rgba(197, 168, 128, 0.3); /* Border aksen emas halus */

    --header-height: 85px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .section-title {
    font-family: 'Cinzel', serif;
    color: var(--primary);
    letter-spacing: 0.75px;
    font-weight: 600;
}

.container { 
    max-width: 1140px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section-padding { 
    padding: 85px 0; 
}

.text-center { 
    text-align: center; 
}

.bg-light {
    background-color: var(--bg-light);
}

/* =========================================
   2. HEADER & NAVIGATION (FIXED)
   ========================================= */
.site-header {
    background: #ffffff;
    height: var(--header-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(28, 46, 36, 0.06);
    border-bottom: 1px solid var(--border-silver);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a.nav-item {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-links a.nav-item:hover {
    color: var(--gold-dark);
}

.cta-desktop {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-dark));
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 22px;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.35);
}

.cta-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(197, 168, 128, 0.5);
    filter: brightness(1.05);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 3000;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

/* Mobile Nav Dropdown */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    z-index: 2500;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 25px;
    border-top: 1px solid var(--border-silver);
}

.mobile-nav.active {
    display: flex !important; 
}

.mobile-nav a {
    text-decoration: none;
    color: var(--primary);
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-mobile {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-dark));
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 4px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .nav-links { display: none !important; }
    .mobile-toggle { display: flex !important; }
}

/* =========================================
   3. HERO SECTION (NATURE OVERLAY & TYPOGRAPHY)
   ========================================= */
.hero {
    position: relative;
    min-height: 95vh; 
    background: url('../images/hero.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 0 100px; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Nuansa kabut dan hutan Sidemen */
    background: linear-gradient(
        180deg, 
        rgba(20, 36, 27, 0.88) 0%, 
        rgba(28, 46, 36, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 920px;
    padding: 0 24px;
}

.subtitle-gold {
    font-family: 'Cinzel', serif;
    color: #F3E5D0;                    /* Sangat terang di atas background gelap */
    font-size: 0.95rem;
    font-weight: 700;                  /* Pakai bobot 700 asli Cinzel */
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9); /* Shadow tajam tanpa blur tebal */
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 5.2vw, 4rem); 
    color: #ffffff;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 24px; 
    text-shadow: 2px 4px 18px rgba(0, 0, 0, 0.85); 
}

.hero-content p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 40px; 
    font-weight: 300;
    line-height: 1.75;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

/* Tombol Emas Elegan */
.btn-gold { 
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--gold-dark) 100%) !important;
    color: #ffffff !important;
    border: 1px solid var(--accent-gold) !important;
    box-shadow: 0 4px 16px rgba(197, 168, 128, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(197, 168, 128, 0.55);
    filter: brightness(1.08);
}

/* Tombol Outline Bersih dengan Kilau Silver */
.btn-outline { 
    border: 1.5px solid var(--silver) !important; 
    color: var(--white) !important; 
    background-color: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    border-color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 10px;
    }
    .btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}

/* =========================================
   4. WHY CHOOSE US (SILVER & GOLD TOUCH)
   ========================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card-premium {
    background: var(--white);
    padding: 50px 35px;
    border: 1px solid var(--border-silver);
    border-top: 4px solid var(--accent-gold);
    position: relative;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(28, 46, 36, 0.03);
}

.why-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.18);
}

.why-number {
    font-family: 'Cinzel', serif;
    font-size: 4.2rem;
    color: rgba(197, 168, 128, 0.16);
    position: absolute;
    top: 10px;
    right: 20px;
    font-weight: 700;
}

.why-content h3 {
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.why-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   5. PRICING SECTION
   ========================================= */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 850px;
    margin: 40px auto 0;
}

.price-card {
    padding: 45px 35px;
    border: 1px solid var(--border-silver);
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(28, 46, 36, 0.03);
}

.price-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.15);
}

.price-card.featured {
    border: 2px solid var(--accent-gold);
    position: relative;
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(28, 46, 36, 0.08);
}

.price-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--accent-gold));
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 16px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(197, 168, 128, 0.3);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-box {
    margin: 15px 0 20px;
}

.price-box .old {
    position: relative;
    color: #999;
    font-size: 0.95rem;
    margin-right: 12px;
}

.price-box .old::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #e74c3c;
    transform: rotate(-10deg);
    border-radius: 2px;
}

.price-box .new {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.price-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 25px;
}

.btn-card {
    display: inline-block;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1.5px solid var(--accent-gold);
    color: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-card:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

.btn-card.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-dark));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

.btn-card.gold:hover {
    filter: brightness(1.08);
}

@media (max-width: 768px) {
    .pricing-grid-two {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .price-card.featured {
        transform: scale(1);
        margin-top: 25px;
    }
}

/* =========================================
   6. GALLERY SECTION
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 gambar data lokal tampil seimbang 2x2 */
    gap: 25px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%; 
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-silver);
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(28, 46, 36, 0.12);
}

.btn-ig {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    border: 1.5px solid var(--accent-gold);
    color: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-ig:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   7. LOCATION SECTION
   ========================================= */
.location-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    border: 1px solid var(--border-silver);
    box-shadow: 0 10px 30px rgba(28, 46, 36, 0.04);
}

.location-info-card .rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.location-info-card .stars {
    color: #F59E0B;
    letter-spacing: 2px;
}

.location-info-card .rating-badge p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.location-info-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.loc-text {
    font-size: 0.98rem;
    margin-bottom: 12px;
    color: var(--text);
}

.mt-30 { 
    margin-top: 30px; 
}

.map-wrapper {
    width: 100%;
    min-height: 380px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-silver);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.btn-gold-outline {
    display: inline-block;
    padding: 12px 26px;
    border: 1.5px solid var(--accent-gold);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-gold-outline:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

@media (max-width: 992px) {
    .location-grid-premium {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .map-wrapper {
        min-height: 300px;
    }
}

/* =========================================
   8. BLOG SECTION
   ========================================= */
.blog-section {
    background: var(--bg-light);
    padding: 85px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-silver);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(197, 168, 128, 0.15);
}

.blog-card .category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.35;
}

.blog-card .read-more {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.blog-card .read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   9. FOOTER (DEEP FOREST & WARM GOLD)
   ========================================= */
.site-footer {
    background: #111B15; /* Nuansa malam hutan tropis */
    color: #DDE2DF;
    padding: 85px 0 35px;
    font-size: 0.92rem;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 50px;
}

.logo-f {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-branding p {
    color: #A3AEA7;
    line-height: 1.8;
    max-width: 320px;
}

.footer-column h4 {
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 14px;
    color: #A3AEA7;
}

.footer-list a {
    color: #A3AEA7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    color: #718076;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-branding p {
        margin: 0 auto;
    }
}

/* =========================================
   10. WHATSAPP FLOATING BUTTON
   ========================================= */
.wa-float-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-main-card {
    background: #25D366;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.wa-icon-box {
    width: 45px;
    height: 45px;
    background: white;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wa-icon-box svg {
    width: 24px;
    height: 24px;
}

.wa-text-modern {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wa-badge {
    position: absolute;
    top: -5px;
    left: 15px;
    background: #ff4757;
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50px;
    z-index: -1;
    animation: wa-ripple 2s infinite;
}

@keyframes wa-ripple {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.wa-float-modern:hover {
    transform: scale(1.05) translateY(-4px);
}

.wa-float-modern:hover .wa-main-card {
    background: #20ba5a;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .wa-text-modern { display: none; }
    .wa-main-card { padding: 8px; }
    .wa-icon-box { margin-left: 0; }
    .wa-badge { left: 0; right: 0; text-align: center; }
}