:root {
    /* Cinematic Gradient System */
    --hero-overlay: linear-gradient(135deg, rgba(10,61,50,0.82) 0%, rgba(46,26,71,0.88) 100%);
    --packages-bg: linear-gradient(180deg, #2E1A47 0%, #2B2450 35%, #1D3F45 70%, #0A3D32 100%);
    --consultation-bg: linear-gradient(180deg, #0A3D32 0%, #12352F 22%, #2E1A47 100%);
    --footer-bg: linear-gradient(180deg, #161616 0%, #0F0F0F 100%);
    
    /* Warm Sunset/Copper Accents */
    --copper-glow-soft: rgba(168,90,58,0.12);
    --copper-glow-medium: rgba(168,90,58,0.18);
    --copper-accent: #A85A3A;
    --copper-hover: #C46A45;
    
    /* Editorial Base Colors */
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    --text-dark: #1C1C1A;
    --text-muted: #6B6560;
    --text-light: #EAE6E1;
    --border-subtle: rgba(255,255,255,0.12);
    --border-dark: rgba(0,0,0,0.08);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing & Transitions */
    --section-padding: 110px;
    --container-max: 1240px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* Aurora Overlay Utility */
.aurora-layer {
    position: relative;
    overflow: hidden;
}
.aurora-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at top left, var(--copper-glow-soft), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.03), transparent 35%);
    pointer-events: none;
    z-index: 1;
}
.aurora-layer > * { position: relative; z-index: 2; }

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 40px; max-width: 1400px; margin: 0 auto; width: 100%;
    transition: var(--transition); background: transparent;
}
.navbar.scrolled { 
    background: rgba(28,28,26,0.92); 
    backdrop-filter: blur(12px); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.15); 
    padding: 18px 40px; 
}
.nav-logo { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: white; letter-spacing: -0.5px; }
.nav-menu { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-menu a { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.85); }
.nav-cta { background: var(--copper-accent); color: white !important; padding: 11px 26px; border-radius: 30px; font-weight: 500; }
.nav-cta:hover { background: var(--copper-hover); transform: translateY(-2px); box-shadow: 0 8px 20px var(--copper-glow-medium); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: white; transition: var(--transition); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 34px; font-size: 14px; font-weight: 500; border-radius: 32px;
    cursor: pointer; transition: var(--transition); border: none; letter-spacing: 0.6px;
}
.btn-primary { background: var(--copper-accent); color: white; }
.btn-primary:hover { background: var(--copper-hover); transform: translateY(-3px); box-shadow: 0 12px 28px var(--copper-glow-medium); }
.btn-secondary { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-outline { background: transparent; color: var(--text-light); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-full { width: 100%; }

/* Hero */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=1920&auto=format&fit=crop&q=80') center/cover;
    background-attachment: fixed; color: white; text-align: center; padding: 0 24px;
}
.hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-content { position: relative; z-index: 2; max-width: 880px; padding: 0 20px; }
.hero-subtitle { font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; opacity: 0.9; }
.hero h1 { font-size: clamp(42px, 7.5vw, 72px); margin-bottom: 26px; font-weight: 300; letter-spacing: -0.8px; }
.hero-description { font-size: 18px; line-height: 1.85; margin-bottom: 44px; opacity: 0.92; max-width: 680px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; justify-content: center; margin-top: 48px; font-size: 14px; opacity: 0.85; }
.hero-trust i { margin-right: 8px; color: var(--copper-accent); }

/* Section Headers */
.section-header { text-align: center; max-width: 740px; margin: 0 auto 64px; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--copper-accent); margin-bottom: 18px; }
.section-header h2 { font-size: clamp(34px, 4.5vw, 46px); margin-bottom: 18px; color: var(--text-dark); }
.section-header.dark h2 { color: var(--text-light); }
.section-description { font-size: 17px; line-height: 1.8; color: var(--text-muted); }
.section-header.dark .section-description { color: rgba(255,255,255,0.75); }

/* Founder Story */
.founder-story { padding: var(--section-padding) 0; background: var(--bg-light); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.story-image { border-radius: 22px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.story-image img { width: 100%; height: 480px; object-fit: cover; }
.story-content h2 { font-size: 38px; margin-bottom: 24px; }
.story-content p { font-size: 16px; line-height: 1.9; margin-bottom: 18px; color: var(--text-muted); }
.story-signature { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(0,0,0,0.08); }
.story-signature p { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--text-dark); margin: 0; }
.story-signature span { font-size: 14px; color: var(--text-muted); }

/* Destinations */
.destinations { padding: var(--section-padding) 0; background: var(--bg-white); }
.destinations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.destination-card {
    display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-light);
    border-radius: 20px; overflow: hidden; transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04);
}
.destination-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(0,0,0,0.08); }
.destination-image img { width: 100%; height: 100%; object-fit: cover; }
.destination-content { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.destination-content h3 { font-size: 28px; margin-bottom: 8px; }
.destination-tagline { font-size: 13px; font-weight: 600; color: var(--copper-accent); margin-bottom: 14px; letter-spacing: 0.8px; text-transform: uppercase; }
.destination-content p { font-size: 15px; line-height: 1.8; color: var(--text-muted); }

/* Experiences */
.experiences { padding: var(--section-padding) 0; background: var(--bg-light); }
.experiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.experience-card {
    background: var(--bg-white); border-radius: 18px; overflow: hidden; transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.experience-card:hover { transform: translateY(-8px); box-shadow: 0 18px 38px rgba(0,0,0,0.07); }
.experience-card img { width: 100%; height: 210px; object-fit: cover; }
.experience-content { padding: 28px; text-align: center; }
.experience-content h3 { font-size: 22px; margin-bottom: 10px; }
.experience-content p { font-size: 14px; color: var(--text-muted); }

/* Journeys (Packages) */
/* Signature Journeys Section - White Text Override */
.journeys .section-header h2 {
    color: #ffffff;
}

.journeys .section-description {
    color: rgba(255, 255, 255, 0.85);
}

/* Opsional: jika ingin label "Signature Journeys" juga berwarna putih */
.journeys .section-label {
    color: rgba(255, 255, 255, 0.9);
}
.journeys { padding: var(--section-padding) 0; background: var(--packages-bg); color: white; }
.journeys-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px; 
    align-items: stretch; /* Memaksa semua kartu sama tinggi */
}

.journey-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Kartu mengisi penuh grid cell */
    background: rgba(255,255,255,0.04); 
    backdrop-filter: blur(8px);
    border-radius: 20px; 
    overflow: hidden; 
    position: relative;
    border: 1px solid var(--border-subtle); 
    transition: var(--transition);
}
.journey-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); border-color: rgba(168,90,58,0.25); }

.journey-badge {
    position: absolute; top: 18px; right: 18px; background: var(--copper-accent); color: white;
    padding: 7px 18px; border-radius: 24px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; z-index: 2;
}
.journey-card img { width: 100%; height: 230px; object-fit: cover; opacity: 0.9; }

.journey-content { 
    display: flex; 
    flex-direction: column; 
    flex: 1; /* Mengisi sisa ruang kartu */
    padding: 32px; 
}
.journey-content h3 { font-size: 26px; margin-bottom: 8px; color: var(--text-light); }
.journey-meta { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 18px; }

.journey-features { list-style: none; margin-bottom: 24px; }
.journey-features li { padding: 9px 0; border-bottom: 1px solid var(--border-subtle); font-size: 14px; color: rgba(255,255,255,0.85); }
.journey-features li:last-child { border-bottom: none; }
.journey-features li::before { content: '✓'; color: var(--copper-accent); margin-right: 10px; font-weight: bold; }

/* KUNCI PERBAIKAN: Tombol selalu di bawah */
.journey-content .btn { margin-top: auto; }

/* Testimonials */
.testimonials { padding: var(--section-padding) 0; background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card {
    background: var(--bg-white); padding: 36px; border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-stars { margin-bottom: 18px; color: var(--copper-accent); }
.testimonial-stars i { margin-right: 3px; }
.testimonial-text { font-size: 15px; line-height: 1.85; margin-bottom: 22px; font-style: italic; color: var(--text-muted); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(168,90,58,0.15); }
.author-name { font-weight: 600; font-size: 15px; margin-bottom: 3px; color: var(--text-dark); }
.author-trip { font-size: 13px; color: var(--text-muted); }

/* Trust Indicators */
.trust-section { padding: 64px 0; background: #111111; border-top: 1px solid rgba(255,255,255,0.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.trust-item { padding: 24px; }
.trust-number { font-family: var(--font-serif); font-size: 52px; font-weight: 400; color: var(--copper-accent); line-height: 1; margin-bottom: 10px; }
.trust-label { font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

/* Consultation */
.consultation { padding: var(--section-padding) 0; background: var(--consultation-bg); color: white; }
.consultation-wrapper { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.consultation-content h2 { font-size: 38px; margin-bottom: 18px; color: var(--text-light); }
.consultation-content > p { font-size: 16px; line-height: 1.9; margin-bottom: 32px; color: rgba(255,255,255,0.8); }
.consultation-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-bottom: 36px; }
.benefit { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-light); }
.benefit i { color: var(--copper-accent); font-size: 16px; }
.consultation-contact { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.consultation-contact p { margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,0.7); }
/* Consultation Contact Links */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--text-light);
    transition: var(--transition);
    text-decoration: none;
}
.contact-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--copper-accent);
    transform: translateX(4px);
}
.contact-btn i {
    color: var(--copper-accent);
    font-size: 18px;
    width: 20px;
    text-align: center;
}
.contact-btn span {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.consultation-form { background: rgba(255,255,255,0.04); backdrop-filter: blur(10px); padding: 36px; border-radius: 22px; border: 1px solid rgba(255,255,255,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group.full-width { margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); }
.form-group input, .form-group select, .form-group textarea {
    padding: 14px 16px; border: 1px solid rgba(255,255,255,0.15); border-radius: 12px;
    font-family: var(--font-sans); font-size: 14px; background: rgba(0,0,0,0.2); color: white; transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--copper-accent); background: rgba(0,0,0,0.3); box-shadow: 0 0 0 4px var(--copper-glow-medium);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 14px; }

/* Footer */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.6); padding: 72px 0 36px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 44px; flex-wrap: wrap; gap: 28px; }
.footer-logo { font-family: var(--font-serif); font-size: 28px; color: white; font-weight: 500; }
.footer-nav { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; transition: var(--transition); }
.footer-nav a:hover { color: var(--copper-accent); }
.footer-contact { display: flex; align-items: center; gap: 36px; margin-bottom: 36px; flex-wrap: wrap; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--copper-accent); }
.footer-contact i { color: var(--copper-accent); margin-right: 8px; }
.footer-socials { margin-left: auto; display: flex; gap: 18px; }
.footer-socials a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; transition: var(--transition); color: rgba(255,255,255,0.7); }
.footer-socials a:hover { background: var(--copper-accent); border-color: var(--copper-accent); color: white; transform: translateY(-3px); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }

/* Responsive */
@media (max-width: 1024px) {
    .story-grid, .consultation-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .destinations-grid, .experiences-grid, .journeys-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 85%; height: 100vh;
        background: rgba(12,12,11,0.98); backdrop-filter: blur(15px);
        flex-direction: column; justify-content: center; padding: 0 40px;
        transition: var(--transition);
    }
    .nav-menu.active { right: 0; }
    .nav-menu a { color: white; font-size: 18px; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    
    .destinations-grid, .experiences-grid, .journeys-grid, .testimonials-grid, .trust-grid { grid-template-columns: 1fr; }
    .destination-card { grid-template-columns: 1fr; }
    .destination-image img { height: 280px; }
    .form-row { grid-template-columns: 1fr; }
    .consultation-benefits { grid-template-columns: 1fr; }
    .footer-top, .footer-contact { flex-direction: column; align-items: center; text-align: center; }
    .footer-socials { margin: 24px auto 0; }
}