/*
|--------------------------------------------------------------------------
| DANA TRAVEL HISTORY
|--------------------------------------------------------------------------
*/


.dth-travel-history {
    width: 100%;
    overflow: hidden;

    background: #f5f5f2;

    color: #102a43;
}


/*
|--------------------------------------------------------------------------
| 3D GLOBE HERO
|--------------------------------------------------------------------------
*/

.dth-globe-section {
    position: relative;

    width: 100%;
    height: 820px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 50%,
            #123b56 0%,
            #061b2b 34%,
            #020b14 72%,
            #01060b 100%
        );
}


/*
|--------------------------------------------------------------------------
| STARS
|--------------------------------------------------------------------------
*/

.dth-stars {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .8;

    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,.9) 1px,
            transparent 1px
        );

    background-size: 85px 85px;

    animation:
        dth-stars-move
        30s linear infinite;
}


@keyframes dth-stars-move {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(85px);
    }

}


/*
|--------------------------------------------------------------------------
| GLOBE
|--------------------------------------------------------------------------
*/

.dth-globe {

    position: absolute;

    width: 100%;
    height: 100%;

    inset: 0;

    z-index: 2;
}


.dth-globe canvas {

    display: block;

    width: 100% !important;
    height: 100% !important;
}


/*
|--------------------------------------------------------------------------
| HERO CONTENT
|--------------------------------------------------------------------------
*/

.dth-globe-overlay {

    position: absolute;

    z-index: 10;

    left: 8%;

    top: 50%;

    transform:
        translateY(-50%);

    width: 430px;

    color: white;

    pointer-events: none;
}


.dth-eyebrow {

    display: block;

    margin-bottom: 22px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: rgba(255,255,255,.65);
}


.dth-globe-overlay h1 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size:
        clamp(
            48px,
            5vw,
            76px
        );

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -2px;
}


.dth-globe-overlay p {

    max-width: 390px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-size: 18px;

    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| STATS
|--------------------------------------------------------------------------
*/

.dth-stats {

    display: flex;

    gap: 55px;

    margin-top: 45px;
}


.dth-stat {

    display: flex;

    flex-direction: column;
}


.dth-stat strong {

    color: #ffffff;

    font-size: 42px;

    font-weight: 600;

    line-height: 1;
}


.dth-stat span {

    margin-top: 9px;

    color:
        rgba(
            255,
            255,
            255,
            .55
        );

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/*
|--------------------------------------------------------------------------
| SCROLL
|--------------------------------------------------------------------------
*/

.dth-scroll-indicator {

    position: absolute;

    z-index: 10;

    bottom: 35px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color:
        rgba(
            255,
            255,
            255,
            .5
        );

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 3px;
}


.dth-scroll-indicator div {

    width: 1px;

    height: 35px;

    background:
        rgba(
            255,
            255,
            255,
            .4
        );
}


/*
|--------------------------------------------------------------------------
| MAP SECTION
|--------------------------------------------------------------------------
*/

.dth-map-section {

    padding:
        110px
        5%;

    background: #ffffff;
}


.dth-section-heading {

    max-width: 720px;

    margin:
        0 auto 55px;

    text-align: center;
}


.dth-section-heading > span {

    display: block;

    margin-bottom: 15px;

    color: #718096;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.dth-section-heading h2 {

    margin:
        0 0 15px;

    color: #102a43;

    font-size:
        clamp(
            38px,
            5vw,
            58px
        );

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.dth-section-heading p {

    margin: 0;

    color: #718096;

    font-size: 17px;

    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| MAP WRAPPER
|--------------------------------------------------------------------------
*/

.dth-map-wrapper {

    position: relative;

    max-width: 1500px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 30px 80px
        rgba(
            0,
            0,
            0,
            .16
        );
}


.dth-world-map {

    width: 100%;

    height: 700px;
}


/*
|--------------------------------------------------------------------------
| MAP LABEL
|--------------------------------------------------------------------------
*/

.dth-map-label {

    position: absolute;

    z-index: 500;

    top: 20px;

    left: 20px;

    padding:
        10px
        16px;

    border-radius: 30px;

    background:
        rgba(
            0,
            0,
            0,
            .72
        );

    backdrop-filter:
        blur(10px);

    color: white;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


/*
|--------------------------------------------------------------------------
| LEAFLET
|--------------------------------------------------------------------------
*/

.dth-world-map .leaflet-control-zoom {

    border: none !important;

    box-shadow:
        0 5px 20px
        rgba(0,0,0,.2);
}


.dth-world-map
.leaflet-control-zoom a {

    width: 36px !important;

    height: 36px !important;

    line-height: 36px !important;

    border: none !important;

    background:
        rgba(
            255,
            255,
            255,
            .94
        ) !important;

    color: #102a43 !important;
}


.dth-world-map
.leaflet-control-attribution {

    background:
        rgba(
            255,
            255,
            255,
            .75
        ) !important;

    backdrop-filter:
        blur(5px);
}


/*
|--------------------------------------------------------------------------
| MAP MARKER
|--------------------------------------------------------------------------
*/

.dth-map-marker-wrapper {

    background: transparent !important;

    border: none !important;
}


.dth-map-marker {

    position: relative;

    width: 20px;

    height: 20px;

    border-radius: 50%;

    background: #ff5a3c;

    border:
        3px solid #ffffff;

    box-shadow:
        0 3px 15px
        rgba(
            0,
            0,
            0,
            .4
        );

    animation:
        dth-marker-pulse
        2s ease-out infinite;
}


.dth-map-marker::after {

    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            255,
            90,
            60,
            .7
        );

    animation:
        dth-marker-ring
        2s ease-out infinite;
}


@keyframes dth-marker-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

}


@keyframes dth-marker-ring {

    0% {
        opacity: .8;

        transform: scale(.5);
    }

    100% {
        opacity: 0;

        transform: scale(1.6);
    }

}


/*
|--------------------------------------------------------------------------
| POPUP
|--------------------------------------------------------------------------
*/

.dth-world-map
.leaflet-popup-content-wrapper {

    padding: 0;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 15px 45px
        rgba(0,0,0,.2);
}


.dth-world-map
.leaflet-popup-content {

    width: 260px !important;

    margin: 0 !important;
}


.dth-world-map
.leaflet-popup-tip {

    background: white;
}


.dth-popup {

    overflow: hidden;
}


.dth-popup img {

    display: block;

    width: 100%;

    height: 145px;

    object-fit: cover;
}


.dth-popup-content {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 18px;
}


.dth-popup-content strong {

    color: #102a43;

    font-size: 18px;
}


.dth-popup-content span {

    color: #4a5568;

    font-size: 14px;
}


.dth-popup-content small {

    color: #718096;

    font-size: 12px;
}


/*
|--------------------------------------------------------------------------
| LOCATION SECTION
|--------------------------------------------------------------------------
*/

.dth-location-section {

    padding:
        110px
        5%;

    background: #f5f5f2;
}


.dth-location-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                280px,
                1fr
            )
        );

    gap: 28px;

    max-width: 1400px;

    margin: 0 auto;
}


/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.dth-location-card {

    overflow: hidden;

    background: #ffffff;

    border-radius: 22px;

    box-shadow:
        0 12px 40px
        rgba(
            0,
            0,
            0,
            .07
        );

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.dth-location-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 20px 55px
        rgba(
            0,
            0,
            0,
            .12
        );
}


/*
|--------------------------------------------------------------------------
| CARD IMAGE
|--------------------------------------------------------------------------
*/

.dth-card-image {

    width: 100%;

    height: 240px;

    overflow: hidden;
}


.dth-card-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}


.dth-location-card:hover
.dth-card-image img {

    transform:
        scale(1.05);
}


/*
|--------------------------------------------------------------------------
| CARD CONTENT
|--------------------------------------------------------------------------
*/

.dth-card-content {

    padding: 26px;
}


.dth-card-country {

    display: block;

    margin-bottom: 8px;

    color: #718096;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.dth-card-content h3 {

    margin:
        0 0 5px;

    color: #102a43;

    font-size: 26px;

    line-height: 1.2;
}


.dth-card-city {

    color: #4a5568;

    font-size: 14px;
}


.dth-card-date {

    margin-top: 8px;

    color: #a0aec0;

    font-size: 12px;
}


.dth-card-content p {

    margin:
        18px 0 0;

    color: #718096;

    font-size: 14px;

    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {

    .dth-globe-section {

        height: 720px;
    }


    .dth-globe-overlay {

        left: 30px;

        right: 30px;

        top: 55px;

        width: auto;

        transform: none;

        text-align: center;
    }


    .dth-globe-overlay h1 {

        font-size: 48px;

        letter-spacing: -1px;
    }


    .dth-globe-overlay p {

        margin: 0 auto;

        font-size: 15px;
    }


    .dth-stats {

        justify-content: center;

        gap: 40px;
    }


    .dth-globe {

        top: 150px;

        height:
            calc(
                100% - 100px
            );
    }


    .dth-map-section,
    .dth-location-section {

        padding:
            80px
            20px;
    }


    .dth-world-map {

        height: 550px;
    }

}


@media (max-width: 600px) {

    .dth-globe-section {

        height: 650px;
    }


    .dth-globe-overlay h1 {

        font-size: 40px;
    }


    .dth-globe-overlay p {

        font-size: 14px;
    }


    .dth-stat strong {

        font-size: 34px;
    }


    .dth-globe {

        top: 190px;

        height: 460px;
    }


    .dth-world-map {

        height: 480px;
    }


    .dth-map-wrapper {

        border-radius: 18px;
    }


    .dth-section-heading {

        margin-bottom: 35px;
    }


    .dth-location-grid {

        grid-template-columns: 1fr;
    }

}
/* V3: country highlights on the 3D globe */
.dth-globe canvas{cursor:grab}.dth-globe canvas:active{cursor:grabbing}

/* V3: clickable destination cards */
.dth-location-card{display:block;color:inherit;text-decoration:none;cursor:pointer;transition:transform .28s ease,box-shadow .28s ease}.dth-location-card:hover{transform:translateY(-6px);box-shadow:0 24px 55px rgba(0,0,0,.12)}
.dth-card-link{display:inline-flex;align-items:center;gap:8px;margin-top:18px;color:#102a43;font-size:12px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase}.dth-card-link span{transition:transform .2s ease}.dth-location-card:hover .dth-card-link span{transform:translateX(4px)}

/* V3: location detail page */
.dth-location-page{background:#f5f5f2;color:#102a43;min-height:70vh}.dth-location-breadcrumb{background:#fff;border-bottom:1px solid rgba(16,42,67,.08)}.dth-location-breadcrumb-inner{max-width:1100px;margin:0 auto;padding:16px 5%;display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-size:13px;color:#718096}.dth-location-breadcrumb a{color:#102a43;text-decoration:none;font-weight:600}.dth-location-breadcrumb a:hover{text-decoration:underline}.dth-location-breadcrumb span[aria-current="page"]{color:#718096;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:45vw}.dth-location-page{background:#f5f5f2;color:#102a43;min-height:70vh}.dth-location-hero{padding:110px 5% 90px;background:linear-gradient(135deg,#061b2b,#123b56);color:#fff}.dth-location-hero-inner{max-width:1100px;margin:0 auto}.dth-location-hero h1{margin:14px 0 18px;color:#fff;font-size:clamp(44px,7vw,82px);line-height:1.02;letter-spacing:-2px}.dth-location-meta{display:flex;gap:22px;flex-wrap:wrap;color:rgba(255,255,255,.72);font-size:16px}.dth-location-meta span+span{padding-left:22px;border-left:1px solid rgba(255,255,255,.25)}.dth-location-content{max-width:1100px;margin:0 auto;padding:70px 5% 100px}.dth-location-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-bottom:55px}.dth-location-gallery img{display:block;width:100%;height:420px;object-fit:cover;border-radius:18px}.dth-location-gallery img:first-child{grid-column:1/-1;height:560px}.dth-location-story{max-width:820px;margin:0 auto;font-size:18px;line-height:1.85}.dth-location-story p{margin:0 0 1.5em}.dth-back-link{display:inline-block;margin-top:25px;color:#102a43;font-weight:700;text-decoration:none}.dth-back-link:hover{text-decoration:underline}
@media(max-width:700px){.dth-location-gallery{grid-template-columns:1fr}.dth-location-gallery img,.dth-location-gallery img:first-child{height:300px}.dth-location-hero{padding:80px 5% 65px}.dth-location-content{padding-top:45px}.dth-location-meta span+span{padding-left:0;border-left:0}}
.dth-popup-link{display:inline-block;margin-top:10px;color:#102a43;font-size:11px;font-weight:700;text-decoration:none;text-transform:uppercase;letter-spacing:1px}.dth-popup-link:hover{text-decoration:underline}
