/* ===================================
   WORLD DESTINATIONS SECTION - REDESIGNED (Light Theme)
   =================================== */

.world-destinations-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.destinations-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(12, 45, 87, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(252, 103, 54, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(12, 45, 87, 0.1);
    border: 1px solid #0C2D57;
    border-radius: 50px;
    color: #0C2D57;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #0C2D57;
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.world-map-visual {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 60px 40px;
    width: 100%;
    min-height: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Destination Pins */
.destination-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    animation: pinDrop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
}

@keyframes pinDrop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0);
    }

    60% {
        transform: translateY(5px) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(252, 103, 54, 0.15);
    border-radius: 50%;
    animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.pin-marker {
    position: relative;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #FC6736;
    transition: all 0.3s ease;
}

.destination-pin:hover .pin-marker {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(252, 103, 54, 0.3);
    background: #FC6736;
}

.pin-flag {
    font-size: 24px;
}

/* Country Cards Grid */
.country-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.country-card-mini {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.country-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.country-flag-circle {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.country-info-mini {
    flex: 1;
}

.country-info-mini h4 {
    margin: 0 0 3px 0;
    color: #0C2D57;
    font-size: 16px;
    font-weight: 600;
}

.country-info-mini span {
    color: #666;
    font-size: 12px;
}

.country-arrow {
    color: #FC6736;
    font-size: 18px;
    transition: transform 0.3s ease;
    opacity: 0;
}

.country-card-mini:hover .country-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Global Stats */
.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(252, 103, 54, 0.1);
    color: #FC6736;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #FC6736;
    color: white;
    transform: rotate(360deg);
}

.stat-icon i {
    font-size: 24px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0C2D57;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .world-map-visual {
        padding: 40px 30px;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .world-destinations-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .world-map-visual {
        padding: 30px 20px;
        min-height: 350px;
    }

    .destination-pin {
        transform: scale(0.8);
    }

    .country-cards-grid {
        grid-template-columns: 1fr;
    }

    .global-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .global-stats {
        grid-template-columns: 1fr;
    }
}

/* Globe Tooltip */
.globe-tooltip {
    position: absolute;
    background: #0C2D57;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    /* Let clicks pass through */
    transform: translate(-50%, -100%);
    transition: opacity 0.2s ease, top 0.1s ease, left 0.1s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.globe-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #0C2D57 transparent transparent transparent;
}