/* Compiled from SCSS */

/* Variables & Base */
:root {
    --theme-red: #C3110C;
    --theme-dark-blue: #1A3263;
    --theme-muted-blue: #547792;
    --theme-very-dark-blue: #25343F;
    --theme-white: #FFFFFF;
    --primary-color: #1A3263;
    --secondary-color: #547792;
    --accent-color: #C3110C;
    --background-dark: #25343F;
    --text-light: #FFFFFF;
    --font-stack: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

a {
    color: #1A3263;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.navbar.bg-dark {
    background-color: #2b3e50 !important;
    /* Slightly lighter than #25343F for better contrast with dark blue */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

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

/* Dropdown Premium Styling */
.dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 0;
    margin-top: 15px !important;
    border-top: 3px solid var(--theme-red);
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    color: var(--theme-dark-blue);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(195, 17, 12, 0.05);
    color: var(--theme-red);
    padding-left: 1.8rem;
}

.dropdown-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0.5rem 0;
}

/* Show dropdown on hover Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/* Components */
.btn-primary {
    background-color: #1A3263;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #122244;
}

.btn-light {
    background-color: #FFFFFF;
    color: #1A3263;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-accent {
    background-color: #C3110C;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #C3110C;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #920d09;
    border-color: #920d09;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card .card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card .card-body {
    padding: 1.5rem;
}

.card .card-body .card-title {
    color: #1A3263;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card .card-body .card-text {
    color: #333;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Animation Optimized */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@keyframes hero-fade-in-out {
    0% {
        opacity: 0;
    }

    6.25% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Sections - Hero */
.hero-section {
    position: relative;
    height: 85vh;
    /* Increased for premium feel */
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background-color: #000;
}

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

.hero-section .hero-slides .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: hero-fade-in-out 16s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.1);
    /* Start slightly zoomed for Ken Burns */
    animation: ken-burns 16s infinite alternate;
}

.hero-section .hero-slides .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

@keyframes ken-burns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

/* Specific start times for each slide */
.hero-section .hero-slides .hero-slide:nth-child(1) {
    animation-delay: 0s;
    --slide-delay: 0s;
}

.hero-section .hero-slides .hero-slide:nth-child(2) {
    animation-delay: 4s;
    --slide-delay: 4s;
}

.hero-section .hero-slides .hero-slide:nth-child(3) {
    animation-delay: 8s;
    --slide-delay: 8s;
}

.hero-section .hero-slides .hero-slide:nth-child(4) {
    animation-delay: 12s;
    --slide-delay: 12s;
}

/* No longer needed on parent */
.hero-section::before {
    display: none;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    /* Above overlay */
    max-width: 800px;
}

/* Content Animations */
@keyframes content-slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    3% {
        opacity: 0;
        transform: translateY(50px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    22% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }

    25% {
        opacity: 0;
        transform: translateY(-20px);
        filter: blur(5px);
    }

    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.hero-section .hero-content h1,
.hero-section .hero-content p,
.hero-section .hero-content .btn,
.hero-section .hero-content span {
    opacity: 0;
    /* Start hidden */
    animation: content-slide-up 16s infinite;
    animation-fill-mode: both;
}

.hero-section .hero-content span {
    animation-delay: calc(var(--slide-delay) + 0.2s);
}

.hero-section .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    animation-delay: calc(var(--slide-delay) + 0.5s);
}

.hero-section .hero-content p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation-delay: calc(var(--slide-delay) + 0.8s);
}

.hero-section .hero-content .btn {
    animation-delay: calc(var(--slide-delay) + 1.1s);
}

/* Sections - Features (Why Choose Us) */
.features-section {
    position: relative;
    background-color: #EEEEEE;
    /* Theme Light Gray */
}

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

.feature-card {
    background-color: #FFFFFF;
    /* Fallback */
    background-size: cover;
    background-position: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft, premium shadow */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Slower, smoother hover */
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: white;
    /* Default text to white for BG images */
}

/* Overlay for text readability */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Darker overlay */
    z-index: 1;
    transition: all 0.5s ease;
}

.feature-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.5);
    /* Lighten on hover */
}

/* Helper to ensure text sits above overlay */
.card-content {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    /* Lift and subtle zoom */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.feature-card .icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    /* Glassy background */
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover .icon-wrapper {
    background-color: #C3110C;
    /* Fill with accent color on hover */
    transform: scale(1.1) rotate(5deg);
    /* Playful rotation */
    border-color: #C3110C;
    box-shadow: 0 0 20px rgba(195, 17, 12, 0.5);
    /* Glow */
}

.feature-card .icon-wrapper i {
    font-size: 2.5rem;
    color: #FFFFFF;
    /* White by default on dark bg */
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
    color: #FFFFFF;
    /* Keep white */
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    /* White text */
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: #e0e0e0;
    /* Off-white for description */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mosaic Grid Variance */
.features-section-mosaic {
    background-color: #FFFFFF;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

/* Creating the asymmetrical layout */
.mosaic-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mosaic-card.wide {
    grid-column: span 2;
}

/* Featured styles */
.mosaic-card.featured-gradient {
    background: linear-gradient(135deg, #1A3263 0%, #25343F 100%);
    color: white;
}

.mosaic-card.featured-gradient h3,
.mosaic-card.featured-gradient p {
    color: white;
}

.mosaic-card.featured-gradient .icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
}

.mosaic-card.featured-gradient .icon-wrapper i {
    color: #C3110C;
    /* Red accent still pops */
}

/* Image background style */
.mosaic-card.featured-image {
    background-size: cover;
    background-position: center;
    color: white;
}

.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.mosaic-card.featured-image .mosaic-content {
    position: relative;
    z-index: 2;
}

/* General Mosaic Card Styling */
.mosaic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mosaic-content {
    text-align: left;
    /* Align left for modern feel */
}

.mosaic-card .icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    /* Soft square */
    background-color: rgba(195, 17, 12, 0.1);
    margin-bottom: 1.5rem;
}

.mosaic-card .icon-wrapper i {
    font-size: 2rem;
    color: #C3110C;
}

.mosaic-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1A3263;
}

.mosaic-card p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Dark/Image Specific Overrides */
.text-white h3 {
    color: white;
}

.text-white p {
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 992px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
    }

    .mosaic-card.wide {
        grid-column: span 1;
    }
}

/* Advanced About Section */
.blob-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    z-index: 2;
}

.blob-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-pulse 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.blob-image:hover {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: scale(1.02);
}

@keyframes blob-pulse {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: #C3110C;
    top: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: #1A3263;
    bottom: 20px;
    right: 20px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.text-accent {
    color: #C3110C;
}

/* Destinations - Split Layout & Carousel */
.destination-carousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-carousel .carousel-item {
    position: relative;
}

.destination-carousel .carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.destination-carousel .carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem !important;
    z-index: 2;
    text-align: left;
}

.destination-carousel .carousel-caption h3 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.destination-carousel .carousel-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
}

.destination-carousel .carousel-control-prev,
.destination-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    /* Hide by default, show on hover */
    transition: all 0.3s ease;
}

.destination-carousel:hover .carousel-control-prev,
.destination-carousel:hover .carousel-control-next {
    opacity: 1;
}

.destination-carousel .carousel-control-prev {
    left: 20px;
}

.destination-carousel .carousel-control-next {
    right: 20px;
}

.destination-carousel .carousel-control-prev-icon,
.destination-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    background-size: 50%, 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.destination-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.destination-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #C3110C;
    /* Accent color */
    border-color: #C3110C;
    transform: scale(1.1);
}

/* Base tweaks */
.text-secondary {
    color: #6c757d !important;
}

.opacity-90 {
    opacity: 0.9;
}

/* Wave Footer */
.footer-wave-section {
    background-color: #1A3263;
    /* Theme Dark Blue */
    position: relative;
    color: white;
    z-index: 1;
    /* Ensure footer background stack */
}

/* Ocean Waves Animation */
.ocean-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-100%);
    /* Move above the footer */
    z-index: 1;
    overflow: hidden;
}

.ocean-waves .waves {
    width: 100%;
    height: 100px;
    min-height: 100px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Mobile Polish for Waves */
@media (max-width: 768px) {
    .ocean-waves {
        height: 60px;
        min-height: 60px;
    }

    .ocean-waves .waves {
        height: 60px;
        min-height: 60px;
    }
}

/* Footer Links */
.text-accent-light {
    color: #e2e8f0;
    /* Soft blue-white */
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: block;
    /* Full width hover area */
    backface-visibility: hidden;
    /* Prevent jitter */
}

.footer-links a:hover {
    color: #C3110C;
    /* Red Accent */
    transform: translateX(5px);
}

/* Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #C3110C;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(195, 17, 12, 0.4);
}

.contact-info li {
    display: flex;
    align-items: center;
}

/* Modern CTA Section */
/* Dark Minimal CTA Section */
.cta-dark-minimal {
    position: relative;
    padding: 5rem 0;
    /* Compact high-impact spacing */
    background: linear-gradient(135deg, #1A3263 0%, #0b162a 100%);
    overflow: hidden;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(195, 17, 12, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(84, 119, 146, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.cta-dark-minimal .text-secondary-light {
    color: #a8c0d3;
    /* Soft blue-gray for contrast */
}

/* Glow Button (Pulse Effect) */
.btn-glow {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.btn-glow:hover {
    background: white;
    color: #1A3263;
    border-color: white;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-glow i {
    transition: transform 0.3s ease;
}

.btn-glow:hover i {
    transform: translateX(5px);
}

.display-5 {
    font-size: 2.5rem;
    /* Adjusted for compactness */
}

@media (max-width: 991px) {
    .cta-dark-minimal {
        padding: 4rem 0;
        text-align: center;
    }

    .cta-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* ============================================
   TOUR PREVIEW CARDS (Home Page)
   ============================================ */
.tour-preview-section {
    background: #f8f9fa;
}

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

.tour-card {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
    cursor: pointer;
}

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

.tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.tour-card:hover .tour-card-overlay {
    background: linear-gradient(to top, rgba(26, 50, 99, 0.95) 0%, rgba(26, 50, 99, 0.3) 60%, transparent 100%);
}

.tour-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-content {
    transform: translateY(0);
}

.tour-card-tag {
    display: inline-block;
    background: rgba(195, 17, 12, 0.9);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.tour-card-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tour-card-duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.tour-card-btn {
    display: inline-block;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    border-bottom: 2px solid #C3110C;
    padding-bottom: 2px;
}

.tour-card:hover .tour-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.tour-card-btn i {
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-card-btn i {
    transform: translateX(5px);
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A3263 0%, #0b162a 100%);
    overflow: hidden;
    color: white;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(195, 17, 12, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(84, 119, 146, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.stat-item {
    padding: 1.5rem;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #C3110C;
}

.stat-item:hover .stat-icon {
    background: #C3110C;
    border-color: #C3110C;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(195, 17, 12, 0.4);
}

.stat-item:hover .stat-icon i {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(195, 17, 12, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #f0a500;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A3263 0%, #547792 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #1A3263;
    background: transparent;
    color: #1A3263;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-nav-btn:hover {
    background: #1A3263;
    color: white;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #25343F 0%, #1A3263 100%);
}

.newsletter-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(195, 17, 12, 0.3) !important;
    border-color: #C3110C !important;
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 50, 99, 0.85) 0%, rgba(11, 22, 42, 0.9) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.page-breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.page-breadcrumb li {
    color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: #C3110C;
}

.page-breadcrumb li+li::before {
    content: '›';
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   TOUR LISTING CARDS (tours.html)
   ============================================ */
.tour-listing-section {
    background: #f8f9fa;
}

.tour-listing-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tour-listing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.tour-listing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.tour-listing-card:hover .tour-listing-overlay {
    background: linear-gradient(to top, rgba(26, 50, 99, 0.98) 0%, rgba(26, 50, 99, 0.4) 50%, transparent 100%);
}

.tour-listing-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.tour-listing-tag {
    display: inline-block;
    background: #C3110C;
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.tour-listing-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tour-listing-content .route-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tour-listing-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tour-listing-meta span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tour-listing-meta i {
    color: #C3110C;
}

.tour-listing-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tour-listing-btn:hover {
    background: #C3110C;
    border-color: #C3110C;
    color: white;
    transform: translateX(5px);
}

/* ============================================
   TOUR DETAIL PAGE
   ============================================ */
.tour-detail-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.tour-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.tour-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-duration-badge {
    display: inline-block;
    background: #C3110C;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tour-detail-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tour-route-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.tour-route-line i {
    color: #C3110C;
    margin: 0 0.3rem;
}

/* Tour Quick Facts Sidebar */
.quick-facts {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quick-facts h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A3263;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #C3110C;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.fact-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(195, 17, 12, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fact-icon i {
    color: #C3110C;
    font-size: 1.2rem;
}

.fact-item small {
    display: block;
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-item strong {
    color: #1A3263;
    font-size: 0.95rem;
}

/* Tour Highlights */
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(195, 17, 12, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #C3110C;
    font-size: 1rem;
}

.highlight-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1A3263;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Itinerary Timeline */
.itinerary-section {
    background: #f8f9fa;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #C3110C, #1A3263);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 4rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 4rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #C3110C;
    border-radius: 50%;
    top: 2rem;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 0 0 3px rgba(195, 17, 12, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

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

.timeline-day {
    display: inline-block;
    background: linear-gradient(135deg, #1A3263, #547792);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.timeline-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A3263;
    margin-bottom: 0.5rem;
}

.timeline-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Inclusions / Exclusions */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.inclusion-box,
.exclusion-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.inclusion-box {
    border-top: 4px solid #28a745;
}

.exclusion-box {
    border-top: 4px solid #dc3545;
}

.inclusion-box h4,
.exclusion-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.inclusion-box h4 {
    color: #28a745;
}

.exclusion-box h4 {
    color: #dc3545;
}

.inclusion-list,
.exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-list li,
.exclusion-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #444;
}

.inclusion-list li i {
    color: #28a745;
    font-size: 1rem;
}

.exclusion-list li i {
    color: #dc3545;
    font-size: 1rem;
}

/* Quote Form */
.quote-form-section {
    background: linear-gradient(135deg, #1A3263 0%, #0b162a 100%);
    color: white;
}

.quote-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.quote-form .form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.quote-form .form-control,
.quote-form .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #C3110C;
    box-shadow: 0 0 0 3px rgba(195, 17, 12, 0.2);
    color: white;
}

.quote-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.quote-form .form-select option {
    background: #1A3263;
    color: white;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-info-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(195, 17, 12, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .card-icon {
    background: #C3110C;
    box-shadow: 0 0 20px rgba(195, 17, 12, 0.3);
}

.contact-info-card .card-icon i {
    font-size: 1.8rem;
    color: #C3110C;
    transition: color 0.3s ease;
}

.contact-info-card:hover .card-icon i {
    color: white;
}

.contact-info-card h5 {
    font-weight: 700;
    color: #1A3263;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Booking Form */
.booking-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A3263;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #C3110C;
}

.booking-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: #1A3263;
    box-shadow: 0 0 0 3px rgba(26, 50, 99, 0.1);
}

/* Trust Section */
.trust-card {
    text-align: center;
    padding: 2rem;
}

.trust-card .trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1A3263 0%, #547792 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(26, 50, 99, 0.3);
}

.trust-card .trust-icon i {
    font-size: 2rem;
    color: white;
}

.trust-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A3263;
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Related Tours */
.related-tour-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.related-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.related-tour-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.related-tour-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.related-tour-body {
    padding: 1.5rem;
}

.related-tour-body h5 {
    font-weight: 700;
    color: #1A3263;
    margin-bottom: 0.25rem;
}

.related-tour-body p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.related-tour-body a {
    color: #C3110C;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.related-tour-body a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT PAGE – SIDEBAR & FORM OVERRIDES
   ============================================ */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
    padding: 1.5rem;
    height: auto;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(195, 17, 12, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: #C3110C;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: #C3110C;
    box-shadow: 0 0 20px rgba(195, 17, 12, 0.3);
}

.contact-info-card:hover .contact-info-icon i {
    color: white;
}

.social-connect-box {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 0.5rem;
}

.social-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1A3263;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.social-circle-btn:hover {
    background: #C3110C;
    color: white;
    border-color: #C3110C;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(195, 17, 12, 0.25);
}

/* Booking Form (contact page) */
.booking-form {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: #1A3263;
    box-shadow: 0 0 0 3px rgba(26, 50, 99, 0.1);
}

.booking-form .input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: #1A3263;
}

.booking-form .input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
}

/* Related Tour Span links */
.related-tour-body span {
    color: #C3110C;
    font-weight: 600;
    font-size: 0.9rem;
}

.related-tour-card:hover .related-tour-body span {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE – ALL NEW SECTIONS
   ============================================ */
@media (max-width: 991px) {
    .tour-card {
        height: 350px;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .tour-detail-hero-content h1 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 5rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
        right: auto;
    }

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

    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .tour-card {
        height: 300px;
    }

    .tour-listing-card {
        height: 400px;
    }

    .page-hero {
        height: 35vh;
        min-height: 280px;
    }

    .tour-detail-hero {
        height: 40vh;
        min-height: 300px;
        background-attachment: scroll;
    }

    .tour-detail-hero-content h1 {
        font-size: 2rem;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .booking-form-wrapper {
        padding: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 3.5rem !important;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 11px;
    }

    .tour-route-line {
        font-size: 0.85rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-stats {
    background: linear-gradient(135deg, var(--theme-dark-blue) 0%, #2b3e50 100%);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 20px;
    color: #fff;
}

.feature-box-v2 {
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.feature-box-v2:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--theme-red);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(195, 17, 12, 0.1);
    color: var(--theme-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    transition: transform 0.5s ease;
}

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

.team-info {
    padding: 25px;
    background: #fff;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--theme-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

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

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--theme-dark-blue);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title:hover {
    color: var(--theme-red);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more-link {
    color: var(--theme-red);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    letter-spacing: 0.5px;
    color: var(--theme-dark-blue);
}

/* Post Hero Badge Fix */
.page-hero .blog-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: inline-block !important;
    margin-bottom: 20px !important;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--theme-dark-blue);
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--theme-red);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--theme-red);
    padding-left: 5px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 8px 15px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--theme-red);
    color: #fff;
}

/* Newsletter Gradient Strip Enhancement */
.newsletter-strip.bg-gradient {
    background: linear-gradient(135deg, #1A3263 0%, #2b3e50 100%) !important;
}

/* ============================================
   DESIGN DENSITY & REFINEMENT UTILITIES
   ============================================ */
.section-padding {
    padding: 80px 0;
}

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

.bg-light-gray {
    background-color: #F8F9FA !important;
}

.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent dark overlay */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.drop-shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.drop-shadow-lg:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18) !important;
}

/* Shape Dividers */
/* Full Width CTA Enhancement */
.cta-dark-minimal {
    position: relative !important;
    padding: 100px 0 !important;
    background-image: url('../images/banner/1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    border-top: none !important;
    margin-top: -1px;
    /* Remove potential sub-pixel white gaps */
}

.newsletter-section {
    border-bottom: none !important;
}

.hero-section {
    border-bottom: none !important;
}

.cta-white-minimal {
    background-color: #FFFFFF !important;
    padding: 80px 0 !important;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle top border for definition */
}

.cta-dark-minimal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.cta-dark-minimal .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   ADDITIONAL UTILITIES & FIXES
   ============================================ */
.text-accent {
    color: var(--theme-red) !important;
}

.text-accent-light {
    color: #ff5252 !important;
}

.bg-accent {
    background-color: var(--theme-red) !important;
}

.bg-accent-light {
    background-color: #ff5252 !important;
}

.text-secondary-light {
    color: #b0bec5 !important;
}

/* Glow Button Effect */
.btn-glow {
    background: var(--theme-red) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(195, 17, 12, 0.4);
    transition: all 0.3s ease !important;
}

.btn-glow:hover {
    background: #920d09 !important;
    box-shadow: 0 0 25px rgba(195, 17, 12, 0.6);
    transform: translateY(-2px);
}

/* Testimonial Enhancements */
.carousel-nav-btn {
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    background-color: var(--theme-red) !important;
    border-color: var(--theme-red) !important;
    color: white !important;
    transform: scale(1.1);
}

/* Glassmorphism Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-stars .bi-star-fill {
    font-size: 0.85rem;
    margin: 0 1px;
}

/* Fix for letter spacing on headings */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-5 {
    letter-spacing: 5px;
}

/* Fix for testimonial quote on mobile */
@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 1.25rem !important;
    }

    .display-4 {
        font-size: 2.5rem !important;
    }
}

/* Dream Tour CTA Section */
.cta-dream-tour {
    background-color: var(--background-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-dream-tour .cta-label {
    color: #C3110C;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.cta-dream-tour .cta-title {
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.cta-dream-tour .cta-title span.italic {
    font-style: italic;
    font-weight: 400;
    color: #e0e0e0;
}

.cta-dream-tour .btn-contact {
    background-color: #C3110C;
    color: #FFFFFF;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(195, 17, 12, 0.3);
}

.cta-dream-tour .btn-contact:hover {
    background-color: #a00e0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(195, 17, 12, 0.5);
}

@media (max-width: 991px) {
    .cta-dream-tour {
        text-align: center;
    }

    .cta-dream-tour .btn-contact {
        margin-top: 30px;
    }
}

/* Redesign Testimonials */
.tripadvisor-cta-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.tripadvisor-cta-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-tripadvisor {
    background-color: #00af87;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #00af87;
    text-decoration: none;
}

.btn-tripadvisor:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.user-icon-red {
    width: 55px;
    height: 55px;
    background-color: #C3110C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

@media (max-width: 991px) {
    .tripadvisor-cta-block {
        margin-bottom: 2rem;
    }
}

/* Elfsight TripAdvisor Testimonials Unique Styles */
.dm-testimonials-container {
    color: white;
}

.dm-testimonials-wrapper .tripadvisor-btn {
    background-color: var(--theme-red);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--theme-red);
    text-decoration: none;
    margin-top: 20px;
}

.dm-testimonials-wrapper .tripadvisor-btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.dm-testimonials-wrapper .elfsight-widget-container {
    background: transparent !important;
}

/* Ensure widget container children are also transparent if needed */
.dm-testimonials-wrapper [class*="elfsight-app"] {
    background-color: transparent !important;
}

@media (max-width: 991px) {
    .dm-testimonials-wrapper .col-lg-4 {
        text-align: center;
        margin-bottom: 40px;
    }
}

/* TripAdvisor Icon Custom Class */
.bi-tripadvisor {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.006 4.295c-2.67 0-5.338.784-7.645 2.353H0l1.963 2.135a5.997 5.997 0 0 0 4.04 10.43 5.976 5.976 0 0 0 4.075-1.6L12 19.705l1.922-2.09a5.972 5.972 0 0 0 4.072 1.598 6 6 0 0 0 6-5.998 5.982 5.982 0 0 0-1.957-4.432L24 6.648h-4.35a13.573 13.573 0 0 0-7.644-2.353zM12 6.255c1.531 0 3.063.303 4.504.903C13.943 8.138 12 10.43 12 13.1c0-2.671-1.942-4.962-4.504-5.942A11.72 11.72 0 0 1 12 6.256zM6.002 9.157a4.059 4.059 0 1 1 0 8.118 4.059 4.059 0 0 1 0-8.118zm11.992.002a4.057 4.057 0 1 1 .003 8.115 4.057 4.057 0 0 1-.003-8.115zm-11.992 1.93a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256zm11.992 0a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.006 4.295c-2.67 0-5.338.784-7.645 2.353H0l1.963 2.135a5.997 5.997 0 0 0 4.04 10.43 5.976 5.976 0 0 0 4.075-1.6L12 19.705l1.922-2.09a5.972 5.972 0 0 0 4.072 1.598 6 6 0 0 0 6-5.998 5.982 5.982 0 0 0-1.957-4.432L24 6.648h-4.35a13.573 13.573 0 0 0-7.644-2.353zM12 6.255c1.531 0 3.063.303 4.504.903C13.943 8.138 12 10.43 12 13.1c0-2.671-1.942-4.962-4.504-5.942A11.72 11.72 0 0 1 12 6.256zM6.002 9.157a4.059 4.059 0 1 1 0 8.118 4.059 4.059 0 0 1 0-8.118zm11.992.002a4.057 4.057 0 1 1 .003 8.115 4.057 4.057 0 0 1-.003-8.115zm-11.992 1.93a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256zm11.992 0a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256z'/%3E%3C/svg%3E") no-repeat center;
}