/* =============================================
   Destinations Hero Section
   ============================================= */
.destinations-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 70vh;
    margin: 50px 50px 0 50px;
    border-radius: 25px;
}

.destinations-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.destinations-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destinations-hero__bg .responsive-cover-picture {
    width: 100%;
    height: 100%;
    display: block;
}

.destinations-hero__bg .responsive-cover-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destinations-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 29, 53, 0.9) 0%, rgb(255 193 7 / 13%) 50%, rgba(6, 29, 53, 0.8) 100%);
    z-index: 2;
}

.destinations-hero .container {
    position: relative;
    z-index: 3;
}

/* Breadcrumb */
.destinations-breadcrumb {
    margin-bottom: 30px;
}

.destinations-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 24px;
    margin: 0;
}

.destinations-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.destinations-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.destinations-breadcrumb .breadcrumb-item a:hover {
    color: #ffc107;
}

.destinations-breadcrumb .breadcrumb-item.active span {
    color: #ffc107;
    font-weight: 600;
}

.destinations-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    margin: 0 12px;
}

/* Hero Content */
.destinations-hero__content {
    margin-top: 40px;
}

.destinations-hero__text {
    margin-bottom: 40px;
}

.destinations-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.destinations-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destinations-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Stats */
.destinations-hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Card */
.destinations-hero__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-card__header i {
    font-size: 1.5rem;
    color: #ffc107;
}

.hero-card__header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.hero-card__content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    margin-bottom: 25px;
}

.hero-card__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
    color: #fff;
}

/* Card Features */
.hero-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-item i {
    color: #ffc107;
    font-size: 0.8rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 3;
}

.scroll-text {
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .destinations-hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .destinations-hero__title {
        font-size: 2.5rem;
    }

    .destinations-hero__stats {
        justify-content: center;
        margin-bottom: 40px;
    }

    .destinations-hero__card {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .destinations-hero {
        min-height: 90vh;
        padding: 100px 0 50px;
        margin: 2px;
    }

    .destinations-hero__title {
        font-size: 2rem;
    }

    .destinations-hero__subtitle {
        font-size: 1.1rem;
    }

    .destinations-hero__stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .destinations-hero__card {
        padding: 24px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 576px) {
    .destinations-hero__title {
        font-size: 1.75rem;
    }

    .destinations-breadcrumb .breadcrumb {
        padding: 10px 20px;
    }

    .hero-card__btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}


.destinations-section {
    padding: 40px 0;
}

.dest-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.dest-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid transparent;
}

.dest-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: #ffc107;
}

.dest-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.dest-card:hover img {
    transform: scale(1.15);
}

/* Card Overlay */
.dest-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.4s ease;
}

.dest-card:hover .dest-card__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
}

/* Card Content */
.dest-card__content {
    position: relative;
    z-index: 3;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card Badge */
.dest-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.dest-card:hover .dest-card__badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #e94560 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.dest-card__badge i {
    font-size: 12px;
}

/* Card Title */
.dest-card__title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.dest-card:hover .dest-card__title {
    color: #ffc107;
}

/* Card Description */
.dest-card__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.dest-card:hover .dest-card__desc {
    opacity: 1;
    transform: translateY(0);
}

/* Card CTA */
.dest-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dest-card:hover .dest-card__cta {
    opacity: 1;
    transform: translateY(0);
    gap: 15px;
}

.dest-card__cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dest-card:hover .dest-card__cta i {
    transform: translateX(5px);
}

/* Card Sizes */
.dest-card--large {
    grid-row: span 2;
    grid-column: span 2;
}

.dest-card--large .dest-card__title {
    font-size: 42px;
}

.dest-card--large .dest-card__desc {
    opacity: 1;
    transform: translateY(0);
}

.dest-card--large .dest-card__cta {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dest-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dest-card--large {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 60px 0;
    }

    .dest-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dest-card--large {
        grid-column: span 1;
    }

    .dest-card__content {
        padding: 20px;
    }

    .dest-card__title {
        font-size: 24px;
    }

    .dest-card--large .dest-card__title {
        font-size: 32px;
    }

    .destinations-hero__content {
        margin-top: 0;
    }

    .destinations-hero__subtitle {
        font-size: 1.1rem;
        overflow: scroll;
        height: 219px;
        margin-bottom: 0;
    }

    .destinations-hero__card {
        padding: 20px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .destinations-hero__text {
        margin-bottom: 0;
    }
    .destinations-breadcrumb .breadcrumb {
        padding: 10px 20px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 20px;
        white-space: nowrap;
        border-radius: 0px;
    }
}

.dest-grid-modern .dest-card:nth-child(5),
.dest-grid-modern .dest-card:nth-child(6) {
    grid-column: span 1;
}
