/* Travel Popup Styles */
.travel-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.travel-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.travel-popup-content {
    background: var(--bg-color, #1a1a1a);
    padding: 35px 30px;
    width: 420px;
    max-width: 95%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.travel-popup-overlay.show .travel-popup-content {
    transform: scale(1) translateY(0);
}

.travel-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.travel-popup-content h3 {
    color: white;
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.travel-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 400;
}

.travel-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.travel-options li {
    margin: 18px 0;
}

.travel-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--button-color, #ff6b35), rgba(255, 107, 53, 0.8));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.travel-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.travel-link:hover::before {
    left: 100%;
}

.travel-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.travel-link svg {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    /* No hover color changes for SVG */
}

.travel-link span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Remove specific hover colors - keep uniform */

/* Mobile Responsive - Much Bigger */
@media (max-width: 768px) {
    .travel-popup-content {
        width: 90%;
        min-width: 340px;
        padding: 40px 25px;
    }
    
    .travel-popup-content h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .travel-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .travel-options li {
        margin: 20px 0;
    }
    
    .travel-link {
        padding: 20px 20px;
        font-size: 17px;
        gap: 18px;
        border-radius: 14px;
    }
    
    .travel-link svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .travel-popup-content {
        width: 92%;
        min-width: 320px;
        padding: 35px 20px;
    }
    
    .travel-popup-content h3 {
        font-size: 24px;
    }
    
    .travel-options li {
        margin: 18px 0;
    }
    
    .travel-link {
        padding: 18px 18px;
        font-size: 16px;
        gap: 16px;
    }
    
    .travel-link svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.travel-link:active {
    animation: pulse 0.3s ease;
}

/* Loading animation */
.travel-popup-content {
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(100px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}