.slider {
        height: 600px;
        position: relative;
        overflow: hidden;
    }

    .contact{
         height: 300px;
        position: relative;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        background-size: cover;
        background-position: center;
    }

    .slide.active {
        opacity: 1;
    }

    .slider-nav {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
    }

    .slider-nav span {
        width: 12px;
        height: 12px;
        margin: 0 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    }

    .slider-nav span.active {
        background: white;
    }

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .destination-card:hover img {
        transform: scale(1.05);
    }

    .booking-form {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .fade-in {
        animation: fadeIn 1s ease-in;
    }

.contact-management-header-wrapper {
    border-radius: 16px;
    border: solid 1px #d8d8d8;
    background: linear-gradient(236deg, #000357d4 -8.27%, #fff 53.01%);
    position: relative;
    padding: 32px 16px 16px;
    margin-bottom: 24px;
    margin-top: 20px;
}

.contact-management-header-wrapper .contact-management-header-icon-wrapper {
    width: 48px;
    height: 48px;
    background-image: linear-gradient(188deg, #3023ae 5%, #c86dd7 100%), linear-gradient(188deg, #3023ae 5%, #c86dd7 100%);
    position: absolute;
    left: 24px;
    top: -27px;
    border-radius: 50%;
}

.booking-form {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.form-header {
    background-color: #F59e0b;
    color: white;
    padding: 15px;
    text-align: center;
}

.milestone-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3b82f6;
    line-height: 1;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #1e3a8a;
}

.values-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid #1e3a8a;
}

.group:hover .group-hover\:block {
  display: block;
}

@media (max-width: 768px) {
    #bookingModal .md\:w-1\/2 {
        width: 100% !important;
    }
    #bookingModal .md\:flex-row {
        flex-direction: column !important;
    }
    #bookingModal .md\:p-8 {
        padding: 1.5rem !important;
    }
    #bookingModal .md\:text-3xl {
        font-size: 1.25rem !important;
    }
    #bookingModal .md\:pb-0 {
        padding-bottom: 2rem !important;
    }
    #bookingModal .md\:pt-8 {
        padding-top: 1.5rem !important;
    }
    #bookingModal .md\:block {
        display: block !important;
    }
    #bookingModal .md\:hidden {
        display: none !important;
    }
    #bookingModal .sm\:flex-row {
        flex-direction: column !important;
    }
    #bookingModal .sm\:w-1\/3 {
        width: 100% !important;
    }
    #bookingModal .gap-4 {
        gap: 1rem !important;
    }
}