/* =============================================
   TREAT YOUR TRIP — Light Travel Design System
   Theme: Bright, Airy, Modern Travel
   ============================================= */

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

:root {
    /* Core Colors */
    --bg:           #ffffff;
    --bg-soft:      #f8f9ff;
    --bg-card:      #ffffff;
    --surface:      #f0f4ff;
    --border:       #e8edf5;

    /* Brand */
    --brand:        #1a73e8;
    --brand-dark:   #1558b0;
    --brand-light:  #e8f0fe;
    --accent:       #ff6b35;
    --accent-light: #fff0eb;

    /* Text */
    --text-h:       #0d1b2a;
    --text-body:    #3d4d5c;
    --text-muted:   #7a8fa6;
    --text-white:   #ffffff;

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(13,27,42,0.07);
    --shadow-md:    0 8px 24px rgba(13,27,42,0.10);
    --shadow-lg:    0 20px 50px rgba(13,27,42,0.13);
    --shadow-brand: 0 8px 24px rgba(26,115,232,0.25);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    /* Radius */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
}

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

body {
    background: var(--bg);
    color: var(--text-body);
    font-family: var(--font-sans);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
    font-family: var(--font-serif);
    color: var(--text-h);
    line-height: 1.2;
}
h1 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; }
p  { color: var(--text-body); }
a  { text-decoration: none; }
img { display: block; }

/* Scrollbar */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 10px; }
::selection { background: var(--brand); color:#fff; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes float {
    0%,100% { transform:translateY(0); }
    50%      { transform:translateY(-8px); }
}
@keyframes pulse-wa {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes shimmer {
    from { background-position: -600px 0; }
    to   { background-position: 600px 0; }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-d1 { animation-delay:0.1s; }
.fade-up-d2 { animation-delay:0.22s; }
.fade-up-d3 { animation-delay:0.36s; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    text-decoration: none;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26,115,232,0.35);
}
.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,107,53,0.25);
}
.btn-accent:hover {
    background: #e05a29;
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}
.btn-ghost:hover {
    background: var(--brand);
    color: #fff;
}
.btn-white {
    background: #fff;
    color: var(--brand);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* =============================================
   HEADER
   ============================================= */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 10px 0; /* Added back a little padding for breathing room */
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 180px; /* Large desktop logo */
    width: auto;
    display: block;
    transition: height 0.3s ease;
}
header.scrolled .logo-img {
    height: 120px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    padding-top: 160px; /* Increased to accommodate larger header */
    min-height: auto;
    background:
        linear-gradient(135deg, rgba(26,115,232,0.04) 0%, rgba(255,255,255,0) 60%),
        var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Decorative circles */
.hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(26,115,232,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0 50px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.hero-text h1 {
    margin-bottom: 20px;
}
.hero-text h1 em {
    font-style: italic;
    color: var(--brand);
}
.hero-text p {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; }

/* Hero Visual — Trip Collage */
.hero-visual { position: relative; }

.trip-collage {
    position: relative;
    height: 480px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 15px;
    text-decoration: none; /* Ensure no link underlines */
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.trip-collage:hover {
    transform: translateY(-5px);
}
.collage-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
}
.collage-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.collage-item:hover img { transform: scale(1.05); }

.collage-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 14px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.collage-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
}
.collage-price {
    color: #ffd700;
    font-weight: 800;
    font-size: 0.78rem;
    white-space: nowrap;
}

.collage-badge {
    margin-top: 24px;
    background: #fff;
    border-radius: var(--r-md);
    padding: 24px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--border);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-h);
    margin-bottom: 4px;
}

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


/* Stats row */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.stat-item { }
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-eyebrow {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 1rem; }

/* =============================================
   WHY US
   ============================================= */
.why-us {
    padding: 100px 0;
    background: var(--bg-soft);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}
.why-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.why-card:hover .why-icon {
    background: var(--brand);
    color: #fff;
}
.why-card h4 { color: var(--text-h); margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   PACKAGES
   ============================================= */
.packages { padding: 100px 0; background: var(--bg); }

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.package-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}
.package-img-wrapper { position: relative; overflow: hidden; height: 220px; }
.package-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover .package-img { transform: scale(1.06); }

.pkg-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.package-content {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.package-title { font-size: 1.25rem; color: var(--text-h); margin-bottom: 8px; }
.package-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}
.package-duration i { color: var(--brand); }

.features-list { list-style: none; margin-bottom: 20px; }
.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
}
.features-list li:last-child { border-bottom: none; }
.features-list li i.fa-check { color: #22c55e; font-size: 0.75rem; }
.features-list li i.fa-xmark  { color: #ef4444; font-size: 0.75rem; }

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.package-price-block small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.package-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand);
}

/* =============================================
   ITINERARY HERO
   ============================================= */
.itinerary-hero {
    height: 58vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 70px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: 150px; /* Increased to match new header height */
}
.itinerary-hero::before {
    content:'';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.8) 100%);
}
.itinerary-hero .container { position:relative; z-index:2; }
.itinerary-hero h1 { color:#fff; margin-bottom: 16px; }

.hero-eyebrow-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 14px;
    display: block;
    width: fit-content;
}

/* Info Pills */
.info-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
}
.pill i { color: #ffd700; }

/* =============================================
   ITINERARY PAGE BODY
   ============================================= */
.itinerary-wrapper { padding: 70px 0 100px; background: var(--bg-soft); }

.itinerary-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 36px;
}

/* Main panel */
.itinerary-main {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.section-block { margin-bottom: 52px; }
.section-block:last-child { margin-bottom: 0; }

.section-block h3 {
    font-size: 1.35rem;
    color: var(--text-h);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}
.section-block h3 i { color: var(--brand); font-size: 1.1rem; }

/* Journey Timeline */
.journey-path {
    border-left: 2px solid var(--border);
    margin-left: 8px;
    padding-left: 30px;
}
.journey-step {
    position: relative;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: var(--bg-soft);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.journey-step:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
    background: var(--brand-light);
}
.journey-step::before {
    content: '';
    position: absolute;
    left: -39px; top: 22px;
    width: 14px; height: 14px;
    background: var(--brand);
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    box-shadow: 0 0 0 3px var(--brand-light);
}
.journey-step h4 {
    color: var(--brand);
    margin-bottom: 6px;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}
.journey-step p { font-size: 0.88rem; color: var(--text-body); }

/* =============================================
   SIDEBAR
   ============================================= */
.itinerary-sidebar { position: sticky; top: 100px; height: fit-content; }

.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.sidebar-header {
    background: linear-gradient(135deg, var(--brand), #0d47a1);
    padding: 28px;
    text-align: center;
    color: #fff;
}
.sidebar-header .starting-from {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 4px;
}
.sidebar-header .sidebar-price {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
}
.sidebar-header .sidebar-price sup { font-size: 1.2rem; }
.sidebar-header .sidebar-price small { font-size: 0.9rem; font-weight: 400; opacity: 0.7; }

.sidebar-body { padding: 24px 28px; }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}
.price-row:last-of-type { border-bottom: none; margin-bottom: 8px; }
.price-label { font-size: 0.88rem; color: var(--text-body); font-weight: 500; }
.price-value { font-size: 1.05rem; font-weight: 800; color: var(--brand); }

.popular-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 6px;
    border: 1px solid rgba(255,107,53,0.25);
}

.sidebar-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25d366, #1aad54);
    color: #fff;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
    margin-bottom: 12px;
}
.btn-whatsapp i { font-size: 1.2rem; }
.btn-whatsapp:hover { transform:translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--text-h);
    color: rgba(255,255,255,0.65);
    padding: 48px 0 30px;
    text-align: center;
}
footer .logo { color: #fff; display:block; margin-bottom: 10px; }
footer .logo span { color: var(--accent); }
footer p { font-size: 0.85rem; }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    background: #25d366;
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    animation: pulse-wa 2.5s ease-in-out infinite;
    transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* =============================================
   RESPONSIVE
   ============================================= */
.header-actions { display: flex; gap: 10px; align-items: center; }

@media (max-width: 1100px) {
    .itinerary-container { grid-template-columns: 1fr; }
    .itinerary-sidebar   { position: static; }
}

@media (max-width: 900px) {
    .hero-inner    { grid-template-columns: 1fr; text-align: center; }
    .hero-text p   { margin-left: auto; margin-right: auto; max-width: 500px; line-height: 1.6; }
    .hero-cta      { justify-content: center; margin-top: 32px; }
    .hero-visual   { margin-top: 40px; }
    .trip-collage  { height: 300px; max-width: 500px; margin: 0 auto; }
    .why-grid      { grid-template-columns: repeat(2, 1fr); }
    .package-grid  { grid-template-columns: repeat(2, 1fr); }
    
    .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: repeat(2, 1fr); }
    
    .logo-img { height: 110px; } 
    header.scrolled .logo-img { height: 80px; }
    .hero { padding-top: 160px; padding-bottom: 80px; }
}

@media (max-width: 650px) {
    .logo-img { height: 100px; }
    header.scrolled .logo-img { height: 75px; }
    .hero { padding-top: 140px; }
    
    .hero-text h1 { font-size: 2.25rem; line-height: 1.2; }
    .hero-badge { font-size: 0.75rem; padding: 6px 16px; }
    
    .header-actions { gap: 10px; }
    .header-actions .btn { 
        padding: 0 !important; 
        width: 48px; 
        height: 48px; 
        display: flex; 
        align-items: center; 
        justify-content: center;
        border-radius: 50% !important;
        box-shadow: var(--shadow-sm);
        overflow: hidden; /* Ensure text doesn't leak */
    }
    .header-actions .btn i { font-size: 1.4rem; margin: 0 !important; }
    .header-actions .btn .btn-text { display: none !important; } /* Force hide text */
    
    .section-head h2 { font-size: 1.75rem; }
    
    .collage-badge { 
        padding: 16px; 
        flex-direction: column; 
        text-align: center; 
        gap: 10px; 
        bottom: -20px;
        left: 5%;
        right: 5%;
        width: 90%;
        transform: none;
    }
    .badge-icon { margin: 0 auto; }
}

@media (max-width: 480px) {
    .logo-img { height: 90px; }
    header.scrolled .logo-img { height: 65px; }
    .hero { padding-top: 130px; }

    .header-actions .btn { width: 44px; height: 44px; }
    .header-actions .btn i { font-size: 1.2rem; }
    
    .hero-text h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .hero-cta .btn { width: 100%; justify-content: center; padding: 16px; }
    
    .package-grid  { grid-template-columns: 1fr; }
    .why-grid      { grid-template-columns: 1fr; }
}
