/* ==========================================================================
   1. COLOR PALETTE & DESIGN TOKENS (Modern Alpine & Eco-Trek Theme)
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary: #1F302B;           /* Deep Forest Green */
    --primary-light: #2D443E;     /* Soft Forest */
    --accent: #E06D3B;            /* Warm Terracotta / Expedition Orange */
    --accent-hover: #C85625;      /* Darker Orange untuk tombol hover */
    --accent-soft: #FDF2EB;       /* Light Orange Tint untuk badge/highlight */
    --success: #2E7D32;           /* Eco Green */

    /* Neutral & Backgrounds */
    --dark-surface: #141B19;      /* Footer & Dark Sections */
    --bg-page: #F8FAF9;           /* Soft Muted Off-White */
    --bg-card: #FFFFFF;           /* Card White */
    --bg-alt: #EEF3F0;            /* Subtle Eco Tint */

    /* Typography Colors */
    --text-main: #232B28;         /* High Contrast Dark Charcoal */
    --text-muted: #5F6B66;        /* Subtle Grey-Green Text */
    --text-light: #8E9A95;        /* Metadata / Border Grey */
    --white: #FFFFFF;

    /* Typography Family */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Elevation & Curves */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 6px rgba(20, 35, 30, 0.04);
    --shadow-md: 0 8px 24px rgba(20, 35, 30, 0.08);
    --shadow-lg: 0 16px 36px rgba(20, 35, 30, 0.12);
    --shadow-hover: 0 20px 40px rgba(224, 109, 59, 0.18);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--text-main);
    background-color: var(--bg-page);
    width: 100%;
    overflow-x: hidden !important;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.25;
    font-weight: 700;
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. LAYOUT UTILITIES & UI COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #f39c12);
    border-radius: var(--radius-full);
    margin: 15px auto 0;
}

.divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 40px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #f07b46 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(224, 109, 59, 0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 109, 59, 0.45);
    color: var(--white);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    color: var(--white);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   4. TOP BAR & NAVIGATION
   ========================================================================== */
.top-header {
    background-color: var(--dark-surface);
    color: var(--white);
    padding: 9px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
}

.top-header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-socials {
    display: flex;
    gap: 10px;
}

.top-socials a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.top-socials a:hover {
    color: var(--white);
    background-color: var(--accent);
    transform: translateY(-2px);
}

.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 76px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-rinjani {
    color: var(--primary);
}

.brand-nature {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links li a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links a.active {
    color: var(--accent);
    background-color: var(--accent-soft);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--primary);
}

/* ==========================================================================
   5. HERO BANNER
   ========================================================================== */
.hero {
    min-height: 60vh;
    height: auto;
    background: url('../images/hero.jpg') no-repeat center 50% / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 50px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(15, 23, 20, 0.45) 0%, 
        rgba(15, 23, 20, 0.7) 60%, 
        rgba(15, 23, 20, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ==========================================================================
   6. FEATURES / WHY TREK WITH US
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(224, 109, 59, 0.2);
}

.feature-card i {
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 18px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ==========================================================================
   7. TREKKING PACKAGES & CARDS
   ========================================================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.package-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Badge Universal (Paket & Panorama) */
.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    z-index: 2;
}

.card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.25rem;
    color: #1F302B;
    margin-bottom: 4px;
}

.meta {
    color: #E06D3B;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 15px;
}

.card-body ul {
    border-top: 1px dashed #e2e8f0;
    padding-top: 12px;
    margin-bottom: 20px;
}

.card-body ul li {
    font-size: 0.84rem;
    color: #666;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-body ul li i {
    color: #27ae60;
}

.card-body .btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 12px 20px;
}

/* ==========================================================================
   8. FAQ ACCORDION
   ========================================================================== */
.faq-section {
    background-color: var(--bg-alt);
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    margin-bottom: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 18px 22px;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--accent);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--bg-page);
}

.faq-answer p {
    padding: 18px 22px;
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   9. TRIPADVISOR SECTION
   ========================================================================== */
.tripadvisor-section {
    background-color: var(--bg-card);
}

.ta-custom-container {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.ta-rating-box {
    flex: 0 0 190px;
    text-align: center;
    padding: 20px 15px;
    background: var(--bg-page);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.ta-badge-img {
    max-width: 100px;
    margin: 0 auto 10px;
}

.ta-excellent-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.ta-circles {
    color: #00aa6c;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.ta-review-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.ta-rating-box a {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #00aa6c;
    border: 1.5px solid #00aa6c;
    border-radius: var(--radius-full);
}

.ta-rating-box a:hover {
    background: #00aa6c;
    color: var(--white);
}

.ta-slider-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ta-reviews-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px;
    width: 100%;
    scrollbar-width: none;
}

.ta-reviews-slider::-webkit-scrollbar {
    display: none;
}

.ta-review-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 240px;
    background: var(--bg-page);
    border-radius: var(--radius-sm);
    padding: 18px;
    border-left: 4px solid #00aa6c;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ta-user-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ta-avatar {
    width: 32px;
    height: 32px;
    background: #E0F2E9;
    color: #00aa6c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.ta-user-info h4 {
    font-size: 0.85rem;
    margin: 0;
}

.ta-user-info span {
    font-size: 0.7rem;
    color: var(--text-light);
}

.ta-card-icon {
    margin-left: auto;
    color: #00aa6c;
}

.ta-card-stars {
    color: #00aa6c;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.ta-review-card h5 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.ta-review-card p.ta-review-text {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ta-read-link {
    background: none;
    border: none;
    color: #00aa6c;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

/* ==========================================================================
   10. BLOG & PANORAMA CARDS
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.date {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.blog-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.blog-content p {
    flex-grow: 1;
    font-size: 0.88rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 10px;
}

.read-more:hover {
    gap: 10px;
    color: var(--accent-hover);
}

/* ==========================================================================
   11. CONTACT & FORMS
   ========================================================================== */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-item p, .info-item a {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.contact-form {
    flex: 1.4;
    min-width: 280px;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

input, select, textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #DCE3E0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: var(--bg-page);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(224, 109, 59, 0.12);
}

/* ==========================================================================
   12. DETAIL PACKAGE LAYOUT (SUBPAGE)
   ========================================================================== */
.page-header {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    padding: 40px 20px;
}

.overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(20, 27, 25, 0.65);
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.day-badge {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 8px;
}

.specs-list {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.specs-list li {
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.include-exclude-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.include-box, .exclude-box {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.include-box h3 { color: var(--success); font-size: 1.1rem; }
.exclude-box h3 { color: #d9534f; font-size: 1.1rem; }

.booking-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: sticky;
    top: 95px;
}

.price-tag {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
}

.price-tag span { font-size: 0.8rem; display: block; color: var(--text-muted); }
.price-tag strong { font-size: 1.8rem; color: var(--accent); }

/* ==========================================================================
   13. FOOTER (4 KOLOM FLEKSIBEL TERMASUK BRI)
   ========================================================================== */
.footer-dark {
    background-color: var(--dark-surface);
    color: #A6B4AF;
    padding: 70px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.footer-brand-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
}

.contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list li i {
    color: var(--accent);
    margin-top: 4px;
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

/* ==========================================================================
   14. FLOATING ACTION BUTTONS
   ========================================================================== */
.float-wa {
    position: fixed !important;
    bottom: 80px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: #25D366 !important;
    color: var(--white) !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.08);
}

.float-wa i { font-size: 26px !important; }

.back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: var(--primary) !important;
    color: var(--white) !important;
    z-index: 9998 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--accent) !important;
    transform: scale(1.08);
}

/* ==========================================================================
   15. LIGHTBOX MODAL (POPUP GAMBAR GALERI)
   ========================================================================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    background-color: #eee;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background-color: rgba(15, 23, 20, 0.94);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    margin-top: 16px;
    color: #f1f1f1;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    user-select: none;
}

.lightbox-close:hover {
    background: var(--accent);
    transform: scale(1.08);
}

@keyframes zoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   16. RESPONSIVE MOBILE & TABLET
   ========================================================================== */
@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding { 
        padding: 60px 0; 
    }
    
    .hero {
        min-height: 52vh;
        padding: 35px 15px;
    }

    .hero h1 { 
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .hero p { 
        font-size: 0.88rem;
        margin-bottom: 18px;
    }

    .hero-buttons .btn {
        padding: 9px 18px;
        font-size: 0.8rem;
    }

    /* Hamburger Menu Nav Mobile */
    .hamburger { 
        display: block; 
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 75%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease-in-out;
        gap: 20px;
        z-index: 1000;
        padding: 0;
    }

    .nav-links.active { 
        right: 0; 
    }

    .nav-links li a { 
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Packages & Cards di HP */
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 5px;
    }

    .card-image {
        height: 190px;
    }

    .card-body {
        padding: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* TripAdvisor di HP */
    .ta-custom-container {
        flex-direction: row !important;
        gap: 10px !important;
    }

    .ta-rating-box {
        flex: 0 0 115px !important;
        padding: 12px 6px !important;
    }

    .ta-badge-img { max-width: 70px !important; }
    .ta-excellent-title { font-size: 0.85rem !important; }
    .ta-circles { font-size: 0.75rem !important; }
    .ta-review-count { font-size: 0.65rem !important; }

    .ta-review-card {
        flex: 0 0 85% !important;
        min-width: 200px !important;
        padding: 12px !important;
    }

    .include-exclude-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}