/* ===== DESTINATIONS PAGE STYLES ===== */

/* ===== HERO BANNER ===== */
.dest-hero {
    position: relative;
    height: 100vh;
    /* min-height: 450px;
    max-height: 600px; */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.dest-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.dest-hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    font-weight: 600;
    color: #f7921e;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.dest-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.dest-hero-squiggle {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.dest-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.dest-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.dest-hero-breadcrumb a:hover {
    color: #f7921e;
}

.dest-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.dest-hero-breadcrumb span i {
    font-size: 10px;
}

.dest-hero-breadcrumb .current {
    color: #f7921e;
    font-weight: 600;
}

/* ===== INTRO SECTION ===== */
.dest-intro-section {
    padding: 80px 0 40px;
    background: #f5f5f0;
    text-align: center;
}

.dest-intro-container {
    max-width: 750px;
    margin: 0 auto;
}

.dest-intro-pin {
    margin-bottom: 10px;
}

.dest-intro-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.dest-intro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin-bottom: 24px;
}

.dest-intro-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
}

/* ===== FILTER TABS ===== */
.dest-filter-section {
    padding: 40px 0 10px;
    background: #f5f5f0;
}

.dest-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dest-filter-btn {
    background: transparent;
    color: #555;
    border: 2px solid #ddd;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dest-filter-btn i {
    font-size: 12px;
    color: #f7921e;
}

.dest-filter-btn:hover {
    border-color: #f7921e;
    color: #f7921e;
}

.dest-filter-btn.active {
    background: #f7921e;
    border-color: #f7921e;
    color: #fff;
}

.dest-filter-btn.active i {
    color: #fff;
}

/* ===== DESTINATIONS GRID ===== */
.dest-grid-section {
    padding: 50px 0 100px;
    background: #f5f5f0;
    position: relative;
    overflow: hidden;
}

.dest-grid-map-bg {
    position: absolute;
    inset: 0;
    background: url('https://advenx.wpengine.com/wp-content/uploads/2023/03/map-bg.png') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.dest-grid-container {
    position: relative;
    z-index: 1;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== DESTINATION CARD ===== */
.dest-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.dest-card.hidden {
    display: none;
}

/* Card Image */
.dest-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.08);
}

.dest-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(247, 146, 30, 0.9);
    color: #fff;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* Card Body */
.dest-card-body {
    padding: 24px 24px 28px;
}

.dest-card-city-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f7921e;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.dest-card-city-tag i {
    font-size: 12px;
}

.dest-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.dest-card-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'Open Sans', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dest-card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.dest-card-rating i {
    color: #f7921e;
    font-size: 13px;
}

.dest-card-rating span {
    margin-left: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.dest-card-duration {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dest-card-duration i {
    color: #aaa;
    font-size: 13px;
}

.dest-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    position: relative;
}

.dest-card-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f7921e;
    transition: width 0.3s;
}

.dest-card-btn:hover {
    color: #f7921e;
}

.dest-card-btn:hover::after {
    width: 100%;
}

.dest-card-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dest-card-btn:hover i {
    transform: translateX(4px);
}

/* ===== WHY VISIT SECTION ===== */
.dest-why-section {
    padding: 100px 0 80px;
    background: #f0efe8;
}

.dest-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.dest-why-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.dest-why-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

.dest-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dest-why-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dest-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dest-why-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.dest-why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    line-height: 1.4;
}

.dest-why-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
}

/* ===== MAP / ROUTE SECTION ===== */
.dest-map-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.dest-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.dest-map-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.dest-map-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    font-weight: 600;
    color: #f7921e;
    margin-bottom: 8px;
}

.dest-map-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 60px;
}

.dest-map-route {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.dest-map-city {
    flex: 1;
    text-align: center;
    max-width: 280px;
}

.dest-map-city-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #f7921e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: rgba(247, 146, 30, 0.1);
    transition: all 0.3s;
}

.dest-map-city:hover .dest-map-city-icon {
    background: #f7921e;
}

.dest-map-city-icon i {
    font-size: 28px;
    color: #f7921e;
    transition: color 0.3s;
}

.dest-map-city:hover .dest-map-city-icon i {
    color: #fff;
}

.dest-map-city h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.dest-map-city p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
}

.dest-map-highlights {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    display: block;
}

.dest-map-connector {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 38px;
    flex-shrink: 0;
    min-width: 120px;
}

.dest-map-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(247, 146, 30, 0.6) 0px, rgba(247, 146, 30, 0.6) 8px, transparent 8px, transparent 14px);
}

.dest-map-distance {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #f7921e;
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .dest-hero-title {
        font-size: 56px;
        letter-spacing: 5px;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .dest-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .dest-intro-title {
        font-size: 40px;
    }

    .dest-why-title {
        font-size: 40px;
    }

    .dest-map-title {
        font-size: 40px;
    }

    .dest-map-route {
        gap: 0;
    }

    .dest-map-connector {
        min-width: 80px;
    }
}

@media (max-width: 768px) {
    .dest-hero {
        height: 50vh;
        min-height: 380px;
    }

    .dest-hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .dest-hero-subtitle {
        font-size: 22px;
    }

    .dest-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }

    .dest-filter-tabs {
        gap: 10px;
    }

    .dest-filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .dest-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }

    .dest-intro-title {
        font-size: 34px;
    }

    .dest-why-title {
        font-size: 34px;
    }

    .dest-map-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .dest-map-route {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .dest-map-connector {
        flex-direction: column;
        min-width: auto;
        padding-top: 0;
        padding: 15px 0;
    }

    .dest-map-line {
        width: 2px;
        height: 30px;
        background: repeating-linear-gradient(to bottom, rgba(247, 146, 30, 0.6) 0px, rgba(247, 146, 30, 0.6) 8px, transparent 8px, transparent 14px);
    }

    .dest-map-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .dest-hero-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .dest-hero-subtitle {
        font-size: 20px;
    }

    .dest-filter-btn {
        padding: 8px 16px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .dest-card-title {
        font-size: 20px;
    }

    .dest-card-img {
        height: 200px;
    }

    .dest-intro-title {
        font-size: 30px;
    }

    .dest-why-title {
        font-size: 30px;
    }

    .dest-map-title {
        font-size: 28px;
    }

    .dest-map-city h3 {
        font-size: 22px;
    }
}