.destination_hero {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    padding: 80px 0 60px;
    margin-bottom: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.destination_hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #dee2e6 20%, #dee2e6 80%, transparent);
}

.hero_title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero_subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.destination_card {
    border: 1px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}


.destination_card.international {
    border-color: rgba(220, 53, 69, 0.3);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
}

.theme_blue .destination_card.domestic {
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.15);
}

.theme_red .destination_card.international {
    border-color: rgba(220, 53, 69, 0.4);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
}

.destination_card:hover {
    border-color: #dee2e6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.destination_card.domestic:hover {
    border-color: rgba(13, 110, 253, 0.2);
}

.destination_card.international:hover {
    border-color: rgba(220, 53, 69, 0.4);
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.1);
}

.icon_wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.icon_wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.destination_card:hover .icon_wrapper::after {
    opacity: 1;
}

.destination_card.domestic .icon_wrapper {
    background: linear-gradient(135deg, #e7f3ff 0%, #d0e7ff 100%);
}

.destination_card.international .icon_wrapper {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c2c7 100%);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.theme_blue .destination_card.domestic .icon_wrapper {
    background: linear-gradient(135deg, #cfe2ff 0%, #b6d4fe 100%);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.theme_red .destination_card.international .icon_wrapper {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c2c7 100%);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.destination_card:hover .icon_wrapper {
    transform: scale(1.08);
}

.icon_wrapper svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.destination_card:hover .icon_wrapper svg {
    transform: scale(1.05);
}

.destination_card .card-body {
    padding: 24px 28px;
}

.destination_card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.destination_card p {
    font-size: 0.9375rem;
    color: #6c757d;
    line-height: 1.5;
    font-weight: 400;
}

.destination_card .btn {
    padding: 10px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
}

.destination_card .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.destination_card .btn:hover::before {
    width: 300px;
    height: 300px;
}

.destination_card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.destination_card .btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.destination_card .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .destination_card .card-body {
        padding: 20px 24px;
    }
}

@media (max-width: 768px) {
    .destination_hero {
        padding: 60px 0 50px;
        margin-bottom: 50px;
    }

    .hero_title {
        font-size: 2.25rem;
    }

    .hero_subtitle {
        font-size: 1rem;
    }

    .destination_card .card-body {
        padding: 20px 24px;
    }

    .destination_card .card-body>div {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start !important;
    }

    .destination_card h3 {
        font-size: 1.375rem;
    }

    .destination_card p {
        font-size: 0.875rem;
    }

    .icon_wrapper {
        width: 70px;
        height: 70px;
    }

    .icon_wrapper svg {
        height: 40px;
        width: 40px;
    }

    .destination_card .btn {
        padding: 10px 24px;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero_title {
        font-size: 1.875rem;
    }

    .destination_card .card-body {
        padding: 24px 20px;
    }
}