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

:root {
    --primary: #E3B23C; /* Warm Sand Golden Amber */
    --secondary: #0A1128; /* Midnight Indigo / Premium Dark */
    --accent: #0F4C5C; /* Deep Oceanic Teal */
    --light: #F8FAFC;
    --dark: #1E293B;
    --gray: #64748B;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --bg-light-col: #f1f3f5;
}



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

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

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 6rem 0;
}

.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
}

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

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

/* Buttons */
.primary-btn,
.secondary-btn,
.cta-btn,
.book-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px rgba(238, 108, 77, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(238, 108, 77, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    margin-left: 1rem;
}

.secondary-btn:hover {
    background: white;
    color: var(--secondary);
}

.cta-btn {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
}

.cta-btn:hover {
    background: #0e6b6d;
    transform: scale(1.02);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    transition: var(--transition);
}

.logo span {
    color: var(--primary);
}

.navbar.scrolled .logo {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 5rem;
}


.nav-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-links li a {
    color: var(--secondary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-links li a:hover {
    color: white;
}

.navbar.scrolled .nav-links li a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.navbar.scrolled .hamburger {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    /* We will set the background using javascript or inline css after generating image */
    background: var(--secondary);
    /* fallback */
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(11, 37, 69, 0.9) 0%, rgba(11, 37, 69, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    margin-top: 8rem; /* PUSH_DOWN */
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 4rem;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(19, 138, 140, 0.3);
    z-index: -1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Auto Grid for Sections */
.auto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Cleaned About Us */

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
}

.cards-grid > .card {
    display: flex;
    flex-direction: column;
}

/* Premium Asymmetric Bento Layout */
.cards-grid > .card:nth-child(1) { grid-column: span 7; }
.cards-grid > .card:nth-child(2) { grid-column: span 5; }
.cards-grid > .card:nth-child(3) { grid-column: span 12; }
.cards-grid > .card:nth-child(4) { grid-column: span 6; }
.cards-grid > .card:nth-child(5) { grid-column: span 6; }

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 300px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cards-grid > .card:nth-child(1) .card-img { height: 380px; }
.cards-grid > .card:nth-child(2) .card-img { height: 380px; }
.cards-grid > .card:nth-child(3) .card-img { height: 450px; }

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

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-badge.new {
    background: var(--primary);
}

.card-body {
    padding: 2rem;
    position: relative;
    background: white;
    z-index: 3;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.card-meta i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.card:hover .card-body h3 {
    color: var(--primary);
}

.card-body p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price {
    font-size: 0.9rem;
    color: var(--gray);
}

.price span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.book-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.5rem 1.2rem;
}

.book-btn:hover {
    background: var(--primary);
    color: white;
}

/* Premium Footer Redesign */
.footer {
    background: #0f172a;
    /* Deep midnight blue */
    color: #f8fafc;
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-col h3 span {
    color: var(--primary);
    background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 320px;
    font-size: 0.95rem;
}

.socials {
    display: flex;
    gap: 1.2rem;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #cbd5e1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.socials a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
    border-color: transparent;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    position: relative;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    color: #94a3b8;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--primary);
    margin-top: 4px;
    background: rgba(13, 148, 136, 0.1);
    padding: 10px;
    border-radius: 50%;
    font-size: 0.9rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Animations */
.reveal,
.fade-up,
.slide-in-left,
.slide-in-right,
.hover-up {
    visibility: hidden;
}

.animate.fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate.hover-up {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        visibility: visible;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
        visibility: visible;
    }

    to {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
        visibility: visible;
    }

    to {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

/* Premium Booking Section */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.booking-contact-info {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2a40 100%);
    color: white;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.booking-contact-info::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.booking-contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    backdrop-filter: blur(10px);
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.booking-form-box {
    padding: 4rem;
    background: white;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.form-group-modern {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0.8;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
}

.form-group-modern input,
.form-group-modern select {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--dark);
    background-color: #f8fafc;
    transition: all 0.3s ease;
    appearance: none;
    /* Crucial for select custom styling */
    -moz-appearance: none;
    -webkit-appearance: none;
}

/* Custom dropdown arrow for Select */
.form-group-modern select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23138a8c%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

.form-group-modern input:focus,
.form-group-modern select:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.form-group-modern input:focus+.input-icon,
.form-group-modern select:focus+.input-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.submit-modern-btn {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.submit-modern-btn.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

.submit-modern-btn:hover {
    background: rgba(13, 148, 136, 0.05);
    transform: translateY(-3px);
}

.submit-modern-btn.primary:hover {
    background: #0e6b6d;
    box-shadow: 0 15px 25px rgba(13, 148, 136, 0.3);
}

/* Flatpickr Specific Styles */
.flatpickr-day.highlighted-date {
    background-color: rgba(16, 185, 129, 0.2) !important;
    border-color: #10b981 !important;
    font-weight: bold;
    position: relative;
}

.flatpickr-day.highlighted-date::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */


/* Image Backgrounds */
#hero-img {
    background-image: url('images/hero_konkan_beach_1773607850187.png');
}

#about-img-1 {
    background-image: url('images/about_malvani_thali_1773607879805.png');
}

#about-img-2 {
    background-image: url('images/about_sindhudurg_fort_1773607941734.png');
}

#pkg-img-1 {
    background-image: url('images/pkg_scuba_reef_1773607897644.png');
}

#pkg-img-2 {
    background-image: url('images/pkg_dapoli_beach_1773607956200.png');
}

#pkg-img-3 {
    background-image: url('images/pkg_konkan_roadtrip_1773607916768.png');
}

#pkg-img-4 {
    background-image: url('images/pkg_vijaydurg_fort_1773620929411.png');
}

/* Interactive Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.image-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.modal-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.modal-nav:hover {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(13, 148, 136, 0.5);
}

.modal-prev {
    left: -70px;
}

.modal-next {
    right: -70px;
}


/* Redesigned Packages Section */
.packages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.package-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.column-header {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.column-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.column-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
}

.package-item {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.package-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.08);
}

.package-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.package-item.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(to bottom, #ffffff, #f0fdfa);
}

.package-item h4 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 0.3rem;
}

.package-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.badge-mini {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--bg-light-col);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}

.itinerary-summary {
    font-weight: 500;
    color: var(--dark) !important;
    margin-bottom: 1rem !important;
}

.day-split li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.day-split li strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

/* Review Section */
.bg-white {
    background-color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
}

.review-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.review-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.review-stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.review-author h5 {
    font-size: 1.1rem;
    color: var(--secondary);
}

.review-author p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Professional Review Dashboard */
.reviews-dashboard {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.rating-summary-card {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
    background: #f8fafc;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overall-rating {
    text-align: center;
    margin-bottom: 2rem;
}

.overall-rating h3 {
    font-size: 4.5rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.overall-rating p {
    color: var(--gray);
    font-weight: 600;
}

.rating-bars {
    margin-bottom: 2.5rem;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.rating-bar-item span {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    min-width: 25px;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.bar-percent {
    min-width: 40px;
    text-align: right;
    font-size: 0.85rem;
}

.rating-action .primary-btn {
    width: 100%;
    text-align: center;
}

/* Review List */
.reviews-list-wrapper {
    flex: 2;
    min-width: 350px;
    max-height: 550px;
    overflow-y: auto;
    padding: 2rem;
}

.reviews-list-wrapper::-webkit-scrollbar {
    width: 6px;
}

.reviews-list-wrapper::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.review-item:last-child {
    border-bottom: none;
}

.review-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.user-meta h5 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.1rem;
}

.user-meta span {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-item-stars {
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.review-item-text {
    color: var(--secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stays & Hotels Section */
.stays-section {
    margin: 6rem 0;
    padding: 2rem;
    background: white;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.stays-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.stay-card {
    background: #f8fafc;
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stay-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stay-image {
    position: relative;
    height: 220px;
}

.stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stay-info {
    padding: 2rem;
}

.stay-info h4 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stay-loc {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.stay-amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stay-amenities li {
    font-size: 0.85rem;
    color: var(--secondary);
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stay-amenities i {
    color: var(--primary);
}

.stay-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Mini Stay Cards for Itineraries */
.stay-mini-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin: 2.5rem auto;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.stay-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stay-mini-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.stay-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-mini-info {
    padding: 1.5rem 2rem;
}

.stay-mini-info h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stay-mini-info h4 i {
    color: var(--primary);
}

.stay-mini-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}


/* Responsive Packaging */

/* Package Cover Styles */
.route-header-cover {
    height: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.route-header-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-header-cover img {
    transform: scale(1.02);
}

.route-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: white;
}

.route-header-overlay h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: white;
}

.route-header-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Package Card Thumbnails (Homepage) */
.package-item {
    padding-top: 0 !important;
    overflow: hidden;
}

.package-thumbnail {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.package-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-item:hover .package-thumbnail img {
    transform: scale(1.03);
}

.package-item h3 {
    margin-top: 1.5rem !important;
    padding: 0 1.5rem;
}

.package-item p {
    padding: 0 1.5rem;
}

.package-item .primary-btn {
    margin: 1.5rem !important;
}


/* Custom Logo Styling */
.nav-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.scrolled .nav-logo {
    max-height: 50px;
}

.nav-logo-img {
    max-height: 190px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    transform-origin: left center;
    clip-path: inset(0 0 16% 0); /* Pure CSS Crop of bottom 16% */
    margin-bottom: -23px; /* Pull the subtitle up into the void */
}
.scrolled .nav-logo-img {
    max-height: 110px;
    margin-bottom: -15px;
}

.logo-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem; /* Significantly smaller to act like a thought/tagline */
    color: var(--primary); /* Gold text */
    font-weight: 500;
    letter-spacing: 2px;
    margin-left: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar.scrolled .logo-subtitle {
    color: var(--secondary); /* Dark text on scrolled white background */
    font-size: 0.55rem; /* Shrinks exactly with the logo image */
}

.footer-logo-img {
    max-height: 190px;
    width: auto;
    margin-bottom: -15px;
    opacity: 1; /* Made fully opaque since the golden text pops natively */
    clip-path: inset(0 0 16% 0);
}

.footer-logo-subtitle {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem; /* Smaller, elegant gold text for footer */
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Force Call Logo Direction */
.fa-phone-alt, .fa-phone {
    transform: scaleX(-1);
    display: inline-block;
}

/* --- $10,000 Premium Mobile UI Styles --- */
.mobile-app-bar {
    display: none;
}

/* === USER REQUESTED OVERRIDES === */
.nav-links li, .package-item ul li, .route-card ul li, .itinerary-timeline ul li, .hero-content ul li { list-style: none !important; }
.navbar.scrolled { border-bottom: none !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; }
.logo { align-items: center !important; text-align: center; }
.logo-subtitle { text-align: center; margin-left: 0 !important; font-size: 0.6rem !important; }
.scrolled .logo-subtitle { font-size: 0.5rem !important; }

.nav-links li a { white-space: nowrap !important; }

.nav-logo-img { transform: translateY(-5px); }

.scrolled .nav-logo-img { transform: translateY(0); }

/* Removed strict flex wrapper to restore Bento Grid sizing */

/* Restored original small contact logo */

/* Enforce distance between 1-Day packages */
.package-list {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Reduced to match the natural visual spacing requested by the user */
}

/* === AGGRESSIVE MOBILE LAYOUT POLISH === */

/* Mobile Drawer Active State */
body.nav-active .nav-links {
    transform: translateX(0) !important;
}

/* Mobile Header Center Logo */

/* === PREMIUM MOBILE POLISH UPDATES === */

/* === FINAL UX FIXES PATCH === */

/* Floating native app back button on packages */
.floating-mob-back {
    position: absolute;
    left: 20px;
    top: 5px;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    text-decoration: none;
    z-index: 100;
}

/* Form Placeholders Visibility & UI */
.booking-form input::placeholder, .booking-form select::placeholder {
    color: #4a5568 !important; /* Dark slate instead of invisible grey */
    font-weight: 500;
    opacity: 1 !important;
}
.form-group-modern select option {
    color: #1a202c;
    font-weight: 600;
}

/* Hide Mobile App Bar permanently, restore WhatsApp properly */
.mobile-app-bar { display: none !important; }

/* === MASTER AESTHETIC REDESIGN PATCH === */

/* --- 1. About Us: Midnight Navy & Gold --- */
#about-hero-bg {
    background: #0f172a !important; /* Midnight Navy */
}
.about-content-box.glass-panel {
    background: rgba(15, 23, 42, 0.7) !important; /* Match glass to Navy */
    border: 1px solid rgba(255, 215, 0, 0.15) !important; /* Subtle Gold border */
}
.about-content-box h2.section-badge {
    color: #ffd700 !important; /* Gold */
    background: rgba(255, 215, 0, 0.1) !important;
}
.about-content-box h3.premium-heading {
    color: #ffffff !important;
}
.about-description {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* --- 2. Tour Packages: Warm Luxury Sand --- */
section.packages.bg-light {
    background-color: #fdfbf7 !important; /* Warm Sand */
}

/* --- 3. Fixing the 'g' touching edge in Package White Box --- */
.package-info {
    padding: 1.8rem 1.5rem !important; /* Massive padding to breathe */
    background: #ffffff !important; 
    border-radius: 0 0 16px 16px !important;
}
/* For the actual package detail page overlay box */
.route-header-overlay {
    padding: 2.5rem !important; 
}

/* === MOBILE SPECIFIC REDESIGN (<768px) === */

/* === FIX: FORM ROW GRID CUTOFF (MOBILE) === */

/* ========================================= */
/* UNIFIED RESPONSIVE DESIGN (MOBILE-FIRST)  */
/* ========================================= */

@media (max-width: 991px) {
    .hero h1 { font-size: 2.8rem; }
    .auto-grid { grid-template-columns: 1fr; }
    .about-image-collage { order: -1; }
    
    .cards-grid {
        display: grid;
        grid-template-columns: 1fr !important;
    }
    .cards-grid > .card {
        grid-column: span 1 !important;
    }
    .cards-grid > .card .card-img {
        height: 300px !important;
    }
    
    .packages-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Navbar to Hamburger */
    .nav-links, .cta-btn { display: none !important; }
    .hamburger { display: block !important; position: absolute; right: 20px; z-index: 1005; font-size: 1.5rem; color: var(--secondary); }
    .nav-container { justify-content: center; position: relative; }
    .nav-logo-img { max-height: 85px !important; margin-bottom: 0 !important; }
    .scrolled .nav-logo-img { max-height: 75px !important; margin-bottom: 0 !important; }
    .logo-subtitle { display: none !important; }
    
    /* Hamburger Menu Overlay State */
    body.nav-active .nav-links {
        display: flex !important;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center; align-items: center;
        z-index: 1000;
        gap: 2.5rem;
    }
    body.nav-active .nav-links li a {
        font-size: 2rem;
        font-family: var(--font-heading);
        color: white;
    }
    body.nav-active { overflow: hidden; }

    /* Sections Stacking & Trimming */
    .hero-content { margin-top: 6rem; padding: 0 1.5rem; text-align: center; }
    .hero h1 { font-size: 2.2rem !important; line-height: 1.2 !important; }
    .hero-actions { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
    .primary-btn, .secondary-btn, .submit-modern-btn { width: 100% !important; text-align: center !important; display: block !important; box-sizing: border-box !important; padding: 1.25rem 2rem !important; }
    .secondary-btn { margin-left: 0; }
    
    .about-image-collage { display: none !important; } /* Text focus on mobile */
    .about-content-box { padding: 2rem 1.25rem !important; width: 100% !important; text-align: left; }
    .about-description:first-of-type::first-letter {
        font-family: var(--font-heading) !important;
        font-size: 3.5rem !important; color: var(--primary) !important;
        float: left; line-height: 0.8; padding-top: 0.2rem; padding-right: 0.5rem;
    }
    .highlight-quote { display: none !important; }
    .glass-panel { padding: 1.5rem !important; border-radius: 12px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .booking-contact-info, .booking-form-box { padding: 2rem 1.5rem; }
    .form-row { display: flex !important; flex-direction: column !important; gap: 1rem !important; }
    .form-group-modern input, .form-group-modern select { font-size: 0.95rem !important; padding: 1.2rem 1rem 1.2rem 3rem !important; }
    .input-icon { left: 1rem !important; }
    
    /* Package Pages */
    .route-header-cover { height: 250px; }
    .route-header-overlay { padding: 1.5rem !important; justify-content: flex-end; }
    .route-header-overlay h2 { font-size: 2rem; }
    
    /* Floating Buttons */
    .whatsapp-float { bottom: 30px !important; right: 20px !important; width: 50px !important; height: 50px !important; font-size: 30px !important; display: flex !important; }
    .floating-mob-back { top: -20px; left: 10px; font-size: 1.4rem; }
    
    /* Card Padding */
    .package-item { padding: 10px !important; }
    .package-info { padding: 1.25rem 1rem !important; }
}


/* --- Premium Flatpickr Overrides --- */
.flatpickr-calendar {
    font-family: var(--font-main) !important;
    border: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
    padding: 10px !important;
}
.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: var(--secondary) !important;
    fill: var(--secondary) !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--primary) !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
    appearance: none;
}
.flatpickr-weekdays {
    background: transparent !important;
}
span.flatpickr-weekday {
    color: var(--gray) !important;
    font-weight: 600 !important;
}
.flatpickr-day {
    border-radius: 50% !important;
    color: var(--dark) !important;
    font-weight: 500;
}
.flatpickr-day:hover, .flatpickr-day:focus {
    background: rgba(13, 148, 136, 0.1) !important;
    border-color: transparent !important;
    color: var(--accent) !important;
}
.flatpickr-day.selected, .flatpickr-day.selected:hover, .flatpickr-day.selected:focus {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(227, 178, 60, 0.4) !important;
}
.flatpickr-day.today {
    border-color: var(--accent) !important;
}


/* --- NEW UI Redesign CSS --- */
.bg-white { background-color: #ffffff; }
.about-section { padding: 6rem 0; }
.section-subtitle { font-family: var(--font-main); font-size: 0.9rem; color: var(--primary); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 800; margin-bottom: 0.8rem; }
.section-heading { font-family: var(--font-heading); font-size: 2.8rem; color: var(--secondary); margin-bottom: 1.5rem; line-height: 1.2; }
.separator-line-clean { width: 60px; height: 3px; background: var(--accent); margin-bottom: 2rem; border-radius: 2px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.about-text { font-family: var(--font-main); font-size: 1.1rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateZ(0); }
.about-main-img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; display: block; transition: transform 0.5s ease; }
.about-image-wrapper:hover .about-main-img { transform: scale(1.03); }

/* --- Mobile Horizontal Scroll Packages --- */
.packages-scroll-container { width: 100%; padding-bottom: 2rem; margin-top: 3rem; }
.packages-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; padding: 1rem 0; }
.package-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.02); }
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.featured-card { border: 2px solid var(--primary); background: linear-gradient(to bottom, #ffffff, #fdfbf7); }
.package-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.package-thumbnail { position: relative; height: 220px; overflow: hidden; }
.package-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .package-thumbnail img { transform: scale(1.05); }
.pkg-tag { position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,0.9); color: var(--secondary); padding: 0.3rem 0.8rem; border-radius: 30px; font-size: 0.8rem; font-weight: 700; backdrop-filter: blur(5px); }
.featured-tag { background: var(--primary); color: white; }
.package-info { padding: 2rem; }
.package-info h4 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--secondary); margin-bottom: 0.5rem; }
.package-info p { font-size: 0.95rem; color: var(--gray); margin-bottom: 1.5rem; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.05); }
.pkg-route { font-weight: 700; color: var(--secondary); font-size: 0.9rem; }
.featured-route { color: var(--primary); }
.pkg-btn { width: 40px; height: 40px; border-radius: 50%; background: #f1f5f9; display: flex; justify-content: center; align-items: center; color: var(--secondary); transition: all 0.3s ease; }
.featured-btn { background: var(--primary); color: white; }
.package-card:hover .pkg-btn:not(.featured-btn) { background: var(--secondary); color: white; }

@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .packages-track { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .about-section { padding: 4rem 0; }
    .section-heading { font-size: 2.2rem !important; margin-bottom: 1rem; }
    .about-text { font-size: 0.95rem !important; line-height: 1.6 !important; }
    
    /* Horizontal Scrolling Magic */
    .packages-scroll-container { margin-top: 2rem; margin-right: -2rem; padding-right: 2rem; }
    .packages-track { 
        display: flex; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        padding-bottom: 1.5rem; 
        gap: 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    .packages-track::-webkit-scrollbar { display: none; /* Chrome */ }
    .package-card { 
        flex: 0 0 85%; 
        scroll-snap-align: center; 
    }
    .package-info { padding: 1.5rem; }
}
