:root {
    --primary: #2C5E3B;
    --primary-dark: #1E3F27;
    --accent: #E07A5F;
    --bg-light: #F9FBF7;
    --card-bg: #FFFFFF;
    --text-main: #2D3748;
    --text-muted: #718096;
    --border-color: #E2E8F0;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 25px -5px rgba(44, 94, 59, 0.08), 0 8px 10px -6px rgba(44, 94, 59, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(249, 251, 247, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a i, .mobile-link i, .btn i {
    margin-right: 6px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(44, 94, 59, 0.2);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.25);
}

.btn-accent:hover {
    background-color: #c9684e;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
}

.mobile-link:hover {
    color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    padding: 9rem 1.5rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* --- PACKAGES SECTION --- */
.packages {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.price-tag span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.features-list {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* --- WHY US SECTION --- */
.features {
    background-color: #F0F4EC;
    padding: 5rem 1.5rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: white;
    padding: 2.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.feature-box h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author h5 {
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    color: #ECC94B;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* --- FAQ SECTION --- */
.faq {
    background-color: #F0F4EC;
    padding: 5rem 1.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- LOCATION & MAP SECTION --- */
.visit-section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.visit-block {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-block h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.visit-block p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-info-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.map-container {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-col p {
    color: #A0AEC0;
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #A0AEC0;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #A0AEC0;
    font-size: 0.85rem;
}

/* --- RESPONSIVE DESIGN (TABLET & MOBILE) --- */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.85rem 1.25rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 6.5rem;
        padding-bottom: 3.5rem;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.15rem;
    }

    .hero-image img {
        height: 280px;
    }

    .visit-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}
/* --- MODERN FLOATING LANGUAGE SWITCHER --- */
.lang-floating-container {
    position: fixed;
    bottom: 25px;
    left: 25px; /* Ditaruh di kiri agar tidak bertabrakan dengan tombol WA kanan */
    z-index: 9999;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Floating Pill Button */
.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.lang-toggle-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -5px rgba(0, 0, 0, 0.15);
}

.lang-toggle-btn i.fa-globe {
    font-size: 1rem;
    color: var(--primary);
}

.toggle-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.lang-toggle-btn.active .toggle-arrow {
    transform: rotate(180deg);
}

/* Modern Card Dropdown */
.lang-dropdown {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    width: 210px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-dropdown-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 8px 12px 6px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border: none;
    background: none;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-option span {
    font-size: 1.1rem;
}

.lang-option:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.lang-option.active {
    background-color: #f0fdf4;
    color: var(--primary);
    font-weight: 700;
}

/* Bersihkan elemen default dan banner Google */
.skiptranslate,
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Penyesuaian untuk layar HP */
@media (max-width: 768px) {
    .lang-floating-container {
        bottom: 18px;
        left: 16px;
    }

    .lang-toggle-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}