/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-item.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 140, 0, 0.4) 100%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.btn-primary-custom {
    background: var(--primary-orange);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--primary-orange);
}

/* Experience Cards */
.experience-card {
    border-radius: 15px;
    padding: 0;
    text-align: center;
    color: white;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    min-height: 400px;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.experience-card-gallery {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 15px;
}

.experience-card-gallery .carousel-inner,
.experience-card-gallery .carousel-item {
    height: 100%;
}

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

.experience-card-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 85%;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.experience-card:hover .experience-card-gallery .carousel-item img {
    transform: scale(1.05);
}

.experience-card.active {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.6);
}

.experience-card.active::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
}

.experience-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.experience-card-content p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.experience-card .btn {
    margin-top: 1.5rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 10px 35px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.experience-card .btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.package-image {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

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

.package-body {
    padding: 1.5rem;
}

.package-duration {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.package-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.package-card .btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 600;
    border-radius: 25px;
    padding: 8px 25px;
    width: 100%;
}

.package-card .btn-outline-primary:hover {
    background: var(--primary-orange);
    color: white;
}

/* Elegant Overlay on Hover */
.package-image {
    position: relative;
}

.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    pointer-events: none;
}

.package-card:hover .package-image::after {
    background: rgba(0, 0, 0, 0.3);
}

/* Package Info Tooltip */
.package-info-tooltip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    padding: 3rem 1.5rem 1.5rem;
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.package-card:hover .package-info-tooltip {
    transform: translateY(0);
}

.package-info-tooltip h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.package-info-tooltip p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    opacity: 0.95;
}

/* Video Section */
.video-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.video-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
}

/* Itinerary Section */
.itinerary-list {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.itinerary-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

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

.itinerary-item:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-section .btn {
    background: white;
    color: var(--primary-orange);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
}

.contact-section .btn:hover {
    background: #f8f9fa;
}

section {
    padding: 80px 0;
}

#packages {
    padding: 80px 15px !important;
}

/* Filter Controls */
.filter-controls {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-orange);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

.clear-filter {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
    cursor: pointer;
}

.clear-filter:hover {
    text-decoration: underline;
}

.package-card.hidden {
    display: none;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.experience-card-gallery .carousel-control-prev,
.experience-card-gallery .carousel-control-next {
    display: none !important;
}
.no-results.show {
    display: block;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    #packages {
        padding: 40px 15px !important;
    }

    .d-flex.justify-content-between.align-items-center {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1.5rem;
    }

    .d-flex.justify-content-between.align-items-center > div:first-child {
        margin-bottom: 0;
        width: 100%;
    }

    .d-flex.justify-content-between.align-items-center > div:last-child {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    #tagFilter {
        width: 100% !important;
    }

    .filter-controls {
        width: 100%;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .filter-badge {
        width: 100%;
        text-align: center;
    }

    .clear-filter {
        margin-left: 0;
        text-align: center;
        display: block;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 60px;
    }

    #packages {
        padding: 30px 10px !important;
    }

    #tagFilter {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .filter-badge {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}