.country-icons {
    display: flex;
    overflow: hidden; /* Ensure the marquee effect works */
    white-space: nowrap; /* Prevent wrapping */
    margin: 0; /* Adjust margin to align towards the edge */
}

.flag-icon {
    width: 50px;  /* Set width */
    height: 50px; /* Set height */
    border-radius: 50%; /* Ensure circular shape */
    margin: 0 5px; /* Space between icons */
    animation: marquee 10s linear infinite; /* Marquee effect */
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}
:root {
    --primary-color: #FC7100;
    --secondary-color: #271700;
    --text-color: #333;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation styles */
.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Icon utilities */
.icon-sm { font-size: 0.6em; }
.icon-md { font-size: 1em; }
.icon-lg { font-size: 1.5em; }
.icon-xl { font-size: 2em; }

/* Icon spacing utilities */
.icon-spacing-right { margin-right: 0.5rem; }
.icon-spacing-left { margin-left: 0.5rem; }

/* Icon colors - matching our theme */
.icon-primary { color: var(--primary); }
.icon-secondary { color: var(--secondary); }
.icon-white { color: #fff; }

/* Icon transitions */
.icon-hover-rotate:hover {
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

.icon-hover-scale:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Icon Styles */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    stroke-width: 1px;
}

/* Icon sizes */
.icon-sm {
    font-size: 0.875rem;
    font-weight: 300;
}

.icon-md {
    font-size: 1rem;
    font-weight: 300;
}

.icon-lg {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Icon colors */
.icon-primary {
    color: var(--primary-color);
}

.icon-secondary {
    color: var(--secondary-color);
}

/* Icon with background */
.icon-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

/* Icon animations */
.icon-spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Icon System Base Styles */
.fas, .far, .fal, .fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Ensure proper icon display */
[class^="fas "], 
[class*=" fas "] {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Icon sizes with proper inheritance */
.icon-sm {
    font-size: 0.875rem;
}

.icon-md {
    font-size: 1rem;
}

.icon-lg {
    font-size: 1.25rem;
}

/* Remove any opacity adjustments that might interfere */
.hicon[class*="fas"] {
    opacity: 1;
}

/* Ensure proper icon alignment */
.btn i,
.nav-link i {
    vertical-align: middle;
    margin-left: 0.5rem;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Additional weight variations for different text styles */
.fw-light { font-weight: 300; }
.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

/* Logo styling */
.header-logo {
    width: auto;
    height: 80px;
}

.footer-logo {
    width: 95%;
    height: auto;
}

/* Adventure Types Cards */
.info-card {
    position: relative;
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: var(--bs-dark);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    color: var(--bs-primary);
}

.info-card .card-icon {
    margin-bottom: 1.5rem;
}

.info-card .card-icon i {
    font-size: 2.5rem;
    color: var(--bs-primary);
}

.info-card .card-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card .card-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--bs-primary);
    margin-top: auto;
}

.info-card .card-link i {
    transition: transform 0.3s ease;
}

.info-card:hover .card-link i {
    transform: translateX(5px);
}

/* Dropdown Menu Styling */
.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--bs-primary);
}

.dropdown-item:hover i {
    color: var(--bs-white);
}

/* Hero Section Styles */
/* Main homepage hero slider */
.hero {
    position: relative;
    height: 85vh; /* Increased from previous height */
    overflow: hidden;
}

/* Specific height for secondary pages */
.vh-50 {
    height: 50vh !important;
}

/* Ensure proper aspect ratio on all devices */
@media (max-aspect-ratio: 16/9) {
    .hero:not(.vh-50) {
        height: 75vh;
    }
}

@media (min-aspect-ratio: 16/9) {
    .hero:not(.vh-50) {
        height: 85vh;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero:not(.vh-50) {
        height: 70vh;
    }
}

.hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    color: white;
}

/* Enhanced Badges */
.destination-badges {
    margin-bottom: 2rem;
}

.destination-badges .badge {
    background: rgba(252, 113, 0, 0.9);
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.destination-badges .badge i {
    margin-right: 0.5rem;
}

/* Enhanced Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Enhanced Highlights */
.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.highlight-item i {
    font-size: 2rem;
    margin-right: 1rem;
    color: #FC7100;
}

.highlight-item h4 {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.highlight-item p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Enhanced Navigation */
.hero-navigation .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-navigation .nav-button:hover {
    background: rgba(252, 113, 0, 0.9);
}

.hero-navigation .prev {
    left: 2rem;
}

.hero-navigation .next {
    right: 2rem;
}

/* Enhanced Stats Bar */
.stats-bar {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    padding: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: #FC7100;
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

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

/* Camp Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.feature i {
    font-size: 1.5rem;
    color: #FC7100;
    margin-bottom: 0.5rem;
}

.feature p {
    margin: 0;
    font-size: 0.9rem;
}

/* Navigation Styles */
.hero-navigation {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-button {
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #FC7100;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.8)
        );
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 350px;
    }

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

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .destination-badges {
        flex-wrap: wrap;
    }

    .nav-button {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Ensure proper aspect ratio on all devices */
@media (max-aspect-ratio: 16/9) {
    .hero {
        height: 40vh;
    }
}

@media (min-aspect-ratio: 16/9) {
    .hero {
        height: 50vh;
    }
}

/* Stats Grid */
.quick-stats-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    color: #fff;
}

.stat-card i {
    font-size: 1.5rem;
    color: #FC7100;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-actions .btn i {
    margin-right: 0.5rem;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    color: #fff;
}

.feature i {
    margin-right: 0.5rem;
    color: #FC7100;
}

.scroll-indicator {
    color: #fff;
    text-align: center;
}

.scroll-indicator i {
    display: block;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Experience Badge */
.experience-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.award-badge {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
}

.award-badge img {
    max-width: 150px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quick-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-side-content {
        display: none;
    }
    
    .feature-highlights {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .feature {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .quick-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .feature {
        width: 100%;
    }
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card i {
    font-size: 2.5rem;
    color: #FC7100;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

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

/* Preparation Cards */
.prep-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.prep-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

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

.custom-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background-color: #4a90e2;
    border-radius: 50%;
    transform: translateY(-50%);
}

.prep-content {
    color: #555;
}

/* Contact Options */
.contact-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-dark);
    color: white;
}

.contact-link .hicon {
    font-size: 1.2rem;
}

/* Section Headers */
.tour-section h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tour-section h2 .hicon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.stat i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Experience Badge */
.experience-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.experience-badge i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .prep-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Gallery Section */
.hero-gallery-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 100%;
    gap: 10px;
    padding: 10px;
}

.gallery-main {
    height: 100%;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-side {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
}

.gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    color: white;
}

.destination-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.badge i {
    color: #FC7100;
    margin-right: 5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2rem;
    color: #FC7100;
    margin-bottom: 10px;
}

/* International Tours Section */
.international-tours {
    background: #f8f9fa;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

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

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-overlay span {
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-overlay .duration {
    background: rgba(252, 113, 0, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
}

.card-overlay .price {
    font-weight: 600;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.highlights {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.highlights span {
    background: rgba(252, 113, 0, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.highlights span i {
    font-size: 0.8rem;
}

.destination-card .btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.destination-card .btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quick-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-side-content {
        display: none;
    }
    
    .feature-highlights {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .feature {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .quick-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .feature {
        width: 100%;
    }
}

/* Carousel Styling */
.carousel-caption {
    text-align: left;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
}

.slide-info {
    max-width: 600px;
    margin: 0 auto;
}

.slide-badge {
    display: inline-block;
    background: #FC7100;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.carousel-caption h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.trip-details {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.trip-details span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.trip-details i {
    margin-right: 0.5rem;
    color: #FC7100;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: #FC7100;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .trip-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Modern styling for sections */
.subtitle {
    color: #FC7100;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

/* Trust Bar */
.trust-bar {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.trust-bar i {
    font-size: 2rem;
    color: #FC7100;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* Experience Cards */
.experience-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.experience-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FC7100;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
}

.experience-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.experience-highlights li {
    margin-bottom: 0.5rem;
    color: #666;
}

.experience-highlights i {
    color: #FC7100;
    margin-right: 0.5rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #FC7100;
    margin-right: 1rem;
    opacity: 0.9;
}

/* Category Cards */
.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    color: inherit;
    text-decoration: none;
}

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

.category-card i {
    font-size: 2.5rem;
    color: #FC7100;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    margin: 0 0.5rem;
}

/* Trip Preparation Section */
.preparation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.prep-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

.prep-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(252, 113, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prep-icon i {
    font-size: 1.8rem;
    color: #FC7100;
}

.prep-content {
    flex-grow: 1;
}

.prep-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.prep-content p {
    color: #666;
    margin-bottom: 1rem;
}

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

.prep-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.prep-checklist li i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 1rem;
}

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

.section-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-header h2 i {
    color: #FC7100;
    margin-right: 0.5rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

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

@media (max-width: 576px) {
    .prep-card {
        flex-direction: column;
        text-align: center;
    }

    .prep-icon {
        margin: 0 auto;
    }

    .prep-checklist li {
        justify-content: center;
    }
}

/* Itinerary Timeline Accordion Styles */
.accordion-itinerary {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
    border: none;
    background: transparent;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 1rem;
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker .day-number {
    color: white;
    font-weight: bold;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 4rem;
    height: calc(100% - 2rem);
    width: 2px;
    background: var(--bs-border-color);
}

.accordion-button {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-heading-color);
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--bs-primary);
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.2s ease;
}

.trek-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.trek-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--bs-secondary);
}

.trek-stats i {
    color: var(--bs-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-marker {
        width: 32px;
        height: 32px;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 15px;
    }
    
    .trek-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* Included/Excluded Section Styles */
.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.inclusion-box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.inclusion-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

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

.inclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.inclusion-list li:last-child {
    border-bottom: none;
}

.inclusion-list i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.included i {
    color: #28a745;
}

.excluded i {
    color: #dc3545;
}

.inclusion-content {
    flex: 1;
}

.inclusion-title {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.inclusion-desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .inclusion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .inclusion-box {
        padding: 1.5rem;
    }
}

.trek-itinerary {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.trek-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.trek-day {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.trek-day-marker {
    flex: 0 0 80px;
    position: relative;
}

.day-number {
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.altitude-line {
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--bs-primary), #dee2e6);
}

.trek-day:last-child .altitude-line {
    display: none;
}

.trek-day-content {
    flex: 1;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.trek-day-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.trek-day-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.trek-day-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--bs-primary);
    flex: 1;
}

.quick-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.quick-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-stats i {
    color: var(--bs-primary);
}

.trek-day-details {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #eee;
}

.trek-day-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
}

.highlight-item i {
    color: var(--bs-primary);
    font-size: 1.1rem;
}

.summit-day .trek-day-content {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
}

.summit-day .trek-day-header h3,
.summit-day .quick-stats,
.summit-day .quick-stats i {
    color: white;
}

.summit-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trek-day-marker {
        flex: 0 0 60px;
    }

    .day-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .altitude-line {
        left: 19px;
    }

    .quick-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trek-day-highlights {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Additional styles for new features */
.trek-overview .overview-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.trek-overview i {
    font-size: 2rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.trek-day-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

.trek-weather, .trek-equipment {
    background: rgba(0,0,0,0.02);
    padding: 1rem;
    border-radius: 8px;
}

.trek-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.trek-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.difficulty-rating .rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating-bar {
    height: 8px;
    width: 150px;
    background: #eee;
    border-radius: 4px;
    position: relative;
}

.rating-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--bs-primary);
    border-radius: 4px;
    width: calc(var(--rating) * 20%);
}

.preparation-tips .prep-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.prep-card i {
    font-size: 2rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trek-day-content-grid {
        grid-template-columns: 1fr;
    }
    
    .trek-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Altitude Profile */
.altitude-profile {
    background: white;
    border: 1px solid #eee;
}

.profile-legend span {
    font-size: 0.9rem;
}

.profile-legend i {
    margin-right: 5px;
}

/* Booking Process */
.step-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.logistics-card {
    transition: transform 0.3s ease;
}

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

.booking-cta {
    background: linear-gradient(rgba(0,0,0,0.02), rgba(0,0,0,0.05));
    padding: 2rem;
    border-radius: 10px;
}

/* Modal Enhancements */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    background: var(--bs-primary);
    color: white;
    border-radius: 15px 15px 0 0;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* Strength Items */
.about-section {
    background-color: #f8f9fa;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
}

.strength-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.strength-icon i {
    font-size: 1.5rem;
    color: #4a90e2;
}

.strength-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.3;
}

.section-header .sub-title {
    color: #4a90e2;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header .title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Specific styling for home page strength list */
.home-strength-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-strength-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.home-strength-item::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #FC7100;
    margin-right: 10px;
}

.home-strength-item strong {
    font-size: 1rem;
    color: #2c3e50;
}

/* Specific styling for home page read more button */
.home-read-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.home-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.home-read-more:hover {
    color: var(--secondary-color);
}

.home-read-more:hover i {
    transform: translateX(5px);
}

/* Specific styling for hero search button */
.hero-search-btn {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-search-btn i {
    font-size: 16px;
}

.hero-search-btn span {
    font-weight: normal;
}

.hero-search-btn:hover {
    background: transparent;
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Tour types section styling */
.info-card.intro-card {
    background-color: var(--secondary-color);
    color: white;
}

.info-card.intro-card .card-title,
.info-card.intro-card .card-desc {
    color: white;
}

.info-card.intro-card .card-icon {
    background-color: white;
}

.info-card.intro-card .card-icon .hicon {
    color: var(--secondary-color);
}

.card-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: rgba(252, 113, 0, 0.1); /* Light orange background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    color: var(--primary-color, #FC7100);
    font-size: 24px;
}

.card-link i {
    color: var(--primary-color, #FC7100);
    font-size: 16px;
    margin-left: 5px;
}

/* Hover effects */
.info-card:hover .card-icon {
    background-color: var(--primary-color, #FC7100);
}

.info-card:hover .card-icon i {
    color: #fff;
}

.info-card:hover .card-link i {
    transform: translateX(5px);
}

/* Specific styling for intro card icon */
.info-card.intro-card .card-icon {
    background-color: white;
}

.info-card.intro-card .card-icon .hicon {
    color: var(--secondary-color);
}

/* Tours link styling */
.tours-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color); /* Orange color for better visibility */
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tours-link .hicon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tours-link:hover {
    color: var(--primary-color);
}

.tours-link:hover .hicon {
    transform: translateX(5px);
}

.info-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card .card-desc {
    color: #666;
    margin-bottom: 1.5rem;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Tour Cards */
.tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.tour-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.tour-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.tour-card-content {
    padding: 20px;
}

.tour-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.tour-card-footer .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Card Icons */
.card-icon .fas {
    font-size: 24px;
    color: var(--primary-color);
}

.info-card.intro-card .card-icon .fas {
    color: var(--secondary-color);
}

/* Navigation Enhancements */
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.dropdown-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background-color: rgba(252, 113, 0, 0.1);
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

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

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

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .offcanvas-navbar {
        width: 300px;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }

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

/* Active State */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active:after {
    width: 100%;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(252, 113, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Navigation Adjustments */
@media (max-width: 991.98px) {
    .social-icons {
        padding-left: 1rem;
    }
}

@media (min-width: 992px) {
    .social-icons {
        margin-left: 2rem;
    }
}
.tour-type-icon {
    font-family: "Font Awesome 5 Free";
    font-weight: 300;
    font-size: 2.5rem;
    color: #fc7100;
    opacity: 0.85;
}

.tour-type-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.tour-type-card .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

/* Tour Type Icons - Light Version */
.hicon-regular-group::before { content: "\f0c0"; }
.hicon-regular-compass::before { content: "\f14e"; }
.hicon-regular-family::before { content: "\f0c0"; }
.hicon-regular-arrow-right::before { content: "\f178"; }

.hicon {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 2rem;
    opacity: 0.85;
}

.card-icon .hicon {
    font-size: 24px;
    color: var(--primary-color);
}

.card-link .hicon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Icon styling */
.card-icon i {
    color: var(--primary-color, #FC7100);
    font-size: 24px;
}

.card-link i {
    color: var(--primary-color, #FC7100);
    font-size: 16px;
}

/* For better visibility on hover */
.info-card:hover .card-icon i,
.info-card:hover .card-link i {
    color: #fff;
}

/* Featured Tours Section */
.featured-tours {
    background-color: #f8f9fa;
}

.tour-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.tour-card .card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.tour-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-badges span {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-featured {
    background-color: var(--primary-color);
    color: #fff;
}

.badge-type {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
}

.tour-card .card-content {
    padding: 20px;
}

.tour-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tour-features span {
    background: rgba(252, 113, 0, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-rating {
    color: #ffc107;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.tour-rating span {
    color: #666;
    margin-left: 5px;
}

.tour-card .btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tour-card .btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tour-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .tour-card .btn {
        width: 100%;
        text-align: center;
    }
}
