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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Optimize animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent layout shifts */
img {
    aspect-ratio: auto;
}

/* Optimize transforms */
.trip-card,
.destination-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

:root {
    --primary-color: #dc3545;
    --secondary-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.btn-primary {
    background: #dc3545;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
    padding: 0.75rem 1.5rem;
    border-radius: 0px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #dc3545;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0px;
    text-decoration: none;
    transform: translateY(-10px);
    margin-left: auto;
    display: block;
    width: fit-content;
    text-align: right;
    float: right;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: #dc3545;
}

/* Filter Button Icons and Colors */
.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-height: 45px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
}

.filter-btn i {
    font-size: 1rem;
    flex-shrink: 0;
}

.filter-btn span {
    display: inline-block;
    vertical-align: middle;
}

/* All filter buttons use the same text color */
.domestic-filter,
.international-filter,
.adventure-filter,
.family-filter {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.domestic-filter:hover,
.domestic-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.international-filter:hover,
.international-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.adventure-filter:hover,
.adventure-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.family-filter:hover,
.family-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255,255,255,0.4);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.section-header p {
    color: var(--text-light);
    margin-top: 1rem;
}

/* Tour Categories */
.tour-categories {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.tour-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 78, 137, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.tour-categories .container {
    position: relative;
    z-index: 1;
}

/* What We Offer Section */
.what-we-offer {
    padding: 5rem 0 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.what-we-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 45%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(0, 78, 137, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.what-we-offer .container {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.offer-header h3 {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.offer-header h2 {
    margin-top: 0.25rem;
}

/* Screenshot-style category row */
.offer-categories-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: nowrap;
    margin-top: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
    scroll-behavior: smooth;
}

.offer-categories-row::-webkit-scrollbar {
    height: 8px;
}

.offer-categories-row::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.offer-categories-row::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.offer-categories-row::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

.category-card {
    text-decoration: none;
    color: inherit;
    width: 220px;
    flex: 0 0 auto;
    text-align: center;
    scroll-snap-align: start;
    margin-top: 0;
    padding-top: 0;
}

.category-card-media {
    background: rgba(255, 255, 255, 0.95);
    padding: 14px;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    transform: rotate(-7deg);
    transform-origin: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:nth-child(even) .category-card-media {
    transform: rotate(7deg);
}

.category-card-media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 18px;
    color: var(--text-dark);
}

.category-card-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 6px;
}

.category-card:hover .category-card-media {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.14);
}

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

@media (max-width: 992px) {
    .what-we-offer .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .offer-categories-row {
        padding: 0 10px 15px;
        scroll-snap-type: x mandatory;
    }

    .offer-categories-row::-webkit-scrollbar {
        display: none;
    }

    .offer-categories-row {
        scrollbar-width: none;
    }

    .category-card {
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .category-card {
        width: 200px;
    }

    .category-card-media img {
        height: 190px;
    }
}

.offer-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 3rem 0 2rem;
}

.offer-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    align-items: center;
    justify-content: flex-start;
}

.offer-carousel-track.dragging {
    cursor: grabbing;
    transition: none;
}


.offer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: grab;
    display: flex;
    flex-direction: column;
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
    opacity: 0.7;
    transform: scale(0.95);
}

.offer-card:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.offer-card:active {
    cursor: grabbing;
}

.offer-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Active card (center) - highlighted */
.offer-card.active {
    transform: scale(1.05);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(220, 53, 69, 0.3);
}

/* Pagination Dots - Removed */

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.offer-card:hover::before {
    left: 100%;
}


.offer-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--white);
    transition: all 0.5s ease;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

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

.offer-content {
    padding: 1.75rem 1.5rem;
    text-align: left;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.offer-card:hover .offer-content h4 {
    color: var(--primary-color);
}

.offer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.offer-link i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.offer-card:hover .offer-link {
    gap: 0.7rem;
    color: var(--primary-color);
}

.offer-card:hover .offer-link i {
    transform: translateX(4px);
}

/* Smooth scrolling for carousel */
.offer-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

/* Add padding to first and last cards for centering */
.offer-cards-grid::before,
.offer-cards-grid::after {
    content: '';
    flex-shrink: 0;
    width: calc((100% - 320px) / 2);
    min-width: 1rem;
}

/* Responsive for What We Offer */
@media (max-width: 1200px) {
    .offer-card {
        width: 280px;
        min-width: 280px;
    }
    
    .offer-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .offer-carousel-track {
        gap: 1rem;
    }
    
    .offer-card {
        width: 260px;
        min-width: 260px;
    }
    
    .offer-image {
        height: 200px;
    }
    
    .offer-content {
        padding: 1.5rem 1.25rem;
    }
    
    .offer-content h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .offer-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .offer-card {
        width: 240px;
        min-width: 240px;
    }
    
    .offer-image {
        height: 180px;
    }
    
    .offer-content {
        padding: 1.25rem 1rem;
    }
    
    .offer-content h4 {
        font-size: 1.2rem;
    }
}

.standard-carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    overflow: hidden;
}

.standard-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-item {
    position: absolute;
    width: 350px;
    height: 450px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8) translateX(100%);
    opacity: 0;
    overflow: visible;
    cursor: pointer;
}

.standard-item.active {
    transform: scale(1) translateX(0);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.2);
}

.standard-item.next {
    transform: scale(0.9) translateX(50%);
    opacity: 0.7;
    z-index: 5;
}

.standard-item.prev {
    transform: scale(0.9) translateX(-50%);
    opacity: 0.7;
    z-index: 5;
}

.standard-item.fade-out {
    animation: fadeOutStandard 1.2s ease-in-out forwards;
}

.standard-item.fade-in {
    animation: fadeInStandard 1.2s ease-in-out forwards;
}

@keyframes fadeOutStandard {
    0% {
        transform: scale(1) translateX(0);
        opacity: 1;
    }
    100% {
        transform: scale(0.8) translateX(-100%);
        opacity: 0;
    }
}

@keyframes fadeInStandard {
    0% {
        transform: scale(0.8) translateX(100%);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateX(0);
        opacity: 1;
    }
}

.category-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: white;
    transition: all 0.5s ease;
    border-radius: 20px 20px 0 0;
}

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

.semicircle-item h4 {
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.category-link {
    color: #dc3545 !important;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.category-link i {
    transition: transform 0.4s ease;
}

.item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    backdrop-filter: blur(10px);
}

.standard-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.standard-item:hover .category-link {
    background: #dc3545;
    color: white !important;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
}

.standard-item:hover .category-link i {
    transform: translateX(5px) rotate(-45deg);
}

.semicircle-item:hover .category-link {
    gap: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
}

.semicircle-item:hover .category-link i {
    transform: translateX(5px) rotate(-45deg);
}

.semicircle-item:hover .category-image img {
    transform: scale(1.1);
}

.semicircle-item:hover h4 {
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Continuous image animations */
.category-image img {
    animation: gentleFloat 6s ease-in-out infinite;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(220, 53, 69, 0.1) 0%,
        rgba(255, 107, 53, 0.1) 25%,
        rgba(0, 78, 137, 0.1) 50%,
        rgba(220, 53, 69, 0.1) 75%,
        rgba(255, 107, 53, 0.1) 100%);
    animation: colorShift 8s linear infinite;
    border-radius: 20px;
    pointer-events: none;
}

.category-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(220, 53, 69, 0.2),
        rgba(255, 107, 53, 0.2),
        rgba(0, 78, 137, 0.2),
        rgba(220, 53, 69, 0.2));
    border-radius: 22px;
    animation: borderGlow 4s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
}

.semicircle-item.active .category-image img {
    animation: gentleFloat 6s ease-in-out infinite, subtleZoom 4s ease-in-out infinite;
}

.semicircle-item.active .category-image::before {
    animation: colorShift 8s linear infinite, pulse 3s ease-in-out infinite;
}

.semicircle-item.active .category-image::after {
    animation: borderGlow 4s ease-in-out infinite alternate, rotateBorder 10s linear infinite;
}

/* Animation keyframes */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

@keyframes subtleZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Additional continuous animations for different items */
.semicircle-item:nth-child(1) .category-image img {
    animation-delay: 0s;
}

.semicircle-item:nth-child(2) .category-image img {
    animation-delay: 1s;
}

.semicircle-item:nth-child(3) .category-image img {
    animation-delay: 2s;
}

.semicircle-item:nth-child(4) .category-image img {
    animation-delay: 3s;
}

.semicircle-item:nth-child(5) .category-image img {
    animation-delay: 4s;
}

.standard-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: buttonFloat 4s ease-in-out infinite;
}

.standard-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    animation: none;
}

@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(0px);
    }
    33% {
        transform: translateY(-50%) translateX(2px);
    }
    66% {
        transform: translateY(-50%) translateX(-2px);
    }
}

.standard-prev {
    left: 20px;
}

.standard-next {
    right: 20px;
}

.standard-dots {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.autoplay-status {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 15px;
    opacity: 0.7;
    animation: autoPulse 2.5s ease-in-out infinite;
}

@keyframes autoPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.standard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: dotBreath 3s ease-in-out infinite;
}

.standard-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
    animation: activeDotPulse 2.5s ease-in-out infinite;
}

.standard-dot.autoplay-indicator {
    animation: autoplayGlow 2.5s ease-in-out infinite;
}

@keyframes dotBreath {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes activeDotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.3);
    }
}

@keyframes autoplayGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(220, 53, 69, 0.2);
    }
}

/* Entrance animation for semicircle items - only first 3 visible */
.semicircle-item:nth-child(1) {
    animation: semicircleFadeIn 1s ease forwards, subtleBounce 2s ease-in-out infinite 2s;
    animation-delay: 0.1s, 2s;
}

.semicircle-item:nth-child(2) {
    animation: semicircleFadeIn 1s ease forwards, subtleBounce 2s ease-in-out infinite 2.2s;
    animation-delay: 0.2s, 2.2s;
}

.semicircle-item:nth-child(3) {
    animation: semicircleFadeIn 1s ease forwards, subtleBounce 2s ease-in-out infinite 2.4s;
    animation-delay: 0.3s, 2.4s;
}

/* Items 4 and 5 are hidden initially and will be shown when carousel rotates */

.semicircle-item.active {
    animation: activePulse 1.5s ease-in-out infinite;
}

@keyframes semicircleFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(220, 53, 69, 0.3);
    }
    50% {
        box-shadow: 0 25px 60px rgba(220, 53, 69, 0.5);
    }
}

/* Continuous title animation */
.semicircle-item h4 {
    animation: titleGlow 3s ease-in-out infinite;
}

.semicircle-item.active h4 {
    animation: titleGlow 3s ease-in-out infinite, titlePulse 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(44, 62, 80, 0.2);
    }
    50% {
        text-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
    }
}

@keyframes titlePulse {
    0%, 100% {
        color: var(--text-dark);
    }
    50% {
        color: var(--primary-color);
    }
}

/* Popular Destinations */
.popular-destinations {
    padding: 5rem 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
    position: absolute;
    width: 300px;
    height: 450px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -225px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
    transform: translateZ(-150px) rotateY(0deg);
}

.carousel-item.active {
    opacity: 1;
    transform: translateZ(0) rotateY(0deg);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.carousel-item.prev-1 {
    transform: translateZ(-100px) translateX(-300px) scale(0.9) rotateY(-15deg);
    opacity: 0.7;
}

.carousel-item.next-1 {
    transform: translateZ(-100px) translateX(300px) scale(0.9) rotateY(15deg);
    opacity: 0.7;
}

.carousel-item.prev-2 {
    transform: translateZ(-150px) translateX(-500px) scale(0.8) rotateY(-25deg);
    opacity: 0.4;
}

.carousel-item.next-2 {
    transform: translateZ(-150px) translateX(500px) scale(0.8) rotateY(25deg);
    opacity: 0.4;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    height: 450px;
    overflow: hidden;
    position: relative;
}

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

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

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: transparent;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-content .text-content {
    display: flex;
    flex-direction: column;
}

.destination-content h4 {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.destination-content .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    float: none;
    transform: none;
    margin-left: 0;
    width: auto;
}

.destination-content .btn-outline:hover {
    background: #ffffff;
    color: var(--text-dark);
}

.destination-content p {
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Let's Go Together */
.plan-trip {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.plan-trip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.plan-trip .container {
    position: relative;
    z-index: 1;
}

.plan-trip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.plan-trip-text {
    animation: fadeInLeft 1s ease-out;
}

.images-grid-container {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.images-grid-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(220, 53, 69, 0.3),
        rgba(255, 107, 53, 0.3),
        rgba(0, 78, 137, 0.3),
        rgba(220, 53, 69, 0.3));
    border-radius: 22px;
    z-index: -1;
    animation: borderRotate 8s linear infinite;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.grid-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(220, 53, 69, 0.7) 0%,
        rgba(255, 107, 53, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.grid-overlay h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.grid-image:hover .grid-overlay {
    opacity: 1;
}

.grid-image:hover .grid-overlay h5 {
    transform: translateY(0);
}

.grid-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.15);
}

.grid-image:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
}

/* Enhanced Grid Animations */
.grid-image:nth-child(1) {
    animation: slideInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               gentleFloat 6s ease-in-out infinite;
    animation-delay: 0.1s, 0s;
}

.grid-image:nth-child(2) {
    animation: slideInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               gentleFloat 6s ease-in-out infinite;
    animation-delay: 0.2s, 0.8s;
}

.grid-image:nth-child(3) {
    animation: slideInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               gentleFloat 6s ease-in-out infinite;
    animation-delay: 0.3s, 1.6s;
}

.grid-image:nth-child(4) {
    animation: slideInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               gentleFloat 6s ease-in-out infinite;
    animation-delay: 0.4s, 2.4s;
}

.grid-image:nth-child(5) {
    animation: slideInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               gentleFloat 6s ease-in-out infinite;
    animation-delay: 0.5s, 3.2s;
}

.grid-image:nth-child(6) {
    animation: slideInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               gentleFloat 6s ease-in-out infinite;
    animation-delay: 0.6s, 4s;
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.01);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.plan-trip-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: titleSlideIn 0.8s ease-out;
}

.plan-trip-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: titleSlideIn 0.8s ease-out 0.2s both;
}

.plan-trip-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: featureSlideIn 0.6s ease-out both;
}

.plan-feature:nth-child(1) { animation-delay: 0.6s; }
.plan-feature:nth-child(2) { animation-delay: 0.8s; }
.plan-feature:nth-child(3) { animation-delay: 1s; }

.plan-feature:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.plan-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.plan-feature:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #e55a2b;
}

.plan-feature h4 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.plan-feature:hover h4 {
    color: var(--primary-color);
}

.plan-feature p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.plan-feature:hover p {
    color: var(--text-dark);
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.plan-trip-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* Popular Packages */
.popular-packages {
    padding: 5rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.package-image {
    height: 200px;
    overflow: hidden;
}

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

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

.package-content {
    padding: 1.5rem;
}

.package-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-location {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.package-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.gallery-item-link {
    text-decoration: none;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.gallery-text h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

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

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .plan-trip-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .images-grid-container {
        height: auto;
        margin-top: 2rem;
    }

    .images-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2px;
        padding: 6px;
    }

    .grid-image {
        height: 120px;
    }

    .grid-overlay h5 {
        font-size: 0.9rem;
    }

    .plan-feature {
        padding: 1rem;
        gap: 1rem;
    }

    .plan-feature i {
        font-size: 2rem;
    }

    /* Reduce animation intensity on mobile for better performance */
    .grid-image {
        animation-duration: 0.6s, 4s;
    }

    .grid-image:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .plan-feature:hover {
        transform: translateY(-2px) translateX(2px);
    }

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

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

    .section-header h3 {
        font-size: 1.2rem;
    }

    /* 3D Carousel mobile */
    .carousel-container {
        height: 450px;
        perspective: 600px;
    }

    .carousel-item {
        width: 250px;
        height: 370px;
        margin-left: -125px;
        margin-top: -185px;
        transform: translateZ(-100px) rotateY(0deg);
    }

    .destination-image {
        height: 370px;
    }

    .carousel-item.prev-1 {
        transform: translateZ(-70px) translateX(-180px) scale(0.9);
    }

    .carousel-item.next-1 {
        transform: translateZ(-70px) translateX(180px) scale(0.9);
    }

    .carousel-item.prev-2 {
        transform: translateZ(-100px) translateX(-280px) scale(0.8);
    }

    .carousel-item.next-2 {
        transform: translateZ(-100px) translateX(280px) scale(0.8);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    /* Standard carousel mobile optimization */
    .standard-carousel-container {
        height: 400px;
        margin-top: 1rem;
    }

    .standard-item {
        width: 280px;
        height: 380px;
        transform: scale(0.7) translateX(150%);
    }

    .standard-item.active {
        transform: scale(1) translateX(0);
    }

    .standard-item.next {
        transform: scale(0.8) translateX(40%);
    }

    .standard-item.prev {
        transform: scale(0.8) translateX(-40%);
    }

    .category-image {
        height: 240px;
    }

    .standard-item h4 {
        font-size: 1.1rem;
        margin: 0 0 0.5rem 0;
    }

    .item-content {
        padding: 0.8rem;
    }

    .standard-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .standard-prev {
        left: 5px;
    }

    .standard-next {
        right: 5px;
    }
}

/* Decorative Images - Bottom Right */
.decorative-images {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0.7;
}

.decorative-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.decorative-image:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

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

.decorative-image:hover img {
    transform: scale(1.1);
}


/* Image Details Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

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

.modal-details {
    padding: 25px;
    text-align: center;
}

.modal-details h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modal-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-actions {
    margin-top: 20px;
}


/* Enhanced hover effects for clickable images */
.carousel-item,
.grid-image,
.standard-item {
    cursor: pointer;
}

.carousel-item:hover,
.grid-image:hover,
.standard-item:hover {
    transform: scale(1.02);
}

/* Trips Filter Section - Parallel Layout */
.filter-container {
    max-width: 1000px;
    margin: 0 auto;
}

.filter-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: 140px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 0.9rem;
}

.filter-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.filter-btn span {
    font-weight: 600;
    font-size: 1rem;
}

.filter-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
}

.filter-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Mobile responsive for filter section */
@media (max-width: 768px) {
    .filter-row {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 0.5rem;
    }

    .filter-btn {
        min-width: 120px;
        max-width: 140px;
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .filter-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .package-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .info-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 0.75rem;
        min-height: 40px;
    }

    .filter-btn i {
        font-size: 0.9rem;
    }

    .filter-btn span {
        font-size: 0.9rem;
    }

    .filter-btn small {
        font-size: 0.7rem;
    }

    .info-item {
        font-size: 0.8rem;
    }

    .package-card {
        border-radius: 10px;
    }

    .package-content {
        padding: 1rem;
    }

    .package-content h4 {
        font-size: 1.1rem;
    }
}

.grid-image {
    cursor: pointer;
}


/* Filter Section Styles */
.filter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.filter-container {
    max-width: 1000px;
    margin: 0 auto;
}

.filter-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 45px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    max-width: 140px;
}

.filter-btn i {
    font-size: 1rem;
    flex-shrink: 0;
}

.filter-btn span {
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
}

.filter-btn small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
    margin-top: 0.25rem;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    animation: activePulse 2s ease-in-out infinite;
}

.filter-info {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.95);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Standardized package cards for trips page */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

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

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }
.package-card:nth-child(7) { animation-delay: 0.7s; }
.package-card:nth-child(8) { animation-delay: 0.8s; }

.package-image {
    height: 200px;
    overflow: hidden;
}

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

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

.package-content {
    padding: 1.5rem;
}

.package-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-location {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.package-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Mobile responsive for WhatsApp widget */
@media (max-width: 768px) {

    .decorative-images {
        bottom: 80px;
        right: 15px;
        gap: 10px;
    }

    .decorative-image {
        width: 60px;
        height: 60px;
    }

}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .btn-primary.btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.whatsapp-link:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
}

.whatsapp-text span {
    white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-link {
        padding: 10px 14px;
        font-size: 13px;
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 10px;
    }

    .whatsapp-text span {
        font-size: 12px;
    }
}

.image-detail-info ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.itinerary-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.itinerary-section h2 {
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.itinerary-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.itinerary-section ul li {
    background-color: #e9e9e9;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.itinerary-section ul li:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.itinerary-section ul li strong {
    color: var(--primary-color);
}
