 body {
    font-family: 'Poppins', serif;
}

.title-section{
    margin-top: 10em;
    text-align: center;
}

.title-section h1{
    font-family: 'Lucida Grande', serif;
    font-size: 70px;
    margin-bottom: 40px;
}


/*HEADER ICONS CONTAINER */

.circleContainer{
    margin-left: 20em;
    margin-right: 20em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;

}

/*VAN ICONS CONTAINER */
.vanCircleBorder {
    height: 150px;
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid #ffde00;
    border-color: #ffde00;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 40px;
}

.vanCircle {
    height: 120px;
    width: 120px;
    aspect-ratio: 1;
    background-color: #ffde00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*IMAGE CONTAINER */
.imageContainer{
    border-radius: 50%;
}

.imageContainer img{
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

/*PIN ICONS CONTAINER */
.pinCircleBorder {
    height: 150px;
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid #ff9100;
    border-color: #ff9100;
    display: flex;
    justify-content: center;
    align-items: center;

}

.pinCircle {
    height: 120px;
    width: 120px;
    aspect-ratio: 1;
    background-color: #ff9100;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pinContainer{
    border-radius: 50%;
}

.pinContainer img{
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

/*CHECKLIST ICONS CONTAINER */
.checkCircleBorder {
    height: 150px;
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid #58d05d;
    border-color: #58d05d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;

}

.checkCircle {
    height: 120px;
    width: 120px;
    aspect-ratio: 1;
    background-color: #58d05d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkContainer{
    border-radius: 50%;
}

.checkContainer img{
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.dotLines{
    width: 400px;
    background: linear-gradient(to right, #ffde00, #ff9100);
    height: 5px;
    display: flex;
}


.greenOrangeLines{
    width: 400px;
    background: linear-gradient(to right, #ff9100, #58d05d);
    height: 5px;
    display: flex;
}

.categoriesContainer{
    margin-left: 10em;
    margin-right: 10em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}

/* Packages Carousel Styles */
.packages-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    height: auto;
}

.packages-carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    flex: 1;
    align-items: center;
    min-height: 450px;
    padding: 10px 0;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.packages-carousel::-webkit-scrollbar {
    display: none;
}

.categories {
    flex: 0 0 350px;
    margin: 0;
    height: 430px;
    width: 350px;
    border-radius: 15px;
    background-color: rgba(1, 1, 18, 0.8);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.categories:hover {
    transform: translateY(-10px);
}

.categories img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 430px;
    width: 350px;
    border-radius: 15px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.categories .nav-image {
    cursor: pointer;
}

.categories:hover img {
    opacity: 0.3;
}

.categories .description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    text-align: justify;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    width: 320px;
}

.categories:hover .description {
    opacity: 1;
}

.categories h2{
    font-family: 'Lucida Grande', serif;
    font-size: 60px;
    font-weight: 100;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* Tab button styling */
.tab-button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    transform: scale(1.45);
}

.tab-button.active-tab {
    transform: scale(1.45);
}

.tab-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

#packages-tab {
    flex-wrap: nowrap;
}

/* Details Tab Styles */
#details-tab {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
}

#destinations-tab {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Package Card Styles */
.package-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    width: 100%;
    max-width: 1200px;
}

.package-image-section {
    flex: 320px;
    min-height: 350px;
    overflow: hidden;
    display: none;
}

.package-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-details-section {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.package-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Lucida Grande', serif;
}

.package-rates-section {
    margin-bottom: 15px;
}

.package-rates-section strong {
    font-size: 14px;
    color: #333;
}

.package-rates-list {
    margin-top: 8px;
    padding-left: 20px;
    font-size: 13px;
    color: #555;
}

.package-room-info {
    margin-bottom: 15px;
    padding: 10px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    font-size: 13px;
    color: #333;
}

.package-benefits-section {
    margin-bottom: 15px;
}

.package-benefits-section strong {
    font-size: 14px;
    color: #333;
}

.package-benefits-text {
    margin-top: 8px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.package-inclusions-section {
    margin-bottom: 15px;
    padding: 12px;
    border-left: 4px solid #28a745;
    border-radius: 3px;
}

.package-inclusions-section strong {
    font-size: 14px;
    color: #155724;
    display: block;
    margin-bottom: 8px;
}

.package-inclusions-text {
    font-size: 13px;
    color: #155724;
    line-height: 1.6;
    margin: 0;
}

.package-exclusions-section {
    margin-bottom: 15px;
    padding: 12px;
    border-left: 4px solid #dc3545;
    border-radius: 3px;
}

.package-exclusions-section strong {
    font-size: 14px;
    color: #721c24;
    display: block;
    margin-bottom: 8px;
}

.package-exclusions-text {
    font-size: 13px;
    color: #721c24;
    line-height: 1.6;
    margin: 0;
}

.package-duration-section {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.package-duration-section strong {
    font-size: 14px;
    color: #333;
}

.package-duration-text {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* Destinations Carousel Styles */
.destinations-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
    height:auto;
}

.destinations-carousel {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    flex: 1;
    align-items: center;
    height: 450px;
}

.destination-card {
    flex: 0 0 280px;
    height: 350px;
    border-radius: 15px;
    background-color: rgba(1, 1, 18, 0.8);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.09);
    overflow:hidden;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.destination-card:hover img {
    opacity: 0.4;
}

.destination-card .destination-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.destination-card:hover .destination-name {
    opacity: 1;
}

/* Carousel Arrow Navigation */
.carousel-arrow {
    background: #ffde00;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: #ff9100;
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}





/* MOBILE RESPONSIVE STYLES */

/* Tablet and smaller screens (768px and below) */
@media (max-width: 1024px) {
    .circleContainer {
        margin-left: 2em;
        margin-right: 2em;
        flex-wrap: wrap;
    }

    .categoriesContainer {
        margin-left: 2em;
        margin-right: 2em;
        flex-wrap: wrap;
    }

    .title-section h1 {
        font-size: 48px;
    }

    .categories {
        flex: 0 0 280px;
        height: 350px;
        width: 280px;
    }

    .categories img {
        height: 350px;
        width: 280px;
    }

    .categories h2 {
        font-size: 36px;
    }

    .categories .description {
        font-size: 12px;
        width: 260px;
    }

    .dotLines,
    .greenOrangeLines {
        width: 200px;
    }

    .packages-carousel-container {
        width: 100%;
        gap: 15px;
        padding: 15px;
    }

    .packages-carousel {
        gap: 20px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Mobile screens (480px and below) */
@media (max-width: 768px) {
    .circleContainer {
        margin-left: 1em;
        margin-right: 1em;
        flex-direction: column;
        gap: 1em;
    }

    .categoriesContainer {
        margin-left: 1em;
        margin-right: 1em;
        flex-direction: column;
        gap: 1em;
    }

    .packages-carousel-container {
        width: 100%;
        gap: 10px;
        padding: 10px;
    }

    .packages-carousel {
        gap: 15px;
        height: auto;
    }

    .categories {
        flex: 0 0 300px;
        height: 300px;
        width: 300px;
    }

    .categories img {
        height: 300px;
        width: 300px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .title-section {
        margin-top: 5em;
    }

    .title-section h1 {
        font-size: 36px;
    }

    .vanCircleBorder {
        height: 200px;
        width: 200px;
        margin: 10px;
    }

    .vanCircle {
        height: 170px;
        width: 170px;
    }

    .imageContainer img {
        height: 120px;
        width: 120px;
    }

    .pinCircleBorder {
        height: 160px;
        width: 160px;
        margin: 10px;
    }

    .pinCircle {
        height: 135px;
        width: 135px;
    }

    .pinContainer img {
        height: 100px;
        width: 100px;
    }

    .checkCircleBorder {
        height: 160px;
        width: 160px;
        margin: 10px;
    }

    .checkCircle {
        height: 135px;
        width: 135px;
    }

    .checkContainer img {
        height: 100px;
        width: 100px;
    }

    .dotLines,
    .greenOrangeLines {
        width: 100px;
        display: none;
    }

    .categories {
        height: 300px;
        width: 100%;
        max-width: 350px;
    }

    .categories img {
        height: 300px;
        width: 100%;
        max-width: 350px;
    }

    .categories h2 {
        font-size: 28px;
        padding: 10px;
    }

    .categories .description {
        font-size: 11px;
        width: 90%;
        padding: 10px;
    }
}

/* Extra small screens (up to 480px) */
@media (max-width: 480px) {
    .title-section h1 {
        font-size: 28px;
    }

    .vanCircleBorder,
    .pinCircleBorder,
    .checkCircleBorder {
        height: 150px;
        width: 150px;
        margin: 8px;
    }

    .vanCircle {
        height: 130px;
        width: 130px;
    }

    .pinCircle,
    .checkCircle {
        height: 110px;
        width: 110px;
    }

    .imageContainer img,
    .pinContainer img,
    .checkContainer img {
        height: 90px;
        width: 90px;
    }

    .categories {
        height: 250px;
        width: 100%;
        max-width: 320px;
    }

    .categories img {
        height: 250px;
        width: 100%;
        max-width: 320px;
    }

    .categories h2 {
        font-size: 20px;
        margin: 0;
    }

    .categories .description {
        font-size: 10px;
        width: 85%;
    }
}