
/* ==========================================================================
   CSS VARIABLES & BASE STYLES
   ========================================================================== */
:root {
    --primary: #0f4c5c;
    --primary-dark: #093440;
    --secondary: #e76f51;
    --secondary-light: #f4a261;
    --text-main: #2b2d42;
    --text-muted: #6c757d;
    --bg-light: #f6f8f9;
    --bg-newsletter: linear-gradient(135deg, #eef2f5 0%, #ffffff 100%);
    --bg-white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   SCROLL ANIMATIONS (Intersection Observer)
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1.5s ease forwards;
}

.fade-up-load {
    animation: fadeUpLoad 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeUpLoad {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 19px;
    color: var(--text-muted);
}

.payment-terms-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.payment-terms-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.payment-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.payment-box p {
    margin: 8px 0;
    font-size: 15px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 16px auto 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.about-trip {
    padding: 80px 0 40px;
}

.about-trip .container {
    text-align: center;
}

.about-trip h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-trip p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    border: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.35);
}

.btn-primary:hover {
    background: #d65536;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(231, 111, 81, 0.45);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(15, 76, 92, 0.25);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 76, 92, 0.35);
}

.btn-cta {
    background: var(--secondary);
    color: white;
    padding: 22px 50px;
    font-size: 19px;
    box-shadow: 0 8px 30px rgba(231, 111, 81, 0.4);
}

.btn-cta:hover {
    background: #d65536;
    transform: translateY(-4px);
}

.btn-block {
    display: flex;
    width: 100%;
    margin-top: 24px;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
}

.pulse-anim {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(231, 111, 81, 0.6); }
    70%  { box-shadow: 0 0 0 16px rgba(231, 111, 81, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 111, 81, 0); }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.nav-links a {
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-light);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-light);
}

/* ==========================================================================
   HERO BLOCKS
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1539635278303-d4002c07eae3?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 76, 92, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
    padding: 0 24px;
}

.hero h1 {
    font-size: 76px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* INNER PAGE NAVBAR (solid, non-transparent) */
.navbar-inner {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: var(--primary-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.navbar-inner .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-inner .logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.navbar-inner .nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}

.navbar-inner .nav-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
}

.navbar-inner .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-light);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-inner .nav-links a:hover::after,
.navbar-inner .nav-links a.active::after {
    width: 100%;
}

.navbar-inner .nav-links a:hover,
.navbar-inner .nav-links a.active {
    color: var(--secondary-light);
}

/* INTERNAL PAGE HERO */
.page-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(9, 52, 64, 0.9) 0%, rgba(15, 76, 92, 0.75) 100%);
    z-index: 1;
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-top: 40px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about .about-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 70px 80px;
    box-shadow: var(--shadow-md);
    max-width: 820px;
    margin: 0 auto;
    border-top: 6px solid var(--primary);
    text-align: center;
}

.about-icon {
    font-size: 40px;
    color: var(--secondary-light);
    margin-bottom: 24px;
}

.about-content {
    max-width: 680px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.highlight-inline {
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.highlight-inline::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(244, 162, 97, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.highlight-text {
    font-weight: 600 !important;
    font-size: 19px !important;
    background: var(--bg-light);
    padding: 20px 24px;
    border-radius: var(--border-radius-sm);
    color: var(--primary) !important;
    margin-top: 30px !important;
    display: inline-block;
    border: 1px solid rgba(15, 76, 92, 0.1);
}

/* ==========================================================================
   UPCOMING TRIPS SECTION
   ========================================================================== */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.trip-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.trip-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.trip-img img {
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.trip-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.badge-hot {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
}

.badge-warn {
    background: var(--secondary);
    color: white;
}

.badge-danger {
    background: #111;
    color: white;
}

.trip-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trip-header {
    margin-bottom: 16px;
}

.trip-header h3 {
    font-size: 24px;
    color: var(--primary);
}

.trip-details {
    list-style: none;
    margin-bottom: 10px;
    flex-grow: 1;
}

.trip-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15.5px;
}

.trip-details li i {
    color: var(--secondary-light);
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.explore-all-wrap {
    text-align: center;
    margin-top: 60px;
}

/* ==========================================================================
   GALLERY PAGE GRID
   ========================================================================== */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* GALLERY ITEMS */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 76, 92, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(16px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-overlay span {
    transform: translateY(0);
}

/* INSTAGRAM PREVIEW SECTION */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.insta-item {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 76, 92, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.insta-item:hover img {
    transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--primary);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.stars i {
    color: #f4a261;
    font-size: 18px;
    margin-right: 2px;
}

.review-text {
    font-size: 17px;
    color: var(--text-main);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.reviewer-info h4 {
    font-size: 17px;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.newsletter {
    background: var(--bg-newsletter);
}

.newsletter .newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 70px 80px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255,255,255,1);
}

.newsletter-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 280px;
    padding: 16px 24px;
    border: 2px solid #e0e6ea;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 17px;
    color: var(--text-main);
    background: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(15, 76, 92, 0.1);
}

.success-msg {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #06232e 100%);
    color: white;
    padding: 120px 24px;
    text-align: center;
}

.cta-content {
    max-width: 860px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 54px;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    font-weight: 300;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #0b0f15;
    color: #fff;
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer .brand .logo {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.footer .brand p {
    color: #7a8494;
    font-size: 16px;
    max-width: 320px;
    line-height: 1.7;
}

.footer .links p {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1c2431;
    color: #aab0b8;
    transition: all 0.3s ease;
    font-size: 18px;
}

.socials a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    color: #4a5464;
    font-size: 15px;
    border-top: 1px solid #1c2431;
    padding-top: 30px;
}

/* ==========================================================================
   RESPONSIVE (MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 19px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    .page-hero {
        height: 250px;
        min-height: 250px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }
    
    .section-title p {
        font-size: 17px;
    }

    .about .about-card {
        padding: 40px 30px;
    }

    .about-content p {
        font-size: 17px;
    }

    .highlight-text {
        font-size: 17px !important;
        padding: 16px 20px;
    }

    .insta-grid {
        gap: 12px;
    }
    
    .insta-item {
        height: 220px;
    }

    .newsletter .newsletter-card {
        padding: 40px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .form-input {
        width: 100%;
    }
    
    .newsletter-form .btn {
        width: 100%;
        padding: 18px;
    }

    .final-cta h2 {
        font-size: 38px;
    }
    
    .final-cta p {
        font-size: 18px;
    }
    
    .final-cta .btn {
        font-size: 17px;
        padding: 18px 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .insta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .insta-item {
        height: 180px;
    }

    .trips-grid, .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .navbar-inner .nav-links {
        display: none;
    }

    .gallery-item {
        height: 200px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 40px;
    }
}

/* ==========================================================================
   TRIP DETAIL PAGE
   ========================================================================== */

/* Quick Info Bar */
.quick-info-bar {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 24px 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: -50px auto 60px;
    position: relative;
    z-index: 10;
    border-top: 5px solid var(--secondary);
}

.quick-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-info-item span.label {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}

.quick-info-item span.value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

/* Itinerary Section */
.itinerary-container {
    max-width: 800px;
    margin: 0 auto;
}

.day-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.day-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.day-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.day-badge {
    background: var(--secondary-light);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* Inclusions & Exclusions */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.inc-card, .exc-card {
    background: #fff;
    padding: 36px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.inc-card h3, .exc-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inc-card h3 { color: #2a9d8f; }
.exc-card h3 { color: #e76f51; }

.inc-list, .exc-list {
    list-style: none;
}

.inc-list li, .exc-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
}

.inc-list li i { color: #2a9d8f; margin-top: 5px; }
.exc-list li i { color: #e76f51; margin-top: 5px; }

/* Packing List */
.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.packing-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: 17px;
}

.packing-item i {
    color: var(--primary);
    font-size: 20px;
}

/* Pricing Section */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    width: 300px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

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

.price-card.best-price {
    border-color: #2a9d8f;
    transform: scale(1.05);
}

.price-card.best-price:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a9d8f;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-date {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.price-condition {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

@media (max-width: 768px) {
    .quick-info-bar {
        flex-direction: column;
        gap: 20px;
        margin: -30px 20px 40px;
        text-align: center;
    }
    
    .inc-exc-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.best-price {
        transform: scale(1);
    }
    
    .price-card.best-price:hover {
        transform: translateY(-8px);
    }
    
    .sticky-mobile-cta {
        display: block;
    }
    
    body.has-sticky-cta {
        padding-bottom: 80px; /* Space for sticky CTA */
    }
}

/* ==========================================================================
   DATES & PRICING ACCORDION
   ========================================================================== */
.dates-prices {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dates-prices * {
    box-sizing: border-box;
}

.dates-prices > div {
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto 20px auto !important;
}

.dates-prices > div > div {
    width: 100% !important;
}

.dates-prices .date-card,
.dates-prices .trip-date,
.dates-prices .card,
.dates-prices .accordion-item {
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto 20px auto !important;
}

.accordion-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.accordion-header > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.accordion-btn {
    flex-shrink: 0;
}

.accordion-item {
    background: #fff;
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid var(--bg-light);
}

.accordion-date {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.accordion-date i {
    flex-shrink: 0;
}

.accordion-date span {
    margin: 0;
    padding: 0;
    font-weight: 600;
    white-space: nowrap;
}

.accordion-header > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.accordion-status {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-btn {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    background: transparent;
    border: 2px solid var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
}

.accordion-item.active .accordion-btn i {
    transform: rotate(180deg);
}

.accordion-btn i {
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-content {
    padding: 30px;
    background: #fafafa;
}

.pricing-table-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--bg-light);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-table td {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-notes {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 600px) {
    .accordion-header {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }
    .accordion-header > div {
        display: flex;
        justify-content: flex-start;
        width: auto;
        align-items: center;
    }
    .accordion-btn {
        width: auto;
        justify-content: center;
    }
}

/* ==========================================================================
   TABS FOR INCLUSIONS & EXCLUSIONS
   ========================================================================== */
.tabs-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 20px 30px;
    font-size: 18px;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
    background: #fff;
}

.tabcontent {
    display: none;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tabcontent.active {
    display: block;
    opacity: 1;
}

.tab-list {
    list-style: none;
}

.tab-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    color: var(--text-main);
}

.tab-list.inc li i {
    color: #2e7d32;
    margin-top: 5px;
}

.tab-list.exc li i {
    color: #d32f2f;
    margin-top: 5px;
}

/* ==========================================================================
   HIGHLIGHTS GRID
   ========================================================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.highlight-item i {
    color: var(--secondary);
    font-size: 20px;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRICING CARD ROWS (VIETNAM UPGRADE)
   ========================================================================== */
.pricing-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.pricing-card-row.best-value {
    border: 1px solid var(--secondary);
    background: #fffbf9;
}

.pricing-col-date {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
}

.pricing-col-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-best {
    background: #e65100;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   EXPERIENCE IMAGE CARDS
   ========================================================================== */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

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

.experience-card-img-wrapper {
    overflow: hidden;
    height: 220px;
}

.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .experience-img {
    transform: scale(1.08); /* slight zoom on hover */
}

.experience-content {
    padding: 24px;
    text-align: center;
}

.experience-content h4 {
    font-size: 19px;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 700;
}

.experience-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

.menu-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}

.insta-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 30px;
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    color: white;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
}

.insta-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.trust-section {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fb;
}

.about-founders {
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.about-founders h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-founders p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .trust-stats {
        flex-direction: column;
        gap: 8px;
    }
}

.insta-follow {
    text-align: center;
    padding: 50px 20px;
}

.insta-follow h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.insta-follow p {
    color: #666;
    margin-bottom: 15px;
}

.itinerary-card {
    padding: 18px;
}

.itinerary-card button {
    height: 40px;
    border-radius: 20px;
}

.itinerary-card.active {
    background: #f8f9fb;
}

.card,
.trip-card,
.itinerary-card {
    transition: all 0.3s ease;
}

.hero h1,
.hero p,
.page-hero h1,
.page-hero p,
.accordion-date,
.accordion-content,
.itinerary-card,
.itinerary-card * {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.accordion-item {
    transition: box-shadow 0.3s ease, transform 0.25s ease, background-color 0.25s ease;
}

.accordion-item.active {
    background: #f7fafb;
}

.accordion-btn i {
    margin-left: auto;
    line-height: 1;
}

@media (hover: none) {
    .btn:active {
        transform: scale(0.96);
    }

    .trip-card:active,
    .itinerary-card:active,
    .accordion-item:active {
        transform: scale(0.995);
    }
}

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

@media (max-width: 768px) {
    .fade-up {
        transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .hero {
        padding: 80px 20px 60px;
        text-align: center;
    }

    .section {
        padding: 40px 0;
    }

    .trust-section,
    .about-founders,
    .insta-follow {
        padding: 40px 20px;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        color: #fff;
        z-index: 9999;
    }

    .navbar-inner .menu-toggle {
        color: var(--primary);
    }

    .nav-container {
        position: relative;
        z-index: 9999;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: white;
        width: min(250px, calc(100vw - 28px));
        padding: 18px;
        gap: 12px;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        transition: transform 0.26s ease, opacity 0.26s ease, visibility 0.26s ease;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top right;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1002;
        overflow: visible;
        backdrop-filter: blur(2px);
    }

    .navbar-inner .nav-links {
        display: flex;
    }

    .nav-links li,
    .navbar-inner .nav-links li {
        width: 100%;
    }

    .nav-links a,
    .navbar-inner .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 12px;
        border-radius: 8px;
        color: var(--text-main);
        font-size: 14px;
        line-height: 1.4;
    }

    .nav-links a:hover,
    .nav-links a.active,
    .navbar-inner .nav-links a:hover,
    .navbar-inner .nav-links a.active {
        background: var(--bg-light);
        color: var(--primary);
    }

    .nav-links.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu-overlay.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .container {
        padding: 0 15px;
    }

    .trips-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.28;
        overflow-wrap: anywhere;
        word-break: break-word;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 10px;
        overflow-wrap: anywhere;
        word-break: break-word;
        margin-bottom: 0;
    }

    .hero-content {
        max-width: 560px;
        margin: 0 auto;
        padding: 0 12px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .page-hero {
        height: auto;
        min-height: 230px;
        padding: 96px 16px 42px;
    }

    .page-hero h1 {
        font-size: 28px;
        line-height: 1.28;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .page-hero p {
        font-size: 14px;
        line-height: 1.55;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero .cta-buttons {
        margin-top: 10px;
    }

    .trip-badge,
    .day-badge,
    .price-badge {
        font-size: 10px;
        padding: 4px 8px;
        line-height: 1.2;
        top: 10px;
        right: 10px;
    }

    .itinerary-card {
        padding: 14px;
        margin-bottom: 18px;
    }

    .itinerary-card button,
    .itinerary-card .btn {
        width: 100%;
        min-width: 0;
        height: 38px;
        font-size: 14px;
        border-width: 1px;
        justify-content: center;
    }

    .itinerary-card h3,
    .itinerary-card h4 {
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .accordion-item {
        margin-bottom: 18px;
    }

    .accordion-header {
        padding: 18px 16px;
    }

    .accordion-btn {
        border-width: 1px;
        padding: 8px 14px;
        min-height: 38px;
        background: #f3f6f8;
        color: var(--primary);
        box-shadow: inset 0 0 0 1px rgba(15, 76, 92, 0.08);
    }

    .accordion-btn:hover,
    .accordion-btn:active {
        background: #eaf1f4;
    }

    .accordion-btn i {
        font-size: 13px;
        margin-left: 8px;
        margin-right: 0;
    }

    .accordion-body {
        transition: max-height 0.3s ease;
    }

    .accordion-content {
        padding: 20px 16px;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-bar,
    .sticky-mobile-cta {
        height: 48px;
        padding: 6px 8px;
    }

    .sticky-mobile-cta {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 10px;
        border-radius: 12px;
        box-shadow: 0 -2px 14px rgba(0,0,0,0.12);
    }

    .cta-bar button,
    .sticky-mobile-cta .btn {
        font-size: 13px;
        padding: 7px 8px;
        border-radius: 10px;
    }

    .cta-bar button:active,
    .sticky-mobile-cta .btn:active {
        transform: scale(0.96);
    }

    body,
    body.has-sticky-cta {
        padding-bottom: 88px;
    }
}

/* ==========================================================================
   SAFE FIXES: EXTRA BUTTONS & BROKEN IMAGES
   ========================================================================== */

/* Safely hide extra buttons without breaking single-button cards like Bali */
.trip-card .btn-whatsapp,
.trip-card .btn-chat,
.trip-card a.btn:nth-of-type(n+2) {
  display: none !important;
}

/* Ensure all trip-card images behave properly */
.trip-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

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

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.logo-text-only {
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.about-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center; /* vertical centering */
  margin-top: 40px;
  background: #f8f9fb;
  padding: 30px;
  border-radius: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about-left {
  flex: 1;
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-left img {
  width: 85px;
  height: auto;
  margin-bottom: 10px;
}

.about-left h2 {
  margin: 0;
}

.about-left p {
  margin-top: 6px;
  opacity: 0.7;
}

.about-right {
  flex: 2;
  min-width: 300px;
  font-size: 16px;
  line-height: 1.6;
}