@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================
   DESIGN TOKENS
   ============================ */
:root {
    --gold: #c9a24e;
    --gold-light: #e2c67e;
    --gold-dark: #a6832e;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --dark-surface: #2a2a2a;
    --white: #ffffff;
    --white-off: #f5f5f0;
    --text: #444444;
    --text-muted: #888888;
    --border-light: rgba(255,255,255,0.08);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius: 12px;
    --shadow: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-lg: 0 30px 80px rgba(0,0,0,0.12);
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--dark); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ============================
   PRELOADER
   ============================ */
#preloader {
    position: fixed; inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.spinner {
    width: 40px; height: 40px;
    border: 2px solid rgba(201,162,78,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.preloader-text {
    display: block;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 8px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 6%;
    z-index: 1000;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(17,17,17,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 6%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 6px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
    background: var(--gold);
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,162,78,0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 5px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
}

.hero-content { max-width: 700px; position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 50px;
}

.hero-badge::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 36px; height: 1px;
    background: var(--gold);
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
}

.text-gold { color: var(--gold); }

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    cursor: pointer; border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201,162,78,0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================
   SECTION COMMON
   ============================ */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 36px; height: 1px;
    background: var(--gold);
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    padding: 120px 8%;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.about-features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.feature-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--dark);
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-img-1 {
    width: 65%; height: 85%;
    top: 0; left: 0;
    z-index: 1;
}

.about-img-2 {
    width: 55%; height: 60%;
    bottom: 0; right: 0;
    z-index: 2;
    border: 5px solid var(--white);
}

/* ============================
   PACKAGES SECTION
   ============================ */
.pkg-section {
    padding: 120px 6%;
    background: var(--white);
}

.pkg-section-alt {
    background: var(--white-off);
}

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

.pkg-header .section-label {
    padding-left: 0;
}
.pkg-header .section-label::before {
    display: none;
}

.pkg-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.pkg-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(0,0,0,0.04);
}

.pkg-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.pkg-card-img {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.pkg-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}

.pkg-card-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.pkg-card-body {
    padding: 28px;
}

.pkg-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.pkg-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pkg-price-row {
    margin-bottom: 20px;
}

.pkg-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.pkg-features {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.pkg-feature-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #f8f8f6;
    padding: 5px 12px;
    border-radius: 50px;
}

.pkg-feature-tag i { color: var(--gold); font-size: 0.65rem; }

.more-tag {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
}

.pkg-book-btn {
    display: inline-flex; align-items: center; gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 14px;
    background: var(--dark);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s var(--ease);
}

.pkg-book-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ============================
   ACTIVITIES SECTION
   ============================ */
.activities-section {
    padding: 120px 6%;
    background: var(--dark);
}

.activities-section .section-label { color: var(--gold); }
.activities-section .pkg-title { color: var(--white); }
.activities-section .pkg-subtitle { color: rgba(255,255,255,0.5); }

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.activity-card {
    background: var(--dark-3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.activity-card:hover {
    transform: translateY(-8px);
    background: var(--dark-surface);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(201,162,78,0.1);
}

.activity-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: rgba(201,162,78,0.1);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}

.activity-card:hover .activity-icon {
    background: var(--gold);
    color: var(--dark);
}

.activity-card h3 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================
   EXPERIENCE SECTION
   ============================ */
.experience-section {
    padding: 100px 6%;
    background: var(--white);
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.exp-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.exp-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.exp-card:hover .exp-img {
    transform: scale(1.1);
}

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.4s var(--ease);
}

.exp-card:hover .exp-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.15) 100%);
}

.exp-overlay h3 {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease);
}

.exp-card:hover .exp-overlay h3 {
    transform: translateY(0);
}

.exp-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s var(--ease) 0.1s;
}

.exp-card:hover .exp-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
    position: relative;
    padding: 100px 6%;
    text-align: center;
    overflow: hidden;
}

.cta-bg-img {
    position: absolute; inset: 0;
    background: url('../images/DJI_20260527172251_0169_D.JPG') center/cover no-repeat;
    z-index: -2;
}

.cta-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: -1;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s var(--ease);
}

.cta-btn-primary {
    background: var(--gold);
    color: var(--dark);
}
.cta-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201,162,78,0.4);
}

.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* ============================
   FLOATING ACTIONS (Desktop)
   ============================ */
.floating-actions {
    position: fixed; bottom: 30px; right: 30px;
    display: flex; flex-direction: column; gap: 14px;
    z-index: 1000;
}

.fab {
    width: 52px; height: 52px;
    min-width: 52px; min-height: 52px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 22px;
    transition: all 0.35s var(--ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.fab i {
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

/* WhatsApp Button */
.fab-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}
.fab-wa:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

/* Call Button */
.fab-call {
    background: var(--dark);
    color: var(--gold);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.fab-call:hover {
    transform: scale(1.12);
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 6px 22px rgba(201,162,78,0.5);
}

/* Pulse animation on WhatsApp icon */
.fab-wa::before {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: fabPulse 2s ease-out infinite;
}

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--dark-2);
    color: rgba(255,255,255,0.6);
}

.footer-top {
    padding: 80px 6% 60px;
    border-bottom: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.6rem;
    letter-spacing: 6px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.site-footer h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    width: 16px; text-align: center;
}

.social-icons {
    display: flex; gap: 12px;
}

.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; justify-content: center; align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: all 0.3s var(--ease);
}
.social-icons a i { line-height: 1; display: flex; }

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.footer-bottom {
    padding: 24px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================
   MOBILE BOTTOM BAR
   ============================ */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    z-index: 1001;
    height: 60px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    flex-direction: row;
    align-items: center;
}

.mob-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    height: 100%;
}

/* The icon wrapper — fixed size box that centers any icon */
.mob-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-icon i {
    font-size: 20px;
    line-height: 28px;
    width: 28px;
    text-align: center;
    display: block;
}

.mob-item > span {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
    line-height: 1;
}

.mob-item:active { color: #c9a24e; }
.mob-call { color: #a6832e; }
.mob-wa { color: #25d366; }
.mob-wa .mob-icon i { font-size: 22px; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 350px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed; top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(17,17,17,0.98);
        flex-direction: column;
        justify-content: center; align-items: center;
        gap: 30px;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.2rem; letter-spacing: 4px; }

    .nav-cta { display: none; }

    .hamburger { display: flex; z-index: 1001; }

    .hero { padding: 0 6%; }
    .hero-content h1 { font-size: 2.8rem; }

    .about-section { padding: 80px 6%; }
    .about-text h2 { font-size: 2rem; }
    .about-stats { flex-wrap: wrap; gap: 20px; }
    .about-images { height: 300px; }

    .pkg-section { padding: 80px 5%; }
    .pkg-title { font-size: 2rem; }
    .pkg-grid { grid-template-columns: 1fr; }

    .activities-section { padding: 80px 5%; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }

    .experience-section { padding: 80px 5%; }
    .exp-grid { grid-template-columns: 1fr; }
    .exp-card { height: 220px; }

    .desktop-only { display: none !important; }
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 70px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cta-content h2 { font-size: 1.8rem; }
    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .activities-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .activity-card { padding: 24px 16px; }
}

/* ============================
   INNER PAGE STYLES
   ============================ */

.nav-links a.active { color: var(--gold) !important; }
.nav-links a.active::after { width: 100% !important; }

/* Page Hero Banner */
.page-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 70px;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.65));
}
.page-hero-content { position: relative; z-index: 2; color: #fff; }
.page-hero-content .section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201,162,78,0.4);
    padding: 5px 16px;
    border-radius: 50px;
}
.page-hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb { background: var(--white-off); padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--gold-dark); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* Package Detail Grid */
.pkg-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.pkg-detail-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.pkg-detail-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.pkg-detail-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.pkg-detail-badge {
    position: absolute; top: 14px; right: 14px;
    background: rgba(0,0,0,0.65); color: #fff;
    padding: 5px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 600; backdrop-filter: blur(4px);
}
.pkg-detail-body { padding: 24px; }
.pkg-detail-body h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--dark); }
.pkg-detail-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.pkg-detail-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.pkg-includes-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; }
.pkg-includes-list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pkg-includes-list li { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text); background: var(--white-off); padding: 4px 10px; border-radius: 50px; }
.pkg-includes-list li i { color: var(--gold); font-size: 10px; }
.pkg-book-btn-full {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px; background: var(--dark); color: #fff;
    border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease;
}
.pkg-book-btn-full:hover { background: var(--gold); transform: translateY(-1px); }

/* Contact Page */
.contact-section { padding: 70px 24px; max-width: 1200px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 2rem; margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon i { color: #fff; font-size: 18px; }
.contact-item-text h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { color: var(--text-muted); font-size: 14px; text-decoration: none; }
.contact-item-text a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 24px; }
.contact-social a {
    width: 42px; height: 42px; background: var(--white-off);
    border: 1px solid rgba(0,0,0,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text); font-size: 16px; transition: all 0.3s ease;
}
.contact-social a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.contact-map iframe { width: 100%; height: 480px; border: none; display: block; }
.contact-cta-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.contact-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.contact-btn-primary { background: var(--dark); color: #fff; }
.contact-btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.contact-btn-wa { background: #25D366; color: #fff; }
.contact-btn-wa:hover { background: #1ebe57; transform: translateY(-2px); }

/* About page */
.about-page-section { padding: 70px 24px; max-width: 1200px; margin: 0 auto; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 70px; }
.about-page-imgs { position: relative; height: 500px; }
.about-page-img1 { position: absolute; top: 0; left: 0; width: 72%; height: 80%; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.about-page-img2 { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: 0 30px 80px rgba(0,0,0,0.12); border: 4px solid #fff; }
.about-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 60px; }
.about-feature-card { background: var(--white-off); border-radius: var(--radius); padding: 28px; text-align: center; border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s ease; }
.about-feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-color: rgba(201,162,78,0.3); }
.about-feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.about-feature-icon i { color: #fff; font-size: 22px; }
.about-feature-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.about-feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Adventures page */
.adventures-section { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.section-divider { text-align: center; padding: 20px 0 50px; }
.section-divider h2 { font-size: 2rem; margin-bottom: 10px; }
.section-divider p { color: var(--text-muted); }

@media (max-width: 768px) {
    .page-hero { height: 280px; padding-top: 60px; }
    .page-hero-content h1 { font-size: 2rem; }
    .pkg-detail-grid { grid-template-columns: 1fr; padding: 36px 16px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-page-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-page-imgs { height: 300px; }
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

