/* ================= RESET & GLOBAL THEME ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #1f2d3d;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #c1121f, #780000);
    padding: 14px 28px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e63a47, #9a0e0e);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(193, 18, 31, 0.35);
}
.btn-outline {
    border: 1px solid rgba(120, 0, 0, 0.3);
    padding: 14px 28px;
    border-radius: 30px;
    color: #780000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline:hover { background: #780000; color: white; }

.mobile-menu {
    height: 100vh;
}

/* HERO */
.package-hero {
    padding-top: 160px;
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: visible;
}
.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('/images/taj.jpg') center/cover no-repeat;
    filter: brightness(0.85);
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent);
    z-index: 2;
}
.hero-colored-curve {
    position: absolute;
    bottom: 0; left: 0; width: 100%; z-index: 2; line-height: 0;
}
.hero-curve {
    position: absolute;
    bottom: -2px; left: 0; width: 100%; z-index: 3; line-height: 0;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    padding: 0 20px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 7vw, 78px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: clamp(20px, 2.8vw, 26px);
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Improved Hero Stat Chips */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.stat-chip {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.stat-chip:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-3px);
}


.gallery-container {
    max-width: 1300px;
    margin: 0 auto;
}
.gallery-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}
.gallery-card:hover {
    transform: scale(1.04);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    padding: 20px 24px 18px;
}
.gallery-card .overlay h4 {
    font-size: 18px;
    font-weight: 600;
}
.gallery-card .overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* Main Content Layout */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    position: relative;
}
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* LEFT COLUMN */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Overview / Description (exactly like Image 2) */
.overview-section {
    background: #fdf0d5;
    margin-top: 50px;
    padding: 40px 50px;
    border-radius: 28px;
}

.overview-section h2{
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: #003049;
}

.overview-section p {
    font-size: 17.5px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 40px;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}
.stat-item i {
    font-size: 28px;
    color: #c1121f;
}

/* Features / What's Included */
.features-section {
    padding: 0 20px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(193,18,31,0.12);
}
.feature-card i {
    font-size: 32px;
    color: #780000;
    margin-bottom: 16px;
}
.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

/* Detailed Itinerary (exactly like Image 4) */
.itinerary-section {
    padding: 0 20px;
}
.itinerary-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 40px;
    color: #003049;
}
.itinerary-day {
    margin-bottom: 50px;
    position: relative;
    padding-left: 60px;
}
.itinerary-day::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: -50px;
    width: 3px;
    background: #f5d0a0;
}
.itinerary-day:last-child::before { bottom: 0; }
.day-pill {
    position: absolute;
    left: 0;
    top: 4px;
    background: #c1121f;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(193,18,31,0.3);
}
.itinerary-day h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 12px;
}
.itinerary-day p {
    margin-bottom: 18px;
    color: #444;
}
.itinerary-day ul {
    list-style: none;
}
.itinerary-day li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
}
.itinerary-day li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c1121f;
    font-size: 18px;
}
.overnight-note {
    margin-top: 20px;
    padding: 14px 24px;
    background: #fdf0d5;
    border-radius: 12px;
    font-weight: 600;
    color: #780000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* RIGHT STICKY COLUMN (Image 3 style) */
.sticky-sidebar {
    position: sticky;
    margin-top: 40px;
    top: 120px;
    height: fit-content;
}
.help-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    text-align: center;
}
.help-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
}
.help-card p {
    color: #666;
    margin-bottom: 28px;
}
.help-card .btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 18px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.help-card .btn-primary {
    background: linear-gradient(135deg, #c1121f , #780000);
}
.help-card .btn-secondary {
    background: #f5f5f5;
    color: #333;
}

/* Inclusions / Exclusions */
        .inc-exc-section {
            padding: 90px 20px;
            background: white;
        }
        .inc-exc-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .inc-card, .exc-card {
            background: #fdf0d5;
            border-radius: 28px;
            padding: 40px;
        }
        .inc-card h3, .exc-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: #003049;
            margin-bottom: 25px;
        }
        .inc-card ul li, .exc-card ul li {
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .inc-card i { color: #2b7a3e; }
        .exc-card i { color: #c1121f; }

        /* CTA */
        .final-cta {
            padding: 100px 20px;
            background: linear-gradient(135deg, #780000, #4a0000);
            color: white;
            text-align: center;
        }
        .final-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 6vw, 54px);
        }

        
/* Responsive */
@media (max-width: 992px) {
    .hero-stats { gap: 12px; }
    .main-content { grid-template-columns: 1fr; }
    .sticky-sidebar { position: static; margin-top: 40px; }
}

