/* 
* Newa Yatra - Complete Stylesheet
* Version: 3.0 - Integrated Page Specific Styles
*/

/* ============================================
   CSS Variables & Reset
============================================ */
:root {
    /* Primary Colors */
    --primary-color: #c66b05;
    --secondary-color: #8f1402;
    --accent-color: #ff6b35;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #8f1402;
    
    /* Neutral Colors */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-reverse: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    
    /* Typography */
    --font-primary: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px var(--spacing-sm);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-sm);
}

/* ============================================
   Typography
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.text-primary {
    color: var(--primary-color) !important;
    font-size: 2rem;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-white {
    color: white !important;
    font-weight: bold !important;
}

.text-center {
    text-align: center;
}

/* ============================================
   Buttons
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-reverse);
    color: white;
}

.btn-secondary {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #e55a2e;
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   Navigation - FIXED POSITION REMOVED
============================================ */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    padding: 0rem 0;
    position: relative;
    z-index: 1000;
    height:80px;
}
 .sticky-navbar {
    position: fixed !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}
        

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-primary);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary-color);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--dark-color);
}

.dropdown-item:hover {
    background-color: rgba(198, 107, 5, 0.1);
    color: var(--primary-color);
}

#next
{
    background-color: #ddcece;
    border-radius:10px;
    padding: 10px;
}

/* ============================================
   Common Components
============================================ */

/* Breadcrumb - Common for all pages */
.breadcrumb {
    padding: 15px 0;
    background: var(--light-color);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child):after {
    content: '/';
    margin: 0 10px;
    color: var(--gray-color);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}



/* ============================================
   HERO SLIDER - COMPLETELY REDESIGNED
============================================ */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -60px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 86px);
    min-height: 600px;
    max-height: 800px;
}

#heroCarousel {
    height: 100%;
    width: 100%;
}

#heroCarousel .carousel-inner {
    height: 100%;
    width: 100%;
}

#heroCarousel .carousel-item {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.carousel-item.active .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    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.5) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 20px;
}

.slide-content-inner {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    color: white;
    padding-top: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    color: white !important;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.3s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(198, 107, 5, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    opacity: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev {
    left: 0;
}

#heroCarousel .carousel-control-next {
    right: 0;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 25px;
    height: 25px;
    background-size: 25px 25px;
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 40px;
    margin: 0;
    gap: 10px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-slider {
        height: calc(100vh - 76px);
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: calc(100vh - 72px);
        min-height: 450px;
        max-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 5px;
    }
    
    #heroCarousel .carousel-indicators {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: calc(100vh - 68px);
        min-height: 400px;
        max-height: 550px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0;
    }
}


/* ============================================
   Page Specific Styles
============================================ */

/* === ABOUT PAGE === */
.hero-about {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, rgba(198, 107, 5, 0.1) 0%, rgba(142, 20, 2, 0.05) 100%);
}

.about-title {
    font-size: 3.5rem;
    color: var(--primary-color) !important;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
}

.stat-card {
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-desc {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Story Section */
.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    position: absolute;
    left: -110px;
    top: 0;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.timeline-content h5 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    padding: 40px 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.mission-card {
    border-top-color: var(--primary-color);
}

.vision-card {
    border-top-color: var(--secondary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

.mission-card .card-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.vision-card .card-icon {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.card-text {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.point-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.point-item:last-child {
    margin-bottom: 0;
}

/* Values Section */
.value-card {
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(198, 107, 5, 0.1), rgba(142, 20, 2, 0.05));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-text {
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(198, 107, 5, 0.1), rgba(142, 20, 2, 0.05));
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-bio {
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-expertise {
    margin-top: 10px;
}

/* Why Choose Us - About Page */
.why-item {
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(198, 107, 5, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.why-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.why-text {
    color: var(--gray-color);
    line-height: 1.6;
}

.why-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Certification Section */
.certification-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.certification-item {
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.certification-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(198, 107, 5, 0.1), rgba(142, 20, 2, 0.05));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.cert-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.cert-text {
    color: var(--gray-color);
    margin: 0;
}

/* CTA Section - About Page */
.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* === DESTINATIONS PAGE === */
.destinations-hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, rgba(142, 20, 2, 0.1) 0%, rgba(198, 107, 5, 0.05) 100%);
    text-align: center;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px 0;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--light-color);
    border-radius: 50px;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Destination Cards - Enhanced for Destinations Page */
.destination-card-enhanced {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.destination-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-image-enhanced {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card-enhanced:hover .destination-image-enhanced img {
    transform: scale(1.1);
}

.destination-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card-enhanced:hover .destination-overlay-enhanced {
    opacity: 1;
}

.destination-info-enhanced {
    padding: 20px;
}

.destination-title-enhanced {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    min-height: 60px;
}

.destination-desc-enhanced {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 80px;
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.meta-item {
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(198, 107, 5, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}

/* Map Container */
.map-container {
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.map-visual {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border: 2px solid var(--light-color);
    margin-bottom: 20px;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.map-point .point {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-point:hover .point {
    transform: scale(1.5);
    background: var(--secondary-color);
}

.map-point .point-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-point:hover .point-label {
    opacity: 1;
}

.map-info {
    text-align: center;
}

.map-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.map-text {
    color: var(--gray-color);
    margin: 0;
}

/* Season Cards */
.season-card {
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 5px solid;
    height: 100%;
}

.season-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.season-card.spring {
    border-top-color: #28a745;
}

.season-card.summer {
    border-top-color: #17a2b8;
}

.season-card.autumn {
    border-top-color: #fd7e14;
}

.season-card.winter {
    border-top-color: #6f42c1;
}

.season-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.season-card.spring .season-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.season-card.summer .season-icon {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.season-card.autumn .season-icon {
    background: rgba(253, 126, 20, 0.1);
    color: #fd7e14;
}

.season-card.winter .season-icon {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.season-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.season-text {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.season-temp {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* CTA Section - Destinations Page */
.cta-destinations {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
    text-align: center;
}

.empty-state i {
    opacity: 0.5;
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-state h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}



/* === TOUR DETAILS PAGE === */
.tour-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin: -40px 10px 40px 10px;
    background: #f8f9fa;
}

.tour-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.tour-hero-content {
    color: white;
    max-width: 800px;
}

.tour-hero-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.tour-title-detail {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.tour-meta-item i {
    font-size: 1.2rem;
    color: var(--warning-color);
}

.tour-price-detail {
    font-size: 2.5rem;
    color: var(--warning-color);
    font-weight: 700;
    margin-top: 20px;
}

.tour-price-detail span {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.tour-section {
    margin-bottom: 40px;
}

.section-title-detail {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.tour-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.tour-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.highlight-item {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.tour-itinerary {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.itinerary-day {
    border-bottom: 1px solid var(--light-gray);
}

.itinerary-header {
    padding: 20px;
    background: var(--light-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.itinerary-header:hover {
    background-color: var(--light-gray);
}

.itinerary-header h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.itinerary-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.itinerary-content.active {
    padding: 20px;
    max-height: 1000px;
}

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 200px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.related-tours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-tour-card:hover {
    transform: translateY(-10px);
    text-decoration: none;
    color: inherit;
}

.related-tour-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-tour-content {
    padding: 20px;
}

.testimonial-card-detail {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.other-tour-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    border: 1px solid var(--light-gray);
}

.other-tour-item:hover {
    transform: translateX(5px);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.other-tour-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.other-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-tour-content h6 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.other-tour-content p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.other-tour-content .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 5px;
}

.quick-contact {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 20px;
    color: var(--primary-color);
}

.price-summary {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}



/* ============================================
   Quick Stats
============================================ */
.quick-stats {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding: 0 1rem;
}

.stat-item {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    color: var(--primary-color);
    background: rgba(198, 107, 5, 0.1);
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    margin: 0.25rem 0 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* ============================================
   Section Common Styles
============================================ */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    position: relative;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Features Section
============================================ */
.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

/* ============================================
   Tour Packages
============================================ */
.tour-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.tour-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

.tour-info {
    padding: var(--spacing-md);
}

.tour-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   Destinations
============================================ */
.destination-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
}

.destination-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(143, 20, 2, 0.9), transparent 50%);
    color: white;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ============================================
   Services/Territories
============================================ */
.service-card {
    padding: var(--spacing-lg);
    text-align: center;
    border-radius: var(--border-radius-lg);
    background: white;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Car Rental
============================================ */
.car-card {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    background: white;
    box-shadow: var(--shadow);
    height: 100%;
}

.car-image {
    height: 180px;
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}


.g-4{
    margin-top: -70px;
}

/* ============================================
   Testimonials
============================================ */
.testimonial-card {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    background: white;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: var(--spacing-sm);
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 86px;
}
/* ============================================
   Booking Form
============================================ */
.booking-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form-wrapper .form-label {
    color: white;
    font-weight: 500;
}

.booking-form-wrapper .form-control,
.booking-form-wrapper .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
}

.booking-form-wrapper .form-control:focus,
.booking-form-wrapper .form-select:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(198, 107, 5, 0.25);
}

/* ============================================
   CTA Section
============================================ */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-xl) 0;
}

.cta-title {
    color: white !important;
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Contact Info
============================================ */
.contact-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    background: white;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Forms
============================================ */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    background-color: white;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(198, 107, 5, 0.25);
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    background-color: white;
    cursor: pointer;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   Animations
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__slideInLeft {
    animation-name: slideInLeft;
}

.animate__delay-1s {
    animation-delay: 1s;
}

.animate__delay-2s {
    animation-delay: 2s;
}

/* ============================================
   Footer
============================================ */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-logo img {
    height: 50px;
    margin-bottom: var(--spacing-md);
}

.footer h5 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ============================================
   Utilities
============================================ */
.bg-light {
    background-color: var(--light-color) !important;

}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.text-muted {
    color: var(--gray-color) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.rounded {
    border-radius: var(--border-radius) !important;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; display: flex; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }

.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }

.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 2rem !important; }

/* ============================================
   Custom Scrollbar
============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-reverse);
}

/* ============================================
   CONTACT PAGE - COMMON STYLES
   (Add these to the existing style.css)
============================================ */

/* Form validation styles */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--danger-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--success-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Alert styles */
.alert-contact {
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 20px;
}

.alert-contact-info {
    background: rgba(13, 202, 240, 0.1);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

/* Loading spinner */
.spinner-contact {
    width: 3rem;
    height: 3rem;
}

/* Animation delays for form elements */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }
.animate-delay-900 { animation-delay: 0.9s; }
.animate-delay-1000 { animation-delay: 1s; }

/* Form group focus states */
.form-group-animated:focus-within label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Custom scrollbar for textarea */
textarea.form-control-animated::-webkit-scrollbar {
    width: 8px;
}

textarea.form-control-animated::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

textarea.form-control-animated::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

textarea.form-control-animated::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


/* ============================================
   FIXES AND IMPROVEMENTS
============================================ */

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(198, 107, 5, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Fix for navbar dropdowns on mobile */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    
    .navbar-nav .dropdown-item {
        padding-left: 2rem;
    }
}

/* Fix for carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(198, 107, 5, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1rem;
    opacity: 1;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

/* Fix for hero slider height */


/* Fix for tour detail page */
.tour-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
}

/* Fix for form validation */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--danger-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--success-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Fix for quick view modal */
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quick-view-modal.show {
    display: flex;
}

.quick-view-content {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fix for responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure images don't overflow */
.tour-image img,
.destination-image img,
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fix for mobile responsiveness */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Fix for tour cards on mobile */
    .tour-card,
    .tour-card-enhanced {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Fix for forms on mobile */
    .form-control,
    .form-select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Fix for print styles */
@media print {
    .navbar,
    .footer,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
}

/* Accessibility improvements */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Improve text readability */
p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--light-gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fix for sticky elements */
.booking-form.sticky,
.quick-stats {
    position: -webkit-sticky;
    position: relative;
    top: 56px;
    margin-bottom: 57px;
}

/* Ensure proper z-index stacking */
.navbar {
    z-index: 1030;
}

.modal,
.quick-view-modal {
    z-index: 1050;
}

.back-to-top,
.whatsapp-float {
    z-index: 1000;
}

/* Fix for overflow issues */
body {
    overflow-x: hidden;
    position: relative;
}

.container {
    overflow: visible;
}

/* Improve button contrast */
.btn-primary,
.btn-outline-primary:hover {
    color: white !important;
}

/* Fix for text colors in dark backgrounds */
.bg-dark,
.bg-primary {
    color: white;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
    color: white !important;
}

/* Smooth transitions for all interactive elements */
a,
button,
.form-control,
.form-select,
.nav-link,
.dropdown-item,
.card,
.tour-card,
.destination-card {
    transition: all 0.3s ease;
}

/* Fix for dropdown menu positioning */
.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.15);
}

/* Ensure proper spacing for sections */
.section + .section {
    margin-top: 28px;
    padding: 51px 0px 0px 0px;
}

/* Fix for container width on large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


/* ============================================
   DESTINATION DETAIL PAGE - ADDITIONAL STYLES
============================================ */

/* Destination Hero */
.destination-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin: -40px 10px 40px 10px;
    background: var(--light-color);
}

.destination-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.destination-hero-content {
    color: white;
    max-width: 800px;
}

.destination-hero-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.destination-title-detail {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white !important;
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    align-items: center;
}

.destination-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.destination-meta-item i {
    font-size: 1.2rem;
    color: var(--warning-color);
}

/* Destination Sections */
.destination-section {
    margin-bottom: 50px;
}

.section-title-destination {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    position: relative;
    
}

.section-title-destination:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--primary-color);
}

.destination-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.destination-overview {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

/* Info Grid */
.destination-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid;
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-card-primary {
    border-top-color: var(--primary-color);
}

.info-card-secondary {
    border-top-color: var(--secondary-color);
}

.info-card-accent {
    border-top-color: var(--accent-color);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: inherit;
}

.info-card-primary .info-icon {
    color: var(--primary-color);
}

.info-card-secondary .info-icon {
    color: var(--secondary-color);
}

.info-card-accent .info-icon {
    color: var(--accent-color);
}

.info-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-text {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    gap: 25px;
}

.attraction-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    width: 100%;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.attraction-image {
    height: 200px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-content {
    padding: 20px;
}

.attraction-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.attraction-desc {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Destination Gallery */
.destination-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item-destination {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item-destination:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item-destination img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item-destination:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Tours Section */
.tours-section {
    background: linear-gradient(135deg, rgba(198, 107, 5, 0.05), rgba(142, 20, 2, 0.03));
    padding: 50px 0;
    border-radius: var(--border-radius-lg);
}

.tour-grid-destination {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tour-card-destination {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.tour-card-destination:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: inherit;
}

.tour-image-destination {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image-destination img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card-destination:hover .tour-image-destination img {
    transform: scale(1.05);
}

.tour-badge-destination {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-info-destination {
    padding: 20px;
}

.tour-title-destination {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.tour-meta-destination {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.tour-price-destination {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 10px 0;
}

.tour-desc-destination {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Related Destinations */
.related-destinations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-destination-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-destination-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
}

.related-destination-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-destination-card:hover .related-destination-image {
    transform: scale(1.05);
}

.related-destination-content {
    padding: 20px;
}

.related-destination-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.related-destination-desc {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sidebar Components */
.quick-contact-destination {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary-color);
    margin-top: 30px;
}

.contact-info-destination p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-destination i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.other-destination-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.other-destination-item:hover {
    transform: translateX(5px);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.other-destination-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.other-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-destination-content h6 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.other-destination-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-color);
    line-height: 1.4;
}

/* CTA Section */
.cta-section-destination {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    border-radius: var(--border-radius-lg);
    margin: 50px 0;
    text-align: center;
}

.cta-title-destination {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white !important;
}

.cta-text-destination {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.season-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--info-color);
}

.season-info h5 {
    color: var(--info-color);
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .destination-title-detail {
        font-size: 2.5rem;
    }
    
    .destination-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .tour-grid-destination {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .destination-hero {
        height: 50vh;
        min-height: 300px;
        margin: 20px 0 30px;
    }
    
    .destination-title-detail {
        font-size: 2rem;
    }
    
    .destination-hero-overlay {
        padding: 20px;
    }
    
    .destination-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-title-destination {
        font-size: 1.8rem;
    }
    
    .destination-info-grid {
        grid-template-columns: 1fr;
    }
    
    .related-destinations {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .cta-title-destination {
        font-size: 2rem;
    }
    
    .cta-text-destination {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .destination-title-detail {
        font-size: 1.8rem;
    }
    
    .destination-hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .section-title-destination {
        font-size: 1.5rem;
    }
    
    .attractions-grid,
    .tour-grid-destination,
    .related-destinations {
        grid-template-columns: 1fr;
    }
    
    .destination-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cta-title-destination {
        font-size: 1.8rem;
    }
    
    .cta-text-destination {
        font-size: 1rem;
    }
}
    
    .certification-item {
    /*display: flex;*/
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    height: 100%; /* Ensure full height */
}

.certification-item img {
    height: 216px;
    width: auto; /* Maintains aspect ratio */
}



.logo1, .logo2, .logo3, .logo4 {
    text-align: center;
    margin-left: 34px;
}

.logo1 img, .logo2 img, .logo3 img, .logo4 img {
    height: 216px;
    width: auto;
    display: inline-block; /* Allows text-align to work */
   margin-left: -29px;
    margin-right: 25px;
}


:root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-warning: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --primary: #667eea;
    --white: #ffffff;
}

/* Ensure container has width if framework is missing */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO SECTION STYLES (Fixed Class Names)
   ========================================= */
.tour-hero {
    position: relative;
    height: 70vh; /* Responsive height */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1e293b; /* Fallback */
}

.tour-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 2;
}

.tour-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.tour-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tour-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
}

.tour-meta-item i {
    color: #f6d365; /* Warning color for icons */
}

.tour-price {
    font-size: 2rem;
    font-weight: 700;
}

.tour-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 5px;
}

/* =========================================
   MODERN PACKAGE LISTS SECTION
   ========================================= */
.modern-package-lists-section {
    padding: 10px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.modern-package-lists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title-modern {
    font-size: 3rem; /* Adjusted slightly */
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.tour-highlight {
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.tour-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    opacity: 0.3;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.tab:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

.tab .count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Modern Grid */
.packages-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Adjusted minmax for better fit */
    gap: 57px;
    margin-bottom: 60px;
}

/* Modern Card */
.package-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    width: 450px;
}

.package-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

/* Card Badges */
.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    animation: slideIn 0.5s ease-out;
}

.badge.multi-tour { background: var(--gradient-primary); }
.badge.budget { background: var(--gradient-success); }
.badge.days { background: var(--gradient-warning); }

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Image Section */
.package-image-modern {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 176px;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.package-card-modern:hover .image-container img {
    transform: scale(1.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1e293b;
    opacity: 0;
    transition: all 0.3s ease;
}

.package-card-modern:hover .quick-view {
    opacity: 1;
}

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-tag .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.price-tag .per-person {
    font-size: 0.8rem;
    color: #64748b;
}

/* Card Content */
.package-content-modern {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: -40px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.package-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.package-title a:hover {
    color: #667eea;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
    font-size: 0.9rem;
    margin-left: 10px;
    white-space: nowrap;
}

/* Meta Info */
.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: -19px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #475569;
}

.meta-item i {
    color: #667eea;
}

.difficulty-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty-easy { background: var(--gradient-success); color: white; }
.difficulty-moderate { background: var(--gradient-warning); color: white; }
.difficulty-difficult { background: linear-gradient(135deg, #ef4444 0%, #f87171 100%); color: white; }

/* Description */
.package-description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-description p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Included Tours */
.included-tours-section {
    background: #f8fafc;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
}

.section-title-small {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
}

.tour-count {
    margin-left: auto;
    font-size: 0.8rem;
    color: #64748b;
    background: #e2e8f0;
    padding: 2px 8px;
    border-radius: 10px;
}

.tours-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-chip:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.tour-chip.current {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.tour-chip i {
    font-size: 0.7rem;
}

.tour-name {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card Footer */
.package-footer {
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    margin-top: -25px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-quick-view, .btn-view-details {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-quick-view {
    background: #f1f5f9;
    color: #475569;
    border: none;
    cursor: pointer;
}

.btn-quick-view:hover {
    background: #e2e8f0;
}

.btn-view-details {
    background: var(--gradient-primary);
    color: white;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Hover Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.95);
    color: white;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.overlay-content {
    text-align: center;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.overlay-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.overlay-content li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.overlay-content i {
    color: #f6d365;
}

.btn-book-now {
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: #f6d365;
    color: #1e293b;
    transform: translateY(-2px);
}

/* Empty State */
.empty-state-modern {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Buttons */
.btn-back, .btn-primary {
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-back {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.view-all-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
}

.btn-secondary {
    background: white;
    color: #475569;
    border: 2px solid #e2e8f0;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: #667eea;
    color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-modern { font-size: 2.2rem; }
    .tour-title { font-size: 2.2rem; }
    .packages-grid-modern { grid-template-columns: 1fr; }
    .filter-tabs { flex-direction: column; align-items: stretch; }
    .tab { justify-content: center; }
    .view-all-container { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 576px) {
    .tour-meta { gap: 10px; }
    .tour-meta-item { font-size: 0.9rem; }
    .action-buttons { flex-direction: column; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --warning-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --dark-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --light-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Hero Section - Modern Gradient */
.tour-detail-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--dark-gradient);
    color: white;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 147, 251, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/*.hero-title {*/
/*    font-size: 3.8rem;*/
/*    font-weight: 800;*/
/*    margin-bottom: 20px;*/
/*    background: linear-gradient(to right, #fff, #f0f0f0);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    animation: fadeInUp 0.8s ease-out;*/
/*}*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Gallery Slider Section */
.gallery-section {
    padding: 80px 0;
    background: var(--light-gradient);
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Swiper Gallery Custom Styles */
.swiper-gallery {
    width: 100%;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.swiper-gallery .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.swiper-gallery .swiper-slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.9), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.swiper-gallery .swiper-slide:hover .slide-overlay {
    opacity: 1;
}

.slide-index {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

/* Gallery Thumbnails */
.gallery-thumbs {
    width: 100%;
    height: 100px;
}

.gallery-thumbs .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100px;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 3px solid #667eea;
    transform: translateY(-5px);
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(102, 126, 234, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(102, 126, 234, 1);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #667eea;
}

/* Package Details Section */
.package-details-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1e293b;
    position: relative;
    padding-bottom: 15px;
    margin-top: -31px;
    
}

/*.section-title::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 381px;*/
/*    width: 80px;*/
/*    height: 4px;*/
/*    background: var(--primary-gradient);*/
/*    border-radius: 2px;*/
/*}*/

/* Overview Section */
.overview-section {
    background: var(--light-gradient);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    border-left: 5px solid #667eea;
}

.overview-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

/* Itinerary Section */
.itinerary-section {
    margin-bottom: 50px;
}

.itinerary-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.itinerary-item:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    transform: translateY(-5px);
}

.itinerary-day {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.day-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.day-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

.itinerary-content {
    color: #475569;
    line-height: 1.7;
}

/* Included Tours Section */
.included-tours-section {
    background: var(--light-gradient);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.tour-image {
    height: 180px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 20px;
}

.tour-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #64748b;
}

.tour-meta-item i {
    color: #667eea;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-top: 10px;
}

/* Inclusions & Exclusions */
.inclusion-section {
    margin-bottom: 50px;
}

.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.inclusion-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.inclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.inclusion-card.included {
    border-top: 5px solid #10b981;
}

.inclusion-card.excluded {
    border-top: 5px solid #ef4444;
}

.inclusion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.inclusion-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.inclusion-card.included .inclusion-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.inclusion-card.excluded .inclusion-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.inclusion-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
}

.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    padding: 10px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusion-list li i {
    font-size: 0.9rem;
}

.inclusion-card.included .inclusion-list li i {
    color: #10b981;
}

.inclusion-card.excluded .inclusion-list li i {
    color: #ef4444;
}

/* Price & Booking Section */
.booking-section {
    background: var(--primary-gradient);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
}

.booking-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.price-display {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.price-note {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f6d365;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.booking-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-enquire, .btn-book-now {
    padding: 18px 40px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-enquire {
    background: #ffb91da3;
    color: #667eea;
}

.btn-enquire:hover {
    background: #4aff1d8f;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-book-now {
    background: #f6d365;
    color: #1e293b;
}

.btn-book-now:hover {
    background: #fda085;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(246, 211, 101, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gradient);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #475569;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatElement 20s infinite linear;
}

.floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-40px) rotate(120deg); }
    66% { transform: translateY(40px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .tour-detail-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .swiper-gallery {
        height: 400px;
    }
    
    .price-display {
        font-size: 3.5rem;
    }
    
    .gallery-thumbs .swiper-slide {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .tour-detail-hero {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .swiper-gallery {
        height: 300px;
    }
    
    .inclusion-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-features {
        grid-template-columns: 1fr;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-enquire, .btn-book-now {
        width: 100%;
        justify-content: center;
    }
    
    .overview-section,
    .included-tours-section {
        padding: 30px;
    }
    
    .gallery-thumbs .swiper-slide {
        height: 70px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .swiper-gallery {
        height: 250px;
    }
    
    .price-display {
        font-size: 3rem;
    }
    
    .itinerary-item {
        padding: 20px;
    }
    
    .gallery-thumbs .swiper-slide {
        height: 60px;
    }
}

/* Hero Section */
.tour-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 100px;
}

.tour-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.tour-hero-content {
    max-width: 800px;
    color: white;
    z-index: 1;
}

.tour-hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Slider */
.gallery-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.gallery-container {
    position: relative;
    height: 500px;
    width: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    font-size: 1.2rem;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Quick Stats Bar */
.quick-stats-bar {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.quick-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.quick-stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* General Section Styles */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Information Sections */
.info-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section {
    margin-bottom: 4rem;
}

.info-section-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-section.left-aligned .info-section-inner {
    flex-direction: row;
}

.info-section.right-aligned .info-section-inner {
    flex-direction: row-reverse;
}

.info-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.info-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

.info-section.right-aligned .info-title:after {
    left: auto;
    right: 0;
}

.info-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.modern-list li:last-child {
    border-bottom: none;
}

.modern-list li i {
    color: #667eea;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.modern-list.checklist li i {
    color: #28a745;
}

/* Inclusion Cards */
.inclusion-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.inclusion-card:hover {
    transform: translateY(-5px);
}

.inclusion-card.included {
    border-top: 5px solid #28a745;
}

.inclusion-card.excluded {
    border-top: 5px solid #dc3545;
}

.inclusion-card-header {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.inclusion-card-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.inclusion-card-body {
    padding: 2rem;
}

.inclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.inclusion-list li:last-child {
    border-bottom: none;
}

.inclusion-list li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Tour Cards */
.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-card-body {
    padding: 1.5rem;
}

.tour-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #333;
}

.tour-card-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tour-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.tour-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.tour-card-meta-item i {
    color: #667eea;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.tour-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.tour-card-price span {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.tour-card-button {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tour-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    margin-top: 2rem;
    justify-content: center;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-toggle {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-section-inner {
        flex-direction: column !important;
        gap: 30px;
        text-align: center;
    }
    
    .info-title:after {
        left: 50% !important;
        transform: translateX(-50%);
    }
    
    .info-section.right-aligned .info-title:after {
        left: 50% !important;
        right: auto;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-container {
        height: 300px;
    }
    
    .info-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
          justify-content: center;
      
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .tour-hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .gallery-container {
        height: 250px;
    }
    
    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

.gallery-section .carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.gallery-section .carousel-inner {
    height: 500px;
    border-radius: 20px;
}

.gallery-section .carousel-item {
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.gallery-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carousel controls */
.gallery-section .carousel-control-prev,
.gallery-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: all 0.3s ease;
}

.gallery-section .carousel-control-prev {
    left: 20px;
}

.gallery-section .carousel-control-next {
    right: 20px;
}

.gallery-section .carousel-control-prev:hover,
.gallery-section .carousel-control-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-section .carousel-control-prev-icon,
.gallery-section .carousel-control-next-icon {
    filter: invert(1) brightness(0.5);
    width: 20px;
    height: 20px;
}

/* Carousel indicators */
.gallery-section .carousel-indicators {
    margin-bottom: 20px;
}

.gallery-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.gallery-section .carousel-indicators button.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-section .carousel-inner {
        height: 300px;
    }
    
    .gallery-section .carousel-control-prev,
    .gallery-section .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    .gallery-section .carousel-control-prev-icon,
    .gallery-section .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-section .carousel-inner {
        height: 250px;
    }
    
    .gallery-section .carousel-control-prev,
    .gallery-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}
/* Modern Card Styles */
.modern-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Gradient Backgrounds */
.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 20px 20px 0 0;
}

.gradient-1::before { background: linear-gradient(45deg, #667eea 0%, #764ba2 100%); }
.gradient-2::before { background: #df130a; }
.gradient-3::before { background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4::before { background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%); }
.gradient-5::before { background: linear-gradient(45deg, #fa709a 0%, #fee140 100%); }
.gradient-6::before { background: linear-gradient(45deg, #30cfd0 0%, #330867 100%); }
.gradient-7::before { background: linear-gradient(45deg, #a3bded 0%, #6991c7 100%); }
.gradient-8::before { background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 100%); }

/* Card Icon */
.modern-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.gradient-1 .modern-card-icon { 
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%); 
    color: white;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.gradient-2 .modern-card-icon { 
    background-color: #df130a; 
    color: white;
    box-shadow: 0 10px 20px rgba(240, 147, 251, 0.3);
}

.gradient-3 .modern-card-icon { 
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%); 
    color: white;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.gradient-4 .modern-card-icon { 
    background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%); 
    color: white;
    box-shadow: 0 10px 20px rgba(67, 233, 123, 0.3);
}

.gradient-5 .modern-card-icon { 
    background: linear-gradient(45deg, #fa709a 0%, #fee140 100%); 
    color: white;
    box-shadow: 0 10px 20px rgba(250, 112, 154, 0.3);
}

.gradient-6 .modern-card-icon { 
    background: linear-gradient(45deg, #30cfd0 0%, #330867 100%); 
    color: white;
    box-shadow: 0 10px 20px rgba(48, 207, 208, 0.3);
}

.gradient-7 .modern-card-icon { 
    background: linear-gradient(45deg, #a3bded 0%, #6991c7 100%); 
    color: white;
    box-shadow: 0 10px 20px rgba(163, 189, 237, 0.3);
}

.gradient-8 .modern-card-icon { 
    background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 100%); 
    color: white;
    box-shadow: 0 10px 20px rgba(255, 154, 158, 0.3);
}

/* Card Content */
.modern-card-content {
    position: relative;
    z-index: 1;
}

.modern-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.modern-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 3px;
}

.gradient-1 .modern-card-title::after { background: linear-gradient(45deg, #667eea 0%, #764ba2 100%); }
.gradient-2 .modern-card-title::after { background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%); }
.gradient-3 .modern-card-title::after { background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4 .modern-card-title::after { background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%); }
.gradient-5 .modern-card-title::after { background: linear-gradient(45deg, #fa709a 0%, #fee140 100%); }
.gradient-6 .modern-card-title::after { background: linear-gradient(45deg, #30cfd0 0%, #330867 100%); }
.gradient-7 .modern-card-title::after { background: linear-gradient(45deg, #a3bded 0%, #6991c7 100%); }
.gradient-8 .modern-card-title::after { background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 100%); }

.modern-card-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Modern List */
.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-list li {
    padding: 0.7rem 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modern-list li:last-child {
    border-bottom: none;
}

.modern-list li i {
    color: #667eea;
    margin-top: 0.3rem;
    font-size: 0.8rem;
}

/* Card Decoration */
.modern-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.1;
}

.gradient-1 .decoration-circle { background: linear-gradient(45deg, #667eea 0%, #764ba2 100%); }
.gradient-2 .decoration-circle { background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%); }
.gradient-3 .decoration-circle { background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4 .decoration-circle { background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%); }
.gradient-5 .decoration-circle { background: linear-gradient(45deg, #fa709a 0%, #fee140 100%); }
.gradient-6 .decoration-circle { background: linear-gradient(45deg, #30cfd0 0%, #330867 100%); }
.gradient-7 .decoration-circle { background: linear-gradient(45deg, #a3bded 0%, #6991c7 100%); }
.gradient-8 .decoration-circle { background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 100%); }

.decoration-line {
    position: absolute;
    top: 40px;
    right: 0;
    width: 60px;
    height: 2px;
    opacity: 0.1;
}

.gradient-1 .decoration-line { background: linear-gradient(45deg, #667eea 0%, #764ba2 100%); }
.gradient-2 .decoration-line { background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%); }
.gradient-3 .decoration-line { background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4 .decoration-line { background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%); }
.gradient-5 .decoration-line { background: linear-gradient(45deg, #fa709a 0%, #fee140 100%); }
.gradient-6 .decoration-line { background: linear-gradient(45deg, #30cfd0 0%, #330867 100%); }
.gradient-7 .decoration-line { background: linear-gradient(45deg, #a3bded 0%, #6991c7 100%); }
.gradient-8 .decoration-line { background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 100%); }

/* Responsive Design */
@media (max-width: 768px) {
    .modern-card {
        padding: 2rem;
    }
    
    .modern-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .modern-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .modern-card {
        padding: 1.5rem;
    }
    
    .modern-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
