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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0c0b09;
    color: #e6e4df;
    overflow-x: hidden;
}

/* =========================================
   2. NAVBAR & LOGO STYLING
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background-color: #0c0b09;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Pengunci logo agar tidak tampil raksasa */
.navbar-logo-img {
    height: 38px !important;
    width: auto !important;
    object-fit: contain !important;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: #b3b0a5;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e6e4df;
}

.btn-contact {
    background-color: #dfce9f;
    color: #0c0b09;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.btn-contact:hover {
    background-color: #cbb680;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, #181510 0%, #0c0b09 70%);
}

.hero-container {
    max-width: 780px;
}

.spotlight-badge {
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    background: rgba(212, 175, 55, 0.05);
}

.spotlight-badge span {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #dfce9f;
    font-weight: 600;
}

.hero-section h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: #f7f4ec;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1rem;
    color: #d1cfc7;
    line-height: 1.7;
    margin-bottom: 16px;
}

.hero-subdesc {
    font-size: 0.9rem;
    color: #9c9990;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gold {
    background-color: #dfce9f;
    color: #0c0b09;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-gold:hover {
    background-color: #cbb680;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.04);
    color: #e6e4df;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

/* =========================================
   4. SERVICES & RATE CARDS SECTION
   ========================================= */
.rate-cards-section, .contact-section {
    padding: 80px 6%;
    background-color: #0c0b09;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.curated-badge {
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.05);
}

.curated-badge span {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #dfce9f;
    font-weight: 600;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #f7f4ec;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header p {
    color: #9c9990;
    font-size: 0.95rem;
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.rate-card {
    background: #14120e;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.rate-card:hover,
.rate-card:active {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.1);
}

.card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #dfce9f;
    background: rgba(212, 175, 55, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.rate-card h3 {
    font-size: 1.5rem;
    color: #f7f4ec;
    margin-bottom: 8px;
}

.card-desc {
    color: #9c9990;
    font-size: 0.85rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-list {
    list-style: none;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

.card-list li {
    font-size: 0.85rem;
    color: #d1cfc7;
    margin-bottom: 12px;
    line-height: 1.5;
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-label {
    font-size: 0.75rem;
    color: #9c9990;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.inquire-btn {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #dfce9f;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.inquire-btn:hover {
    background: #dfce9f;
    color: #0c0b09;
}

/* =========================================
   5. CONTACT PAGE STYLES
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #14120e;
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.2rem;
}

.info-card h4 {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #9c9990;
    margin-bottom: 4px;
}

.info-highlight {
    font-size: 1rem;
    color: #f7f4ec;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-sub {
    font-size: 0.8rem;
    color: #7a776f;
}

.spotlight-standard-box {
    background: #14120e;
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 24px;
    border-radius: 10px;
}

.spotlight-standard-box h4 {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: #dfce9f;
    margin-bottom: 14px;
}

.standard-item strong {
    display: block;
    font-size: 0.9rem;
    color: #f7f4ec;
    margin-bottom: 4px;
}

.standard-item p {
    font-size: 0.8rem;
    color: #9c9990;
}

.contact-form-col {
    background: #14120e;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 40px;
}

.form-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.75rem;
}

.badge-sub {
    color: #dfce9f;
    font-weight: 600;
    letter-spacing: 1px;
}

.badge-season {
    color: #9c9990;
}

.contact-form-col h3 {
    font-size: 1.8rem;
    color: #f7f4ec;
    margin-bottom: 10px;
}

.form-desc {
    font-size: 0.85rem;
    color: #9c9990;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.inquiry-form .form-group {
    display: flex;
    flex-direction: column;
}

.inquiry-form .full-width {
    grid-column: span 2;
    margin-bottom: 25px;
}

.inquiry-form label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #9c9990;
    margin-bottom: 8px;
    font-weight: 600;
}

.inquiry-form input, 
.inquiry-form select, 
.inquiry-form textarea {
    background: #0c0b09;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    color: #f7f4ec;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

.inquiry-form input:focus, 
.inquiry-form select:focus, 
.inquiry-form textarea:focus {
    border-color: #dfce9f;
}

.btn-submit {
    width: 100%;
    background-color: #dfce9f;
    color: #0c0b09;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 15px;
}

.btn-submit:hover {
    background-color: #cbb680;
}

.form-footer-note {
    text-align: center;
    font-size: 0.75rem;
    color: #7a776f;
}

/* =========================================
   6. FOOTER STYLES
   ========================================= */
.footer {
    background-color: #0c0b09;
    padding: 80px 6% 40px 6%;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #9c9990;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dfce9f;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #dfce9f;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.nav-col ul {
    list-style: none;
}

.nav-col li {
    margin-bottom: 10px;
}

.nav-col a {
    color: #9c9990;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.75rem;
}

/* =========================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================= */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #dfce9f;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .inquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .inquiry-form .form-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 5%;
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0c0b09;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 1rem;
    }

    .nav-action {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 20px 5%;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
