/* Travel Modal Specific Styles - Won't affect other elements */
.travel-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(128, 128, 128, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
}

.travel-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #606060, #ffffff, #606060);
    animation: travel-shimmer 3s infinite;
}

@keyframes travel-shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.travel-modal-header {
    background: linear-gradient(135deg, #606060 0%, #696969 100%);
    color: white;
    border: none;
    padding: 1rem; /* reduced from 2rem */
    position: relative;
    overflow: hidden;
}

.travel-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: travel-float 6s ease-in-out infinite;
}

@keyframes travel-float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-30%, -30%) rotate(180deg); }
}

.travel-modal-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.travel-btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.travel-btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.travel-modal-body {
    padding: 1.25rem; /* reduced from 2.5rem */
    background: white;
    position: relative;
}

.travel-intro-text {
    color: #606060;
    font-size: 1.1rem;
    margin-bottom: 1rem; /* reduced from 2rem */
    line-height: 1.6;
    text-align: center;
}

.travel-destination-item {
    display: flex;
    align-items: center;
    padding: 9px; /* reduced from 18px */
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(128, 128, 128, 0.1);
    margin-bottom: 7.5px; /* reduced from 15px */
    position: relative;
    overflow: hidden;
}

.travel-destination-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 128, 128, 0.1), transparent);
    transition: left 0.6s ease;
}

.travel-destination-item:hover::before {
    left: 100%;
}

.travel-destination-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(128, 128, 128, 0.15);
    border-color: #606060;
    color: #333;
    text-decoration: none;
}

.travel-destination-icon {
    background: linear-gradient(135deg, #606060, #696969);
    padding: 7.5px; /* reduced from 15px */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem; /* reduced from 1rem */
    box-shadow: 0 5px 15px rgba(128, 128, 128, 0.3);
    transition: all 0.3s ease;
}

.travel-destination-item:hover .travel-destination-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(128, 128, 128, 0.4);
}

.travel-destination-icon i {
    color: white;
    font-size: 1.2rem;
}

.travel-destination-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    transition: color 0.3s ease;
}

.travel-destination-item:hover .travel-destination-name {
    color: #606060;
}

.travel-view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 7.5px 12.5px; /* reduced from 15px 25px */
    border-radius: 12px;
    text-decoration: none;
    color: #606060;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border: 2px solid rgba(128, 128, 128, 0.2);
    margin-top: 0.5rem; /* reduced from 1rem */
}

.travel-view-more-btn:hover {
    background: linear-gradient(145deg, #606060, #696969);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(128, 128, 128, 0.2);
    text-decoration: none;
}

.travel-view-more-btn i {
    transition: transform 0.3s ease;
}

.travel-view-more-btn:hover i {
    transform: translateX(5px);
}

.travel-modal-footer {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border: none;
    padding: 1rem; /* reduced from 2rem */
    border-radius: 0 0 25px 25px;
}

.travel-btn-close-secondary {
    border: 2px solid #606060;
    color: #606060;
    padding: 6px 12.5px; /* reduced from 12px 25px */
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.travel-btn-close-secondary:hover {
    background-color: #606060;
    border-color: #606060;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 128, 128, 0.3);
}

.travel-btn-primary {
    background: linear-gradient(135deg, #606060, #696969);
    border: none;
    color: white;
    padding: 6px 12.5px; /* reduced from 12px 25px */
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 128, 128, 0.3);
}

.travel-btn-primary:hover {
    background: linear-gradient(135deg, #696969, #585858);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(128, 128, 128, 0.4);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: travel-floatAround 15s infinite linear;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes travel-floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, -30px) rotate(180deg); }
    75% { transform: translate(-30px, 10px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.travel-destinations-container {
    /* max-height: 300px; */
    overflow-y: auto;
    padding-right: 5px; /* reduced from 10px */
}

.travel-destinations-container::-webkit-scrollbar {
    width: 6px;
}

.travel-destinations-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.travel-destinations-container::-webkit-scrollbar-thumb {
    background: #606060;
    border-radius: 10px;
}

.travel-destinations-container::-webkit-scrollbar-thumb:hover {
    background: #696969;
}

/* Ripple effect animation */
@keyframes travel-ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
