/* --- RESET & VARIABLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
:root {
    --primary: #FF8C00; /* Saffron */
    --primary-dark: #e67e00;
    --dark: #222;
    --light: #f4f4f4;
    --white: #fff;
    --gray: #666;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 30px rgba(0,0,0,0.15);
}

/* Prevent Horizontal Scroll */
html, body {
    width: 100%;
    overflow-x: hidden;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

/* --- UTILITIES --- */
.hidden { display: none !important; }

/* --- NAVBAR --- */
.navbar { background: var(--white); padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.logo span { color: var(--primary); }
.nav-links { list-style: none; display: flex; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary); }
.btn-nav { background: var(--primary); color: white !important; padding: 8px 20px; border-radius: 50px; transition: background 0.3s ease; }
.btn-nav:hover { background: var(--primary-dark); }
.btn-nav-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 5px 15px; border-radius: 20px; cursor: pointer; font-size: 0.9rem; transition: all 0.3s ease; }
.btn-nav-outline:hover { background: var(--primary); color: white; }

/* --- HAMBURGER ANIMATION --- */
.hamburger { display: none; cursor: pointer; z-index: 1100; }
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px;
    transition: all 0.3s ease;
}
/* Animation Classes */
.hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.toggle .line2 { opacity: 0; }
.hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

/* --- HERO SLIDER --- */
.hero { 
    height: 90vh; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    margin-top: 60px; 
    overflow: hidden; 
}

.hero-slider { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0; 
}

.slide {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-size: cover; 
    background-position: center;
    opacity: 0; 
    transition: opacity 1.5s ease-in-out;
}

.slide.active { opacity: 1; }

.hero .overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5); 
    z-index: 1; 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    padding: 20px; 
    max-width: 800px; 
}

.hero h1 { font-size: 3rem; margin: 15px 0; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.badge { background: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; }

/* Buttons */
.btn-primary, .btn-secondary { padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 600; display: inline-block; margin: 5px; border: none; cursor: pointer; font-size: 1rem; transition: all 0.4s ease; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,140,0,0.4); }
.btn-secondary { border: 2px solid white; color: white; background: transparent; }
.btn-secondary:hover { background: white; color: var(--dark); transform: translateY(-2px); }

/* --- PAGE HERO --- */
.page-hero { height: 50vh; background-color: #333; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: white; margin-top: 60px; }
.page-hero .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)); }

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 10px; color: var(--dark); }
.subtitle { text-align: center; color: var(--gray); margin-bottom: 50px; }
.trust-bar { background: var(--primary); color: white; padding: 20px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; font-weight: 500; }
.trust-item i { margin-right: 8px; }

/* --- ESTIMATOR WIDGET --- */
.estimator-box { 
    background: white; padding: 30px; border-radius: 12px; 
    box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; 
    text-align: center; border-left: 6px solid #25d366; 
}
.estimator-box h3 { margin-bottom: 5px; color: var(--dark); font-size: 1.8rem; }
.est-subtitle { color: #666; margin-bottom: 25px; font-size: 0.9rem; }
.estimator-form { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; align-items: flex-end; }
.input-wrapper { display: flex; flex-direction: column; align-items: flex-start; flex: 1; min-width: 150px; }
.input-wrapper label { font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; }
.input-wrapper input, .input-wrapper select { padding: 12px; width: 100%; border: 2px solid #ddd; border-radius: 8px; font-size: 1rem; transition: border 0.3s; }
.input-wrapper input:focus, .input-wrapper select:focus { border-color: #25d366; outline: none; }
.result-wrapper { flex-grow: 1; background: #f9f9f9; padding: 15px 25px; border-radius: 8px; text-align: left; border: 1px solid #eee; min-width: 250px; }
.est-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 1rem; }
.total-row { font-weight: 700; color: #25d366; font-size: 1.3rem; border-top: 1px solid #ddd; padding-top: 5px; margin-top: 5px; }

/* --- FILTER BUTTONS --- */
.filter-section { margin-top: 80px; margin-bottom: -40px; text-align: center; }
.filter-btns { display: inline-flex; flex-wrap: wrap; gap: 10px; justify-content: center; background: #fff; padding: 10px; border-radius: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.filter-btn {
    border: none; background: transparent; padding: 8px 20px;
    border-radius: 20px; cursor: pointer; font-weight: 600; color: #666;
    transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; }

/* --- PACKAGE GRID (Standard Grid) --- */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.package-card { 
    background: white; border-radius: 12px; overflow: hidden; 
    box-shadow: var(--shadow); 
    border: 1px solid #eee; display: flex; flex-direction: column;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.pkg-image { height: 200px; position: relative; overflow: hidden; cursor: pointer; }
.pkg-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.package-card:hover img { transform: scale(1.08); }
.pkg-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.pkg-content h3 { margin-bottom: 10px; font-size: 1.3rem; }
.pkg-desc { font-size: 0.9rem; color: #666; margin-bottom: 20px; flex-grow: 1; }
.pkg-includes { display: flex; gap: 15px; font-size: 0.8rem; color: #555; margin-bottom: 20px; border-top: 1px solid #eee; padding-top: 15px; }
.pkg-includes i { color: var(--primary); }
.btn-select { 
    width: 100%; padding: 12px; border: 1px solid var(--primary); 
    background: transparent; color: var(--primary); font-weight: 600; 
    cursor: pointer; border-radius: 8px; transition: all 0.3s ease; 
    text-align: center; text-decoration: none; display: block; 
}
.btn-select:hover { background: var(--primary); color: white; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(255,140,0,0.2); }
.popular-pkg { border: 2px solid var(--primary); position: relative; }
.popular-tag { position: absolute; top: 0; left: 0; background: var(--primary); color: white; padding: 5px 15px; font-size: 0.8rem; z-index: 10; font-weight: bold; border-bottom-right-radius: 10px; }

/* Premium Package Styling */
.premium-pkg { border: 2px solid gold; position: relative; background: linear-gradient(to bottom, #fff, #fffcf0); }
.premium-tag { position: absolute; top: 0; left: 0; background: gold; color: #333; padding: 5px 15px; font-size: 0.8rem; z-index: 10; font-weight: bold; border-bottom-right-radius: 10px; }


/* --- FAQ ACCORDION --- */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { background: white; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); overflow: hidden; }
.accordion-header { 
    padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; 
    background: #fff; font-weight: 600; transition: background 0.3s; 
}
.accordion-header:hover { background: #f9f9f9; }
.accordion-header i { transition: transform 0.3s; color: var(--primary); }
.accordion-header.active i { transform: rotate(180deg); }
.accordion-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; background: #fdfdfd; color: #555; }
.accordion-header.active + .accordion-body { padding: 15px 20px; max-height: 3000px; }

/* --- FLOATING BUTTONS --- */
.floating-btns { 
    position: fixed; bottom: 20px; width: 100%; 
    display: flex; justify-content: center; gap: 15px;
    padding: 0 20px; z-index: 999; pointer-events: none; 
}
.float-btn { 
    pointer-events: auto; text-decoration: none; color: white; 
    padding: 12px 25px; border-radius: 50px; font-weight: 600; 
    display: flex; align-items: center; gap: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s;
    font-size: 0.95rem;
}
.float-btn:hover { transform: translateY(-3px); }
.call-btn { background: #007bff; }
.whatsapp-btn { background: #25d366; }
.book-btn { background: #6f42c1; /* Purple */ }

/* --- FLEET --- */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.car-card { 
    background: white; border-radius: 10px; overflow: hidden; 
    box-shadow: var(--shadow); text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.car-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.car-image { height: 160px; position: relative; background: #eee; cursor: pointer; }
.car-image img { width: 100%; height: 100%; object-fit: cover; }
.car-badge { position: absolute; top: 10px; right: 10px; background: var(--primary); color: white; font-size: 0.75rem; padding: 3px 8px; border-radius: 3px; }
.car-details { padding: 15px; }

/* --- TIMELINE --- */
.timeline-item { 
    display: flex; gap: 20px; background: white; padding: 25px; 
    border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 25px; 
    border-left: 5px solid var(--primary); 
    transition: transform 0.3s ease;
}
.timeline-item:hover { transform: translateX(5px); }
.day-marker { font-weight: 700; color: var(--primary); min-width: 70px; font-size: 1.2rem; }
.detail-list { list-style: none; margin-top: 10px; font-size: 0.95rem; }
.detail-list li { margin-bottom: 5px; display: flex; gap: 10px; }
.detail-list i { color: var(--primary); margin-top: 5px; }

/* --- BOOKING FORM --- */
.booking-wrapper { background: white; max-width: 700px; margin: 0 auto; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); overflow: hidden; }
.form-header { background: var(--dark); color: white; padding: 30px; text-align: center; }
#bookingForm { padding: 30px; }
.row { display: flex; gap: 20px; margin-bottom: 20px; }
.input-group { flex: 1; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
.input-group input, .input-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; background: #f9f9f9; transition: border 0.3s; }
.input-group input:focus, .input-group select:focus { border-color: var(--primary); outline: none; }
.full-width { width: 100%; margin-top: 10px; }

/* --- PACKAGE DETAIL STYLES --- */
.package-layout { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 30px; 
}

.quick-stats { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    margin-bottom: 30px; 
    background: #f9f9f9; 
    padding: 20px; 
    border-radius: 10px; 
}

.stat-box { 
    text-align: center; 
    font-size: 0.9rem; 
    font-weight: 500; 
    display: flex; 
    flex-direction: column; 
    gap: 5px; 
    align-items: center;
}

.inc-exc-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 20px; 
    margin-top: 15px; 
}

.full-width-inclusions {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #25d366;
}

.inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    font-size: 0.95rem;
}

.booking-card { 
    background: white; 
    padding: 25px; 
    border-radius: 10px; 
    box-shadow: var(--shadow); 
    position: sticky; 
    top: 100px; 
}

/* --- NEW STATS SECTION --- */
.stats-section-overlay {
    position: relative;
    background: url('images/pics/mhakal.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.stats-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); 
}

.stats-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-box {
    flex: 1;
    min-width: 200px;
}

.stats-box h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'Times New Roman', serif;
}

.stats-box p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ddd;
}

/* --- GALLERY PAGE STYLES --- */
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
    margin-top: 20px;
}

.gallery-item { 
    overflow: hidden; 
    border-radius: 10px; 
    cursor: pointer; 
    box-shadow: var(--shadow); 
    position: relative; 
    height: 250px; 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.gallery-item:hover img { 
    transform: scale(1.1); 
}

.gallery-caption {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); 
    color: white; 
    padding: 15px 10px;
    font-size: 0.9rem; 
    font-weight: 500;
    text-align: center; 
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption { 
    transform: translateY(0); 
}

/* --- FOOTER --- */
.main-footer {
    background-color: #0a192f;
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.copyright-text {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-section.links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* --- LIGHTBOX --- */
.lightbox { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); justify-content: center; align-items: center; backdrop-filter: blur(5px); }
.lightbox-content { 
    margin: auto; display: block; max-width: 90%; max-height: 90%; border-radius: 5px; 
    animation: fadeScale 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.close-lightbox { position: absolute; top: 20px; right: 35px; color: white; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.close-lightbox:hover { color: var(--primary); transform: rotate(90deg); }

@keyframes fadeScale { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* --- RATE TABLE --- */
.rate-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rate-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.rate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.rate-header {
    background: var(--dark);
    color: white;
    padding: 20px;
    border-bottom: 3px solid var(--primary);
}

.rate-header h3 {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.rate-header span {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 400;
    display: block;
}

.rate-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rate-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 15px 0 5px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.rate-price small {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
}

.rate-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.rate-features {
    list-style: none;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #555;
    text-align: left;
    padding: 0 10px;
}

.rate-features li {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rate-features li:last-child {
    border-bottom: none;
}

.rate-features li i {
    color: #25d366; /* Green checkmark */
    font-size: 0.9rem;
}

/* Sightseeing List Styling */
.places-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.place-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.place-icon {
    width: 50px;
    height: 50px;
    background: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.place-info h4 {
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.place-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* =========================================
   UPDATED: PACKAGE SLIDER STYLES
   ========================================= */

/* Header with buttons */
.section-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
}

.slider-controls {
    display: none; /* Hide standard controls as we use absolute buttons */
}

/* Slider Container - Position Relative for Buttons */
.slider-container {
    width: 100%;
    position: relative; /* Anchor for buttons */
    padding: 0 50px; /* Make space for buttons on sides on desktop */
}

/* Slider Buttons - Absolute Positioning */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Scrollable Track */
.package-slider {
    display: flex;
    gap: 30px; /* Gap between cards */
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px 20px 5px;
    
    /* Snapping */
    scroll-snap-type: x mandatory;
    
    /* Hide Scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.package-slider::-webkit-scrollbar { 
    display: none; 
}

/* Slider Card - EXACTLY 2 VISIBLE ON DESKTOP */
.slider-card {
    flex: 0 0 auto; /* Prevent shrinking/growing */
    
    /* Calculation: (100% width - 30px gap) / 2 */
    width: calc((100% - 30px) / 2);
    
    scroll-snap-align: start; /* Snap to left edge */
    
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 5px;
}

.pkg-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto; /* Push to bottom */
}

.pkg-buttons .btn-select, 
.pkg-buttons .btn-primary {
    flex: 1;
    padding: 10px 5px;
    font-size: 0.9rem;
    margin: 0;
}

/* =========================================
   MOBILE ADJUSTMENTS (UPDATED FOR BIGGER CARDS & TOP BUTTONS)
   ========================================= */
@media (max-width: 768px) {
    
    /* --- GENERAL MOBILE FIXES --- */
    .nav-links { 
        position: fixed; top: 60px; right: -100%; width: 70%; height: 100vh;
        background: white; flex-direction: column; padding: 50px 30px; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: right 0.4s ease;
        justify-content: flex-start; align-items: flex-start;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    .row { flex-direction: column; gap: 15px; }
    
    .hero { height: 55vh; min-height: 400px; } 
    .hero h1 { font-size: 1.8rem; }
    
    .timeline-item { flex-direction: column; }
    .floating-btns { padding: 0 10px; bottom: 10px; gap: 5px; }
    .float-btn { padding: 10px 12px; font-size: 0.8rem; flex: 1; justify-content: center; }
    .package-layout { grid-template-columns: 1fr; }
    .full-on-mobile { min-width: 100%; }
    
    .booking-card { position: static; margin-top: 30px; }
    .quick-stats { grid-template-columns: 1fr 1fr; }
    .inc-exc-grid { grid-template-columns: 1fr; }
    .inclusions-list { grid-template-columns: 1fr; }
    
    .stats-box h2 { font-size: 2.5rem; }
    
    .main-footer { text-align: center; }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); }
    .social-icons { justify-content: center; }

    /* --- STANDARD GRID (Vertical Stack on Mobile) --- */
    .package-grid {
        display: grid;
        grid-template-columns: 1fr; /* 1 column */
        gap: 25px;
        padding: 0 10px; /* Minimal padding to make cards look wider */
        overflow-x: visible;
    }

    .package-grid .package-card {
        width: 100%;
        margin: 0;
        /* Reset flex properties if any inherited */
        flex: none;
    }

    /* --- SLIDER SPECIFIC ADJUSTMENTS FOR MOBILE --- */
    
    .section-header-center {
        margin-bottom: 20px !important;
    }

    /* Remove side padding on mobile container */
    .slider-container {
        padding: 0;
    }

    /* Reposition Buttons to Top Corners Overlaying Image */
    .slider-btn {
        top: 25px; /* Adjust top offset */
        transform: none; /* Remove Y-centering */
        background: rgba(255, 255, 255, 0.8); /* Transparent background */
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border: none; /* Remove thick border for cleaner look */
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    /* Slider Track Padding */
    .package-slider {
        gap: 15px;
        padding: 10px; /* Simple padding all around */
    }

    /* BIGGER CARD - Show 1 prominent card (~85% width) */
    .slider-card {
        width: 85vw; /* Use viewport width for consistent prominent sizing */
        min-width: 280px; /* Ensure it doesn't get too small */
        scroll-snap-align: center; /* Center the active card */
        margin-bottom: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1); /* Softer shadow */
    }

    /* Larger Image */
    .slider-card .pkg-image, .package-grid .pkg-image {
        height: 180px; /* Increased height */
    }
    
    /* Content Styling */
    .slider-card .pkg-content {
        padding: 15px; /* More padding */
    }

    .slider-card h3 {
        font-size: 1.1rem; /* Larger title */
        white-space: normal; /* Allow wrapping */
        overflow: visible;
    }

    .slider-card .pkg-desc {
        font-size: 0.85rem; /* Larger description */
        -webkit-line-clamp: 3; /* Show more lines */
        margin-bottom: 10px;
    }

    .slider-card .pkg-includes {
        font-size: 0.75rem;
        gap: 10px;
        margin-bottom: 15px;
    }

    /* Improved Button Styling for Mobile */
    .slider-card .pkg-buttons {
        gap: 10px;
        margin-top: 10px;
    }
    
    .slider-card .pkg-buttons .btn-select,
    .slider-card .pkg-buttons .btn-primary {
        padding: 10px 15px; /* Bigger touch target */
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 6px; /* Slightly rounded corners */
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Ensure primary button stands out */
    .slider-card .pkg-buttons .btn-primary {
        background: var(--primary);
        color: white;
        border: none;
    }
    
    /* Ensure select button is outlined */
    .slider-card .pkg-buttons .btn-select {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }
    
    /* Adjust badges for larger cards */
    .slider-card .pkg-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .slider-card .premium-tag, 
    .slider-card .popular-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}