/* Destination Page Styles */

/* Hero Section - Updated to match careers page */
.destination-hero {
    min-height: 546px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.contact-section-wrapper {
    position: relative;
    margin-top: 150px;
}

/* Section Styles */
.section-title {
    font-family: "Inter", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #484848;
}

/* Our Products Section */
.our-products {
    background-color: #fff;
}

.our-products-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.show-more-btn {
    font-size: 1.1rem;
    color: #6ec1e4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    color: #5ba7cc;
    transform: translateY(-2px);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

/* MICE Experiences Section */
.mice-experiences {
    background-color: #fff;
}

/* All Information Section */
.all-information {
    background-color: #fff;
}

/* Visit Latin America Link Button */
.visit-latin-america-link {
    background-color: var(--primary-color);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    padding: 20px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.visit-latin-america-link:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(110, 193, 228, 0.4);
}

/* Wave divider before contact section */
.wave-divider-top {
    position: absolute;
    top: -149px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    transform: rotate(180deg);
}

.wave-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-divider-top .shape-fill {
    fill: #f8f9fa;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.contact-section .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #484848;
}

.contact-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(110, 193, 228, 0.25);
}

.contact-section .form-label {
    font-weight: 500;
    color: #333;
    font-size: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.contact-section .btn-primary {
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(110, 193, 228, 0.4);
}

.contact-section .visit-latin-america-link {
    min-width: 208px;
}

@media (max-width: 768px) {
    .destination-hero {
        min-height: 0;
        padding-top: 60px;
        padding-bottom: 115px;
    }

    .our-products-header {
        flex-direction: column;
        align-items: start;
    }

    #destination-contact-form .visit-latin-america-link {
        width: 100%;
    }
}

@media (max-width: 575px) {

    .contact-section .btn-primary {
        padding: 10px 30px;
        font-size: 1rem;
    }

    /* Responsive adjustment for visit-latin-america-link */
    .visit-latin-america-link {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* Loading Animation */
.trip-loading,
.mice-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.bg-light {
    background-color: #f8f9fa !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded {
    border-radius: 15px !important;
}
