:root {
    --color-primary: #FF6B00;
    /* Bright Orange for CTAs */
    --color-secondary: #6c757d;
    /* Gray */
    --color-accent: #ffc107;
    /* Yellow - keeping for other accents if needed, though primary orange is new main */
    --color-background-light: #f8f9fa;
    /* Light Gray */
    --color-background-dark: #333333;
    /* Dark Grey as per prompt */
    --color-text-light: #ffffff;
    /* White */
    --color-text-dark: #333333;
    /* Dark Grey as per prompt */

    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Modern and clean sans-serif font */
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-text-light);
    /* White background */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    /* Stronger heading font */
    font-weight: 700;
    color: var(--color-text-dark);
}

.section-dark {
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
}

/* --- Navbar Styles --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    /* Slightly transparent white */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-dark) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--color-text-dark) !important;
    transition: color 0.3s ease;
    padding: var(--spacing-sm) var(--spacing-md);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Navbar shrink on scroll */
.navbar.navbar-shrink {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.98);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
}

.hero-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* For classic parallax effect */
    will-change: transform;
    /* Optimize for smooth animation */
    z-index: -2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    /* Dark gradient overlay */
    z-index: -1;
}

.hero-section h1 {
    font-size: 4.5rem;
    /* Large bold typography */
    font-weight: 900;
    color: var(--color-text-light);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
}

.hero-section p.lead {
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.btn-cta {
    background-color: var(--color-primary);
    /* Use new primary orange */
    color: var(--color-text-light);
    /* White text for contrast */
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    /* Shadow matching new primary color */
}

.btn-cta:hover {
    background-color: #e65c00;
    /* Darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    color: var(--color-text-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator .arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-text-light);
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

.scroll-indicator .arrow:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounce {

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

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

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

/* --- Animated Particles for Hero Section --- */
.animated-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Below content, above gradient */
    pointer-events: none;
    /* Allows clicks to pass through */
    overflow: hidden;
}

.animated-particles::before,
.animated-particles::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    /* Subtle white */
    border-radius: 50%;
    animation: float-particles 15s infinite ease-in-out alternate;
}

.animated-particles::before {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    transform: scale(0.8);
}

.animated-particles::after {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
    transform: scale(1.2);
}

@keyframes float-particles {
    0% {
        transform: translateY(0) rotate(0deg) scale(var(--particle-scale, 1));
        opacity: 0.7;
    }

    100% {
        transform: translateY(-50px) rotate(180deg) scale(var(--particle-scale, 1.2));
        opacity: 0.4;
    }
}

/* --- General Section Styling --- */
section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
    /* Ensure animations don't bleed */
}

/* Fade-in and Slide-up on reveal */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- Card Styles (General) --- */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
    /* Image zoom on hover */
}

/* Package Card Specific Styles */
.package-card {
    border-radius: 12px;
    /* Slightly less rounded corners */
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    /* Softer, more refined shadow */
    transition: all 0.3s ease;
    /* Faster transition */
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    /* Needed for z-index context */
}

.package-card:hover {
    transform: translateY(-5px) scale(1.01);
    /* Lift slightly less */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    /* More prominent shadow on hover */
}

.package-card-header {
    position: relative;
    height: 200px;
    /* Consistent height for images */
    overflow: hidden;
    background-color: #f0f2f5;
    /* Placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
    /* Stronger overlay for better text contrast */
    z-index: 1;
}

.package-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Faster transition */
}

.package-card:hover .package-card-img {
    transform: scale(1.05);
    /* Slightly less aggressive zoom on hover */
}

.package-card-category,
.package-card-duration {
    position: absolute;
    top: 15px;
    padding: 5px 10px;
    /* Slightly smaller padding */
    border-radius: 18px;
    /* Slightly smaller border-radius */
    font-size: 0.75rem;
    /* Slightly smaller font size */
    font-weight: 600;
    z-index: 2;
    /* Ensure badges are above overlay */
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.package-card-category {
    left: 15px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.package-card-duration {
    right: 15px;
    background-color: rgba(0, 0, 0, 0.75);
    /* Darker background for better contrast */
    color: var(--color-text-light);
}

.package-card-body {
    padding: var(--spacing-lg);
    /* Slightly reduced padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.package-card-title {
    font-size: 1.6rem;
    /* Slightly smaller title for balance */
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
    line-height: 1.3;
}

.package-card-location {
    font-size: 0.95rem;
    /* Slightly smaller location font size */
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
}

.package-card-location i {
    margin-right: 6px;
    /* Slightly reduced margin */
    color: var(--color-primary);
}

.package-card-pricing {
    margin-top: auto;
    padding-top: var(--spacing-md);
    /* Reduced spacing above pricing */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Lighter separator */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-card-price {
    font-size: 1.6rem;
    /* Consistent with title size */
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0;
}

.btn-cta.btn-sm {
    padding: 10px 20px;
    /* Slightly smaller button padding */
    font-size: 0.9rem;
    /* Slightly smaller button font size */
    border-radius: 40px;
    /* Slightly less rounded button */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card-description {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    flex-grow: 1;
    /* Allows description to take available space */
    margin-bottom: var(--spacing-lg);
}

.package-card-button {
    align-self: flex-start;
    /* Aligns button to the start if body is flex-column */
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.package-card-button:hover {
    background-color: #e65c00;
    /* Darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    color: var(--color-text-light);
}

/* Package Detail Page Hero */
.package-detail-hero {
    position: relative;
    height: 60vh;
    /* Shorter hero for detail pages */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    text-align: center;
    z-index: 1;
    /* Ensure content is above overlay */
}

.package-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    /* Dark gradient overlay */
    z-index: -1;
}

.package-detail-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.package-detail-hero .lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
}

/* Itinerary and details grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.list-group-item i {
    margin-right: 8px;
}

/* Tour Card Specific Styles (for Europe Tour Cards) */
.tour-card {
    background-color: var(--color-text-light);
    /* White background */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
    /* Enable 3D space for children */
    perspective: 1000px;
    /* Define perspective for 3D effect */
}

.tour-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tour-card-link {
    text-decoration: none;
    color: inherit;
}

.tour-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.tour-card-header {
    position: relative;
    height: 220px;
    /* Consistent height for header image */
    overflow: hidden;
}

.tour-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-card-img {
    transform: scale(1.05);
    /* Image zoom on hover */
}

.tour-card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: var(--color-text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.tour-card-details .rating i {
    color: var(--color-accent);
    /* Yellow stars */
    margin-right: 3px;
}

.tour-card-body {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
}

.itinerary-tag {
    background-color: #fff8e1;
    /* Light beige */
    color: var(--color-text-dark);
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.pricing {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    margin-top: auto;
    /* Pushes pricing to the bottom */
    margin-bottom: var(--spacing-lg);
}

.pricing .original-price {
    text-decoration: line-through;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.pricing .save-badge {
    background-color: #28a745;
    /* Green */
    color: var(--color-text-light);
    padding: 0.2em 0.6em;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing .final-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.ctas {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.ctas .request-callback {
    flex-grow: 1;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ctas .request-callback:hover {
    background-color: #e65c00;
    /* Darker orange */
    transform: translateY(-2px);
    color: var(--color-text-light);
}

.ctas .phone-icon-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.ctas .phone-icon-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
    transform: scale(1.1);
}

.destination-card {
    position: relative;
}

.destination-card .card-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: var(--spacing-lg);
}

.destination-card .card-title {
    color: var(--color-text-light);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
}

.destination-card .card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.btn-view-details {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background-color: var(--color-text-light);
    color: var(--color-primary);
    border-color: var(--color-text-light);
}

/* Category Navigation Styles */
.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: var(--spacing-md);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    color: var(--color-text-dark);
}

.category-nav-item:hover {
    background-color: var(--color-background-light);
    transform: translateY(-3px);
}

.category-nav-item.active {
    color: var(--color-primary);
    background-color: var(--color-background-light);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.category-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.category-nav-item:hover .category-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.category-nav-item.active .category-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.category-icon-wrapper i {
    font-size: 2rem;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.category-nav-item:hover .category-icon-wrapper i,
.category-nav-item.active .category-icon-wrapper i {
    color: var(--color-text-light);
}

.category-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.trending-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-size: 0.7rem;
    padding: 0.2em 0.5em;
    border-radius: 5px;
    transform: rotate(10deg);
    box-shadow: 0 2px 5px rgba(255, 107, 0, 0.4);
}

/* Social Proof & Awards Section Styles */
.award-banner {
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    /* Gold gradient */
    border-radius: 10px;
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--color-text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.award-banner .gold-trophy {
    font-size: 3rem;
    color: #b8860b;
    /* Darker gold for trophy */
}

.award-banner .award-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.award-banner .award-logo {
    max-height: 40px;
    filter: grayscale(100%);
    /* Make logo grayscale to fit theme */
}

.award-banner .award-logo-placeholder {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.social-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: var(--spacing-lg);
    background-color: var(--color-background-light);
    border-radius: 10px;
    margin-top: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-metrics p,
.social-metrics div {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.social-metrics i {
    color: var(--color-primary);
}

.customer-review-card {
    background-color: var(--color-text-light);
    border-radius: 15px;
    padding: var(--spacing-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    /* Ensure card fills height in row */
    display: flex;
    flex-direction: column;
}

.customer-review-card .review-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.customer-review-card .user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--spacing-md);
    border: 3px solid var(--color-primary);
}

.customer-review-card .user-info {
    flex-grow: 1;
}

.customer-review-card .user-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.customer-review-card .review-date {
    font-size: 0.85rem;
    color: var(--color-secondary);
}

.customer-review-card .star-rating {
    display: flex;
    color: var(--color-accent);
    /* Yellow stars */
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    /* Allows text to grow */
}

.travel-photo-gallery {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.travel-photo-gallery .gallery-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.travel-photo-gallery .gallery-thumbnail:hover {
    transform: scale(1.1);
}

/* Feature Card (keeping existing for now, as it might be used elsewhere) */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.feature-card i {
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    font-size: 3.5rem;
    /* Adjusted icon size */
}

/* --- Carousel Navigation (if still used elsewhere) --- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--color-primary);
    border-radius: 50%;
    padding: var(--spacing-sm);
}

/* --- Testimonials --- */
/* The existing testimonial-card styles are for a different context (dark background).
   The new .customer-review-card will replace its functionality in the new social-proof section. */
.testimonial-card-old {
    /* Renamed to avoid conflict */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: var(--spacing-xl);
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card-old img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: var(--spacing-lg);
    border: 4px solid var(--color-primary);
    /* Changed to primary orange */
}

.testimonial-card-old p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- Instagram Section (if still used elsewhere) */
.instagram-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    border-radius: 8px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.instagram-item:hover img {
    filter: brightness(1);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
footer {
    background-color: var(--color-background-dark);
    /* Darker footer */
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}

footer h5 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

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

footer ul li {
    margin-bottom: var(--spacing-xs);
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--color-primary);
}

footer .fab {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .fab:hover {
    color: var(--color-primary);
}

hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: var(--spacing-xl) 0;
}

/* --- Utility Classes & Responsive Design --- */
.text-light-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3.5rem;
        /* Slightly larger for tablets */
    }

    .hero-section p.lead {
        font-size: 1.5rem;
        /* Slightly larger for tablets */
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p.lead {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-section .parallax-bg {
        background-attachment: scroll;
        /* Change to scroll for better mobile performance */
    }

    .feature-card {
        margin-bottom: var(--spacing-md);
    }

    .instagram-item {
        margin-bottom: var(--spacing-sm);
    }

    /* Adjust spacing for sections on smaller screens */
    section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p.lead {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .package-card-title {
        font-size: 1.4rem;
    }

    .package-card-price {
        font-size: 1.4rem;
    }

    .btn-cta {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }

    .package-card-category,
    .package-card-duration {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .package-card-body {
        padding: var(--spacing-md);
    }

    .package-card-pricing {
        flex-direction: column;
        /* Stack price and button */
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .package-card-price {
        margin-bottom: var(--spacing-xs);
    }

    .ctas {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .ctas .phone-icon-btn {
        width: 100%;
        height: auto;
        padding: var(--spacing-sm);
        border-radius: 50px;
    }

    .scroll-indicator {
        display: none;
        /* Hide scroll indicator on very small screens */
    }
}

/* Simple Animation for Bootstrap dropdowns (optional) */
.dropdown-menu {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(10px);
    display: block;
    /* Required for transition, will hide with JS */
    visibility: hidden;
}

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

/* ========================================
   FEATURED STORIES CAROUSEL STYLES
   ======================================== */

.story-card {
    flex-shrink: 0;
    width: 280px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.story-media-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;

}

/* Carousel container behaviour */
.stories-carousel-container {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 12px 8px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    align-items: center;
}

.stories-carousel-container::-webkit-scrollbar {
    height: 6px;
}

.stories-carousel-container .story-card {
    scroll-snap-align: center;
}

/* Make story cards portrait by default if available */
.story-card {
    width: 220px;
    /* fallback */
    aspect-ratio: 9/16;
}

/* Portrait modal tweaks */
#videoModal>div>div {
    max-width: 420px;
}

.story-media-container img,
.story-media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.story-location-badge {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.story-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 15px;
    max-height: 60px;
    overflow: hidden;
    z-index: 2;
}

.story-caption-text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stories Carousel Container */
.stories-carousel-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 0, 0.3) transparent;
}

.stories-carousel-container::-webkit-scrollbar {
    height: 4px;
}

.stories-carousel-container::-webkit-scrollbar-track {
    background: transparent;
}

.stories-carousel-container::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.3);
    border-radius: 2px;
}

.stories-carousel-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 0, 0.6);
}

/* Modal Styles */
#storyVideoModal {
    z-index: 10000 !important;
}

#storyVideoModal .modal-content {
    background: #0a0a0a;
    border: none;
}

/* --- Signature Footer Design --- */
.signature-footer {
    background: #0a0a0a;
    color: #888;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
}

.footer-top {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    margin-bottom: 20px;
    display: block;
}

.footer-brand span {
    color: #FF6B00;
}

.footer-link-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #FF6B00;
    border-color: #FF6B00;
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    transform: translateY(-5px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.admin-login-link {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
}

.admin-login-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-watermark {
        font-size: 4rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
    background-color: #ffffff;
}

.why-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 133, 51, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.why-icon i {
    font-size: 2.2rem;
    color: var(--color-primary);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: var(--color-primary);
    transform: rotateY(180deg);
}

.why-card:hover .why-icon i {
    color: #ffffff;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Glassmorphism accent */
.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* --- Traveler Reviews Section --- */
.traveller-reviews-section {
    background-color: #fcfcfc;
}

.review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.review-header {
    margin-bottom: 20px;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8533 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.user-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text-dark);
}

.review-stars {
    font-size: 0.85rem;
    margin-top: 5px;
}

.review-body {
    flex-grow: 1;
    position: relative;
}

.quote-icon {
    font-size: 1.8rem;
    color: rgba(255, 107, 0, 0.1);
    display: block;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.review-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    font-weight: 500;
}

/* --- Dynamic Offer Section (Premium Redesign) --- */
.offer-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #fdfdfd;
}

.offer-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 0;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    min-height: 400px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 300px;
}

.offer-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 1) 100%);
}

.offer-content-side {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.offer-badge-wrap {
    margin-bottom: 25px;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.offer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -1px;
}

.offer-discount-tag {
    font-size: 4rem;
    font-weight: 900;
    color: #FF6B00;
    margin-bottom: 15px;
    display: block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
}

.offer-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 90%;
}

.offer-main-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.timer-box-premium {
    background: #0f0f0f;
    border-radius: 20px;
    padding: 20px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timer-label-top {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF6B00;
    font-weight: 700;
    margin-bottom: 12px;
}

.countdown-flex {
    display: flex;
    gap: 20px;
}

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

.c-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.c-unit {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.c-sep {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.btn-premium-offer {
    background: #FF6B00;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-premium-offer:hover {
    background: #e66000;
    transform: scale(1.05);
    color: white;
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
}

@media (max-width: 1200px) {
    .offer-content h2 {
        font-size: 2.8rem;
    }

    .offer-discount-tag {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .offer-card {
        flex-direction: column;
    }

    .offer-image-side {
        min-height: 350px;
    }

    .offer-image-overlay {
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, transparent 100%);
    }

    .offer-content-side {
        padding: 40px 30px;
        text-align: center;
    }

    .offer-subtitle {
        max-width: 100%;
    }

    .offer-main-actions {
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .offer-content h2 {
        font-size: 2.2rem;
    }

    .offer-discount-tag {
        font-size: 2.8rem;
    }

    .timer-box-premium {
        width: 100%;
    }

    .btn-premium-offer {
        width: 100%;
        text-align: center;
    }
}

/* --- Offer Carousel Support --- */
.offer-carousel-wrapper {
    position: relative;
    min-height: 480px;
}

.offer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.offer-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
}

.offer-nav-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background: rgba(255, 107, 0, 0.3);
}

.nav-dot.active {
    background: #FF6B00;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

@media (max-width: 992px) {
    .offer-carousel-wrapper {
        min-height: auto;
    }
}