/*
 * Dilshan Tours - Custom Stylesheet
 * Colors: Deep Teal (#0d4f5c), Terracotta (#c1541f), Warm Gold (#e0a736), Sage Green (#9fb28a)
 * Fonts: Playfair Display (Serif), Poppins (Sans-Serif)
 */

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

:root {
    --primary: #1a1d20;
    /* Deep Charcoal Black - headers, hero background, dark sections */
    --primary-dark: #121416;
    /* Darker Charcoal - footer background, overlays */
    --primary-light: #25292e;
    /* Medium Charcoal - badges, dark section cards */

    --secondary: #c59d5f;
    /* Champagne / Bronze Gold - CTAs, active states, buttons */
    --secondary-dark: #a88246;
    /* Darker Gold - button hover states */

    --accent: #c59d5f;
    /* Luxury Gold - star ratings, highlights, special badges */
    --accent-dark: #a88246;
    /* Darker Gold - hover state */

    --sage: #c59d5f;
    /* Gold accent for decorative elements */
    --sage-dark: #a88246;

    --bg-cream: #f7f5f0;
    /* Warm luxury off-white/beige background */
    --bg-white: #ffffff;
    --text-dark: #1a1d20;
    --text-muted: #606875;
    --border-color: #e5e0d8;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(26, 29, 32, 0.08);
    --shadow-hover: 0 15px 35px rgba(26, 29, 32, 0.15);
}

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

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

h2 {
    font-size: 2.4rem;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 90px 0;
}

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

.eyebrow-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.6rem;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 50%, var(--sage) 100%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 15px;
    font-family: var(--font-body);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(26, 29, 32, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: scale(1.05);
}

/* Transparent Overlaid Navigation Bar over Hero */
header.site-header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: none;
}

header.site-header.scrolled {
    background: linear-gradient(90deg, rgba(4, 29, 26, 0.96) 0%, rgba(13, 61, 54, 0.96) 100%);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(45, 212, 191, 0.3);
}

header.site-header.scrolled .nav-container {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.8rem;
    font-family: var(--font-body);
    color: var(--accent);
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bg-white);
    position: relative;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, #2dd4bf 100%);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #2dd4bf;
    background: rgba(45, 212, 191, 0.12);
    box-shadow: 0 0 16px rgba(45, 212, 191, 0.22);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 75%;
}

.nav-link.active::after {
    width: 75%;
    background-color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
    background: rgba(197, 157, 95, 0.12);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--bg-white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    color: white;
    font-size: 30px;
    transition: var(--transition);
    animation: waPulse 2.5s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Floating Review Button */
.review-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(197, 157, 95, 0.4);
    z-index: 999;
    color: white;
    font-size: 24px;
    transition: var(--transition);
}

.review-float:hover {
    transform: scale(1.1) rotate(-15deg);
    box-shadow: 0 6px 20px rgba(197, 157, 95, 0.6);
    background-color: var(--accent-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    padding: 180px 0 100px 0;
    text-align: left;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 0 0;
    padding-left: 2%;
}

.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin: 0 0 30px 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Short Intro */
.intro-section {
    background-color: var(--bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.intro-img-wrapper {
    position: relative;
}

.intro-img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    z-index: 1;
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.intro-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: 0;
}

/* Feature/Highlights Section */
.features-section {
    background-color: var(--bg-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 45px;
    color: var(--secondary);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Featured Packages & Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.package-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

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

.package-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.package-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.package-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(26, 29, 32, 0.95);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.package-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.package-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

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

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

/* Category Filters */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(26, 29, 32, 0.2);
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-white);
}

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

.testimonial-card {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

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

.testimonial-quote {
    font-size: 28px;
    color: rgba(26, 158, 110, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
}

.stars {
    color: var(--accent);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Bottom CTA Banner */
.bottom-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-top: 1px solid rgba(197, 157, 95, 0.3);
    color: var(--bg-white);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Inner Pages Hero Header Banner (Cinematic Style) */
.inner-header {
    position: relative;
    min-height: 400px;
    padding: 140px 0 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.inner-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.inner-header h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.inner-header-subtext {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

/* About Page */
.about-story {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    background-color: var(--bg-cream);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.about-feat-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.about-feat-card i {
    font-size: 35px;
    color: var(--accent);
    margin-bottom: 15px;
}

.about-feat-card h4 {
    margin-bottom: 10px;
}

.about-feat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-white);
}


/* Contact Page */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-form-wrapper {
    background-color: var(--bg-cream);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-feedback {
    font-size: 0.8rem;
    color: red;
    margin-top: 5px;
    display: none;
}

.form-group.invalid .form-control {
    border-color: #e74c3c;
}

.form-group.invalid .form-feedback {
    display: block;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-box {
    background-color: var(--bg-cream);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h4 i {
    color: var(--secondary);
}

.info-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-box a {
    color: var(--primary);
    font-weight: 500;
}

.info-box a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--bg-white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn i {
    color: var(--bg-white) !important;
}

.social-btn:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.map-wrapper {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Footer styling */
footer.site-footer {
    background-color: var(--primary-dark);
    color: var(--border-color);
    padding: 45px 0 15px 0;
    font-family: var(--font-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
    font-family: var(--font-heading);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
}

/* Alert Message (PHP mail success/error styling) */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {

    .intro-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-img-wrapper {
        margin-top: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 140px 0 70px 0;
        text-align: left;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .logo-img {
        height: 50px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: rgba(13, 79, 92, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.3);
        gap: 5px;
        padding: 8px;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .nav-toggle:hover,
    .nav-toggle:focus {
        background: var(--primary);
        outline: none;
    }

    .nav-toggle span {
        width: 24px;
        height: 2.5px;
        background-color: var(--bg-white);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
        transform-origin: center;
    }

    /* Hamburger icon animated transform when active (open X) */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--accent);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--accent);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background-color: rgba(7, 47, 55, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 30px 25px;
        gap: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 3px solid var(--accent);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        display: flex;
        text-align: center;
        border-radius: 0 0 16px 16px;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu .nav-link {
        color: var(--bg-white);
        font-size: 1.1rem;
        font-weight: 500;
        padding: 10px 15px;
        border-radius: 8px;
        display: block;
        transition: var(--transition);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-btn {
        width: 100%;
        margin-top: 10px;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: 25px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 22px;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .review-float {
        bottom: 78px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 18px;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

body.nav-open {
    overflow: hidden !important;
}

/* Preloader Splash Screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    /* Deep Teal theme color */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

body.preloader-active {
    overflow: hidden !important;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent);
    /* Warm gold theme accent */
    animation: spinLoader 1s infinite linear;
}

.preloader-tagline {
    color: var(--bg-cream);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.8;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes spinLoader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Home Page Gallery Slideshow Section */
.gallery-slideshow-section {
    padding: 60px 0;
    background-color: var(--bg-cream);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.gallery-slideshow-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollSlideshow 30s linear infinite;
}

.gallery-slideshow-track:hover {
    animation-play-state: paused;
}

.gallery-slide-item {
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.gallery-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

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

@keyframes scrollSlideshow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* Additional Mobile View Enhancements */
@media (max-width: 768px) {

    /* Package list grid compatibility */
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    /* Package Details Page Mobile Optimizations */
    .package-details-section {
        padding: 30px 0 !important;
    }

    .details-main-content {
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }

    .details-main-content img[alt] {
        height: 220px !important;
        margin-bottom: 20px !important;
    }

    .details-main-content>div:first-of-type {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .details-main-content>div:first-of-type>div:last-child {
        text-align: left !important;
    }

    .info-box {
        padding: 25px 15px !important;
        margin-top: 30px !important;
        border-radius: 12px !important;
    }

    .info-box h4 {
        font-size: 1.3rem !important;
    }

    /* Reviews Page Mobile Optimizations */
    .reviews-page {
        padding: 30px 0 50px !important;
    }

    .reviews-page>.container>div:first-of-type {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
        padding: 20px 15px !important;
    }

    .reviews-page>.container>div:first-of-type div {
        justify-content: center !important;
    }

    .reviews-page>.container>div:first-of-type a {
        width: 100% !important;
        justify-content: center !important;
    }

    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .testimonial-card {
        padding: 20px 15px !important;
    }

    /* General inner page headers */
    .inner-header {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .inner-header h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {

    /* Logo scaling */
    .logo-text {
        font-size: 1.1rem !important;
    }

    .logo-img {
        height: 40px !important;
    }

    /* Preloader logo */
    .preloader-logo {
        height: 80px;
        width: 80px;
        padding: 10px;
    }

    /* Stats grid items on home page */
    .stats-section .container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* ==========================================================================
   Cinematic Travel-Magazine Homepage Styling
   ========================================================================== */

/* Hero Magazine Layout */
/* Hero 3D Coverflow Carousel Section */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 25px;
    background: linear-gradient(135deg, #041d1a 0%, #0a3d36 30%, #154c46 65%, #3d240e 100%);
    overflow: hidden;
}

.hero-cinematic-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(22px) brightness(0.6);
    transform: scale(1.1);
    transition: background-image 0.8s ease;
    z-index: 1;
}

.hero-cinematic-dim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(13, 79, 71, 0.15) 0%, rgba(4, 25, 23, 0.78) 100%);
    z-index: 2;
}

.hero-3d-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-bg-title {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 8.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.28);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

/* 3D Carousel Wrapper */
.hero-3d-carousel {
    position: relative;
    width: 100%;
    max-width: 1150px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    z-index: 2;
}

.hero-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: var(--transition);
}

.hero-carousel-nav:hover {
    background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
    border-color: #2dd4bf;
    color: #ffffff;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.6);
}

.hero-carousel-nav.prev {
    left: 10px;
}

.hero-carousel-nav.next {
    right: 10px;
}

.hero-cards-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* Individual 3D Card */
.hero-3d-card {
    position: absolute;
    width: 280px;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    transition: transform 0.22s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.22s ease, z-index 0.22s ease, filter 0.22s ease;
    cursor: pointer;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85) 100%);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-card-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px 12px;
    border-radius: 12px;
    align-self: flex-end;
}

.hero-card-center-play {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: var(--transition);
}

.play-btn-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.play-btn-circle:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: scale(1.1);
}

.hero-card-caption {
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-card-divider {
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    margin: 0 auto 8px auto;
}

.hero-card-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* Coverflow Perspective States */
.hero-3d-card.active {
    transform: translateX(0) translateZ(90px) rotateY(0deg) scale(1.08);
    z-index: 10;
    opacity: 1;
    filter: brightness(1.1) contrast(1.05);
    border-color: rgba(45, 212, 191, 0.7);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(45, 212, 191, 0.35);
}

.hero-3d-card.active .hero-card-center-play,
.hero-3d-card.active .hero-card-caption {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.hero-3d-card.prev-1 {
    transform: translateX(-210px) translateZ(0px) rotateY(22deg) scale(0.88);
    z-index: 5;
    opacity: 0.96;
    filter: brightness(1.0) contrast(1.05);
}

.hero-3d-card.next-1 {
    transform: translateX(210px) translateZ(0px) rotateY(-22deg) scale(0.88);
    z-index: 5;
    opacity: 0.96;
    filter: brightness(1.0) contrast(1.05);
}

.hero-3d-card.prev-2 {
    transform: translateX(-370px) translateZ(-90px) rotateY(35deg) scale(0.74);
    z-index: 2;
    opacity: 0.88;
    filter: brightness(0.92) contrast(1.02);
}

.hero-3d-card.next-2 {
    transform: translateX(370px) translateZ(-90px) rotateY(-35deg) scale(0.74);
    z-index: 2;
    opacity: 0.88;
    filter: brightness(0.92) contrast(1.02);
}

.hero-3d-card.hidden-slide {
    transform: translateX(0) translateZ(-300px) scale(0.5);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

/* Responsive 3D Coverflow adjustments */
@media (max-width: 991px) {
    .hero-cinematic {
        min-height: 80vh;
        padding: 100px 0 40px;
    }

    .hero-bg-title {
        font-size: 5.5rem;
        letter-spacing: 6px;
        color: rgba(255, 255, 255, 0.25);
        top: 35%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .hero-3d-carousel {
        height: 450px;
    }

    .hero-3d-card {
        width: 250px;
        height: 380px;
    }

    .hero-3d-card.active {
        transform: translateX(0) translateZ(80px) rotateY(0deg) scale(1.08);
    }

    .hero-3d-card.prev-1 {
        transform: translateX(-180px) translateZ(0px) rotateY(22deg) scale(0.85);
    }

    .hero-3d-card.next-1 {
        transform: translateX(180px) translateZ(0px) rotateY(-22deg) scale(0.85);
    }

    .hero-3d-card.prev-2 {
        transform: translateX(-310px) translateZ(-80px) rotateY(35deg) scale(0.7);
    }

    .hero-3d-card.next-2 {
        transform: translateX(310px) translateZ(-80px) rotateY(-35deg) scale(0.7);
    }
}

@media (max-width: 600px) {
    .hero-bg-title {
        font-size: 3.8rem;
        letter-spacing: 4px;
        color: rgba(255, 255, 255, 0.32);
        top: 24%;
        transform: translate(-50%, 0);
        z-index: 2;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .hero-3d-carousel {
        height: 340px;
        margin-top: 15px;
    }

    .hero-3d-card {
        width: 180px;
        height: 290px;
    }

    .hero-carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .hero-carousel-nav.prev {
        left: 5px;
    }

    .hero-carousel-nav.next {
        right: 5px;
    }

    .hero-3d-card.prev-1 {
        transform: translateX(-95px) translateZ(0px) rotateY(18deg) scale(0.8);
    }

    .hero-3d-card.next-1 {
        transform: translateX(95px) translateZ(0px) rotateY(-18deg) scale(0.8);
    }

    .hero-3d-card.prev-2,
    .hero-3d-card.next-2 {
        opacity: 0;
        pointer-events: none;
    }

    .hero-card-title {
        font-size: 1.15rem;
    }

    .hero-card-sub {
        font-size: 0.75rem;
    }
}

/* Vertical Numbered Navigation */
.hero-num-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.hero-num-item {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.hero-num-item.active {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-num-item.active::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

/* Hero Bottom Featured Columns */
.hero-bottom-bar {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-dest-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 850px;
}

.hero-dest-item h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dest-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.swipe-explore-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 15px;
}

.dual-line-divider {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dual-line-divider .line-white {
    width: 60px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
}

.dual-line-divider .line-gold {
    width: 25px;
    height: 2px;
    background-color: var(--accent);
}

/* Section 2: MAP OF THE TOUR Timeline Route */
.tour-map-section {
    background: linear-gradient(180deg, rgba(15, 18, 22, 0.85) 0%, rgba(10, 12, 15, 0.92) 100%),
                url('../images/h3.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.tour-map-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-align: center;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tour-map-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 80px;
}

.tour-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Central Line Axis */
.timeline-vertical-axis {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Stop Entry */
.timeline-stop-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 90px;
    z-index: 2;
}

.timeline-stop-item:last-child {
    margin-bottom: 20px;
}

/* White Circle Dot on Axis */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.8);
    z-index: 3;
}

/* Day & City Label */
.timeline-label-group {
    position: relative;
    z-index: 5;
    margin-bottom: 12px;
}

.timeline-stop-item.left-side {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-right: 53%;
}

.timeline-stop-item.right-side {
    justify-content: flex-start;
    padding-left: 53%;
}

.timeline-stop-item.left-side .timeline-label-group {
    text-align: right;
}

.timeline-stop-item.right-side .timeline-label-group {
    text-align: left;
}

.timeline-days {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}

.timeline-city {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* Overlapping Image Cards Stack */
.timeline-image-stack {
    position: relative;
    width: 250px;
    height: 180px;
    margin-top: 15px;
}

.timeline-stop-item.left-side .timeline-image-stack {
    margin-left: auto;
}

.timeline-stop-item.right-side .timeline-image-stack {
    margin-right: auto;
}

.img-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), z-index 0.4s ease, border-color 0.3s ease;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Staggered arrangement for Left-Side items */
.timeline-stop-item.left-side .img-card.img-back {
    width: 175px;
    height: 145px;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.9;
}

.timeline-stop-item.left-side .img-card.img-front {
    width: 165px;
    height: 135px;
    top: 35px;
    left: 75px;
    z-index: 2;
    opacity: 1;
}

/* Staggered arrangement for Right-Side items */
.timeline-stop-item.right-side .img-card.img-back {
    width: 175px;
    height: 145px;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0.9;
}

.timeline-stop-item.right-side .img-card.img-front {
    width: 165px;
    height: 135px;
    top: 35px;
    right: 75px;
    z-index: 2;
    opacity: 1;
}

.img-card.img-single {
    width: 210px;
    height: 170px;
    top: 10px;
    left: 20px;
    z-index: 2;
}

.timeline-image-stack:hover .img-card.img-back {
    transform: scale(1.04) rotate(-3deg);
    border-color: var(--accent);
}

.timeline-image-stack:hover .img-card.img-front {
    transform: scale(1.06) rotate(3deg);
    border-color: var(--accent);
    z-index: 3;
}

@media (max-width: 768px) {
    .timeline-vertical-axis {
        left: 25px;
    }

    .timeline-dot {
        left: 25px;
    }

    .timeline-stop-item.left-side,
    .timeline-stop-item.right-side {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-stop-item.left-side .timeline-label-group,
    .timeline-stop-item.right-side .timeline-label-group {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        text-align: left !important;
        margin-bottom: 15px;
    }

    .timeline-stop-item.left-side .timeline-image-stack,
    .timeline-stop-item.right-side .timeline-image-stack {
        margin: 0 !important;
    }
}

/* Section 3: Brand Story / Cinematic CTA Band */
.cinematic-story-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}

.cinematic-story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 20, 22, 0.94) 0%, rgba(26, 29, 32, 0.88) 100%);
    z-index: 1;
}

.cinematic-story-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-big-heading {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
}

.play-video-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.play-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    padding-left: 3px;
    transition: var(--transition);
}

.play-video-link:hover .play-icon-circle {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.story-body-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 30px;
}

.story-media-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.story-thumbs-wrapper {
    display: flex;
    gap: 20px;
}

.story-thumb-card {
    position: relative;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.story-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-thumb-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 47, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.story-insta-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.story-insta-link:hover {
    color: #ffffff;
}

/* Responsive Cinematic Styles */
@media (max-width: 991px) {
    .hero-display-title {
        font-size: 3.8rem;
    }

    .hero-main-grid {
        grid-template-columns: 1fr;
    }

    .hero-num-list {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-dest-cols {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reco-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cinematic-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-big-heading {
        font-size: 3rem;
    }

    .story-media-side {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-display-title {
        font-size: 2.2rem;
        word-break: break-word;
    }

    .reco-grid {
        grid-template-columns: 1fr;
    }

    .story-thumbs-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .story-thumb-card {
        width: 100%;
        height: 160px;
    }
}


/* Reviews Page Styles & Responsive Adjustments */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .reviews-header-summary {
        flex-direction: column;
        align-items: stretch !important;
        padding: 20px !important;
        text-align: center;
    }

    .reviews-summary-rating {
        flex-direction: column;
        gap: 8px !important;
        text-align: center;
    }

    .reviews-summary-btn-wrapper {
        width: 100%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-page .testimonial-card {
        padding: 20px !important;
    }

    .testimonial-author-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .reviews-pagination {
        gap: 5px !important;
    }

    .reviews-pagination .btn {
        padding: 6px 12px !important;
        font-size: 0.82rem !important;
    }
}

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

/* ==========================================================================
   Photo Gallery & Lightbox Styles
   ========================================================================== */

.gallery-section {
    padding: 70px 0 100px;
    background-color: var(--bg-cream);
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 157, 95, 0.2);
}

.filter-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(26, 29, 32, 0.25);
}

/* Gallery Grid (Bento Layout) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
    background-color: var(--primary-light);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-item.col-span-2 {
    grid-column: span 2;
}

/* Overlay on Hover */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 20, 22, 0.85) 0%, rgba(18, 20, 22, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.gallery-overlay i {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 8px;
    transform: scale(0.7);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 12, 15, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoom 0.3s ease forwards;
}

@keyframes lightboxZoom {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    margin-top: 15px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    font-size: 2rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
        gap: 16px;
    }

    .gallery-item {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .filter-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-container::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.88rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .lightbox {
        padding: 12px;
    }

    .lightbox-content img {
        max-height: 65vh;
    }

    .lightbox-caption {
        font-size: 0.95rem;
        padding: 6px 16px;
        margin-top: 10px;
    }

    .lightbox-close {
        top: -40px;
        right: 0;
        width: 36px;
        height: 36px;
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 14px;
    }

    .gallery-item,
    .gallery-item.col-span-2 {
        grid-column: span 1;
        min-height: 240px;
    }
}

/* ==========================================
   ADMIN CARD MODAL POPUP STYLES
   ========================================== */
.admin-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.admin-modal-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 540px;
    overflow: hidden;
    transform: scale(0.92) translateY(12px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal-backdrop.active .admin-modal-card {
    transform: scale(1) translateY(0);
}

.admin-modal-header {
    padding: 22px 28px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-modal-header.danger-header {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
}

.admin-modal-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.admin-modal-header h3 i {
    color: var(--accent);
}

.admin-modal-header.danger-header h3 i {
    color: #fef08a;
}

.admin-modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    font-size: 1.1rem;
    color: #ffffff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.admin-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.admin-modal-body {
    padding: 26px 28px;
    max-height: 70vh;
    overflow-y: auto;
}

.admin-modal-footer {
    padding: 18px 28px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Modal Card UI Elements */
.modal-field-group {
    margin-bottom: 20px;
}

.modal-field-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.modal-field-group textarea,
.modal-field-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: #f8fafc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.modal-field-group textarea:focus,
.modal-field-group input:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.15);
}

.modal-info-box {
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
}

.modal-info-box .author {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.modal-info-box .meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.modal-info-box .text {
    font-size: 0.93rem;
    color: #334155;
    line-height: 1.5;
}

.modal-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.modal-btn-primary {
    background-color: var(--secondary);
    color: #ffffff;
}

.modal-btn-primary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 157, 95, 0.3);
}

.modal-btn-danger {
    background-color: #ef4444;
    color: #ffffff;
}

.modal-btn-danger:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.modal-btn-secondary {
    background-color: #e2e8f0;
    color: #475569;
}

.modal-btn-secondary:hover {
    background-color: #cbd5e1;
    color: #0f172a;
}

/* ==========================================================================
   MAP OF THE TOUR SECTION STYLES WITH BACKGROUND IMAGE
   ========================================================================== */
.tour-map-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 18, 22, 0.85) 0%, rgba(10, 12, 15, 0.92) 100%),
                url('../images/h3.jpg') center/cover no-repeat fixed;
    color: #ffffff;
    overflow: hidden;
}

.tour-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(197, 157, 95, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.tour-map-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary, #c59d5f);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tour-map-heading {
    text-align: center;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.tour-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Vertical Axis Line */
.timeline-vertical-axis {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(197, 157, 95, 0.2) 0%, rgba(197, 157, 95, 0.8) 50%, rgba(197, 157, 95, 0.2) 100%);
    transform: translateX(-50%);
}

.timeline-stop-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
}

.timeline-stop-item:last-child {
    margin-bottom: 0;
}

/* Dots on Central Axis */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary, #c59d5f);
    border: 3px solid #1a1d20;
    box-shadow: 0 0 15px rgba(197, 157, 95, 0.8);
    z-index: 5;
}

/* Left & Right Layouts */
.timeline-stop-item.left-side {
    justify-content: flex-start;
}

.timeline-stop-item.left-side .timeline-label-group {
    width: 42%;
    text-align: right;
    padding-right: 40px;
}

.timeline-stop-item.left-side .timeline-image-stack {
    position: absolute;
    left: 54%;
    width: 280px;
    height: 200px;
}

.timeline-stop-item.right-side {
    justify-content: flex-end;
}

.timeline-stop-item.right-side .timeline-label-group {
    width: 42%;
    text-align: left;
    padding-left: 40px;
    order: 2;
}

.timeline-stop-item.right-side .timeline-image-stack {
    position: absolute;
    right: 54%;
    width: 280px;
    height: 200px;
    order: 1;
}

.timeline-days {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary, #c59d5f);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.timeline-city {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

/* Image Stack Effects */
.timeline-image-stack {
    position: relative;
}

.timeline-image-stack .img-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.timeline-image-stack .img-back {
    width: 200px;
    height: 140px;
    top: 0;
    z-index: 1;
    opacity: 0.85;
}

.timeline-image-stack .img-front {
    width: 200px;
    height: 140px;
    bottom: 0;
    z-index: 2;
}

.timeline-stop-item.left-side .img-back {
    left: 0;
}

.timeline-stop-item.left-side .img-front {
    right: 0;
}

.timeline-stop-item.right-side .img-back {
    right: 0;
}

.timeline-stop-item.right-side .img-front {
    left: 0;
}

.timeline-image-stack .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-image-stack:hover .img-card img {
    transform: scale(1.08);
}

.timeline-image-stack:hover .img-card {
    border-color: var(--secondary, #c59d5f);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tour-map-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .tour-map-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .timeline-vertical-axis {
        left: 20px;
        transform: none;
    }

    .timeline-dot {
        left: 20px;
        transform: translate(-50%, -50%);
    }

    .timeline-stop-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 55px;
        margin-bottom: 50px;
    }

    .timeline-stop-item.left-side .timeline-label-group,
    .timeline-stop-item.right-side .timeline-label-group {
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 15px;
        order: 1;
    }

    .timeline-city {
        font-size: 1.5rem;
    }

    .timeline-stop-item.left-side .timeline-image-stack,
    .timeline-stop-item.right-side .timeline-image-stack {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 180px;
        order: 2;
    }
}

/* ==========================================
   Vehicles Section & Card Styles
   ========================================== */
.vehicles-section {
    padding: 90px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.vehicle-card {
    background-color: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.vehicle-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #1a1d20;
}

.vehicle-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1d20 0%, #292d32 100%);
    color: #ffffff;
    border-bottom: 3px solid var(--secondary);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-img-placeholder {
    background: linear-gradient(135deg, #22262a 0%, #343940 100%);
}

.placeholder-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 10px;
    opacity: 0.9;
    transition: var(--transition);
}

.vehicle-card:hover .placeholder-icon {
    transform: scale(1.1);
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.placeholder-hint {
    font-size: 0.75rem;
    color: var(--secondary);
    margin-top: 6px;
    opacity: 0.85;
    background: rgba(197, 157, 95, 0.15);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px dashed var(--secondary);
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.vehicle-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.vehicle-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vehicle-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
}

.vehicle-badge {
    background-color: rgba(197, 157, 95, 0.15);
    color: var(--secondary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(197, 157, 95, 0.3);
}

.vehicle-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.vehicle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vehicle-features li {
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vehicle-features li i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
}

.vehicle-price span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Package Details Page Styles & Responsiveness
   ========================================================================== */
.package-details-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.details-main-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.package-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.package-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.package-title-heading {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary);
    line-height: 1.25;
}

.package-price-box {
    text-align: right;
}

.package-price-value {
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.transfer-table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    -webkit-overflow-scrolling: touch;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.itinerary-timeline {
    position: relative;
    padding-left: 35px;
}

.itinerary-line {
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.itinerary-item {
    position: relative;
    margin-bottom: 30px;
}

.itinerary-badge {
    position: absolute;
    left: -35px;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.itinerary-item-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.day-tag {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.whatsapp-booking-box {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border-color: var(--primary-dark);
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Mobile Responsive Breakpoints for Package Details
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .package-details-section {
        padding: 35px 0;
    }

    .details-main-content {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .package-main-img {
        height: 230px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .package-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .package-title-heading {
        font-size: 1.55rem;
    }

    .package-price-box {
        text-align: left;
        width: 100%;
        background-color: rgba(13, 79, 92, 0.04);
        padding: 12px 16px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .package-price-value {
        font-size: 1.8rem;
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .itinerary-timeline {
        padding-left: 30px;
    }

    .itinerary-line {
        left: 11px;
    }

    .itinerary-badge {
        left: -30px;
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .itinerary-item-title {
        font-size: 1.05rem;
    }

    .whatsapp-booking-box {
        padding: 28px 18px;
        border-radius: 16px;
        margin-top: 35px;
    }

    .whatsapp-booking-box h4 {
        font-size: 1.35rem !important;
    }

    .whatsapp-booking-box p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .details-main-content {
        padding: 18px 12px;
    }

    .package-main-img {
        height: 190px;
    }

    .package-title-heading {
        font-size: 1.35rem;
    }

    .transfer-table-wrapper table th,
    .transfer-table-wrapper table td {
        padding: 10px 10px !important;
        font-size: 0.85rem !important;
    }
}