/* ============================================
   Travels Section Styles
   ============================================ */

.travels {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    overflow: hidden;
}

.travels-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.travels-content {
    position: relative;
    z-index: 1;
}

/* Globe Container */
.globe-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    margin: 0 auto 4rem;
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    overflow: hidden;
}

#globeViz {
    width: 100%;
    height: 100%;
}

/* Globe Controls */
.globe-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.globe-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.globe-btn:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--glow-md);
}

.globe-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

/* Travel Stats */
.travel-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--glow-md);
    border-color: var(--border-glow);
}

.stat-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #000;
    border-radius: var(--radius-xl);
    font-size: 1.75rem;
    box-shadow: var(--glow-sm);
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: var(--glow-sm);
}

.stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Places List */
.places-list {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.places-list h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.places-list h3 i {
    color: var(--primary-color);
    font-size: 1.875rem;
}

#places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.place-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.place-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--glow-sm);
    border-color: var(--border-glow);
    background: var(--bg-card);
}

.place-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.place-flag {
    font-size: 2rem;
    line-height: 1;
}

.place-info {
    flex: 1;
}

.place-city {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.place-country {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.place-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.place-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.place-detail i {
    color: var(--primary-color);
    width: 16px;
}

.place-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .globe-container {
        height: 450px;
        margin-bottom: 3rem;
    }

    .travel-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

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

    .places-list {
        padding: 2rem;
    }

    .places-list h3 {
        font-size: 1.5rem;
    }

    #places-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .globe-controls {
        bottom: 15px;
        right: 15px;
    }

    .globe-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .travels {
        padding: 100px 0 60px;
    }

    .globe-container {
        height: 350px;
    }

    .places-list {
        padding: 1.5rem;
    }

    .place-card {
        padding: 1.25rem;
    }

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

    .stat-label {
        font-size: 0.8125rem;
    }
}
