/* Travel Page Specific Styles */

/* Travel Hero Section */
.travel-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

.travel-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Airplane Animations */
.airplane {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: fly 20s linear infinite;
}

.airplane-1 {
    top: 20%;
    left: -100px;
    animation-duration: 25s;
    animation-delay: 0s;
}

.airplane-2 {
    top: 50%;
    left: -100px;
    animation-duration: 30s;
    animation-delay: 5s;
}

.airplane-3 {
    top: 75%;
    left: -100px;
    animation-duration: 35s;
    animation-delay: 10s;
}

@keyframes fly {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-50px) rotate(5deg);
        opacity: 0;
    }
}

/* Cloud Animations */
.cloud {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: float-cloud 30s ease-in-out infinite;
}

.cloud-1 {
    top: 10%;
    left: 10%;
    animation-duration: 40s;
    animation-delay: 0s;
}

.cloud-2 {
    top: 30%;
    right: 15%;
    animation-duration: 35s;
    animation-delay: 5s;
}

.cloud-3 {
    top: 60%;
    left: 20%;
    animation-duration: 45s;
    animation-delay: 10s;
}

.cloud-4 {
    bottom: 20%;
    right: 10%;
    animation-duration: 38s;
    animation-delay: 15s;
}

@keyframes float-cloud {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

/* Travel Hero Content */
.travel-hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 900px;
    padding: 2rem;
}

.compass-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: rotate-compass 10s linear infinite;
    display: inline-block;
}

@keyframes rotate-compass {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.travel-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.travel-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.travel-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Travel Path Animation */
.travel-path {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    z-index: 0;
}

/* Destination Cards */
.travel-destinations {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.destination-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    padding: 3rem;
    margin-bottom: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.destination-card:hover::before {
    left: 100%;
}

.destination-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.destination-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.destination-flag {
    font-size: 6rem;
    animation: float-flag 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float-flag {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.destination-map-pin {
    font-size: 2rem;
    animation: pulse-pin 2s ease-in-out infinite;
    position: absolute;
    bottom: 0;
}

@keyframes pulse-pin {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.destination-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.destination-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.destination-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.destination-badge {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.destination-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.highlight-tag {
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(139, 92, 246, 0.25);
    transform: translateY(-2px);
}

/* Travel Philosophy Section */
.travel-philosophy {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(99, 102, 241, 0.05) 100%);
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: rotate-globe 20s linear infinite;
    display: inline-block;
}

@keyframes rotate-globe {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.philosophy-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Road Trip Visual */
.road-trip-visual {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
}

.road-trip-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.125rem;
}

.road-path {
    position: relative;
    height: 80px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
}

.road-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.6) 20%, 
        rgba(99, 102, 241, 0.8) 50%, 
        rgba(99, 102, 241, 0.6) 80%, 
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.road-marker {
    position: absolute;
    font-size: 1.5rem;
    animation: pulse-pin 2s ease-in-out infinite;
    z-index: 2;
}

.marker-1 {
    left: 5%;
    animation-delay: 0s;
}

.marker-2 {
    left: 35%;
    animation-delay: 0.5s;
}

.marker-3 {
    left: 65%;
    animation-delay: 1s;
}

.marker-4 {
    left: 95%;
    animation-delay: 1.5s;
}

.car-icon {
    position: absolute;
    font-size: 2rem;
    left: 0;
    animation: drive-road 8s linear infinite;
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes drive-road {
    0% {
        left: 0;
        transform: translateX(0);
    }
    25% {
        transform: translateX(0) translateY(-5px);
    }
    50% {
        transform: translateX(0) translateY(0);
    }
    75% {
        transform: translateX(0) translateY(-5px);
    }
    100% {
        left: calc(100% - 2rem);
        transform: translateX(0);
    }
}

.road-trip-cities {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}

/* Travel Map Section */
.travel-map-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 6rem 0;
}

.travel-map-container {
    margin-top: 3rem;
    position: relative;
}

.world-map-visual {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.continent {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.continent-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.asia {
    top: 15%;
    left: 10%;
}

.europe {
    top: 25%;
    left: 45%;
}

.eurasia {
    top: 30%;
    right: 15%;
}

.country-pin {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    animation: pulse-pin 2s ease-in-out infinite;
}

.pin-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.country-pin:hover .pin-label {
    opacity: 1;
}

.country-pin:hover .pin-dot {
    transform: scale(1.5);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.9);
}

.singapore-pin {
    top: 20%;
    left: 15%;
}

.india-pin {
    top: 25%;
    left: 20%;
}

.uk-pin {
    top: 30%;
    left: 48%;
}

.netherlands-pin {
    top: 28%;
    left: 52%;
}

.france-pin {
    top: 32%;
    left: 50%;
}

.belgium-pin {
    top: 30%;
    left: 51%;
}

.luxembourg-pin {
    top: 31%;
    left: 52%;
}

.turkey-pin {
    top: 35%;
    right: 18%;
}

.travel-routes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.travel-icon-plane {
    position: absolute;
    font-size: 2rem;
    top: 22%;
    left: 17%;
    animation: fly-route 10s linear infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.travel-icon-train {
    position: absolute;
    font-size: 2rem;
    top: 30%;
    left: 48%;
    animation: train-route 8s linear infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes fly-route {
    0% {
        top: 22%;
        left: 17%;
        transform: rotate(0deg);
    }
    50% {
        top: 28%;
        left: 50%;
        transform: rotate(5deg);
    }
    100% {
        top: 30%;
        left: 50%;
        transform: rotate(0deg);
    }
}

@keyframes train-route {
    0% {
        left: 48%;
        transform: translateX(0);
    }
    25% {
        left: 50%;
        transform: translateX(0) translateY(-2px);
    }
    50% {
        left: 52%;
        transform: translateX(0);
    }
    75% {
        left: 51%;
        transform: translateX(0) translateY(-2px);
    }
    100% {
        left: 52%;
        transform: translateX(0);
    }
}

/* Train Journey Section */
.train-journey-section {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    padding: 6rem 0;
}

.train-route-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.train-route-visual {
    position: relative;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    min-height: 400px;
}

.train-track {
    position: relative;
    width: 100%;
    height: 100px;
    margin: 2rem 0;
}

.track-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.6) 10%, 
        rgba(139, 92, 246, 0.8) 50%, 
        rgba(139, 92, 246, 0.6) 90%, 
        transparent 100%);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    transform: translateY(-50%);
}

.track-line::before,
.track-line::after {
    content: '';
    position: absolute;
    top: -8px;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(139, 92, 246, 0.3) 0px,
        rgba(139, 92, 246, 0.3) 10px,
        transparent 10px,
        transparent 20px
    );
}

.track-line::after {
    top: 12px;
}

.train-icon {
    position: absolute;
    font-size: 3rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: train-move 10s linear infinite;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@keyframes train-move {
    0% {
        left: 0;
    }
    25% {
        left: 25%;
        transform: translateY(-50%) translateY(-3px);
    }
    50% {
        left: 50%;
        transform: translateY(-50%);
    }
    75% {
        left: 75%;
        transform: translateY(-50%) translateY(-3px);
    }
    100% {
        left: calc(100% - 3rem);
    }
}

.train-stations {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.station {
    text-align: center;
    flex: 1;
    position: relative;
}

.station-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: pulse-pin 2s ease-in-out infinite;
    display: inline-block;
}

.station-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.station-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.station::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(139, 92, 246, 0.3);
    z-index: -1;
}

.station:last-child::after {
    display: none;
}

.train-journey-description {
    padding: 2rem;
}

.train-journey-description p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.train-benefits {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    color: var(--secondary-color);
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .destination-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .destination-visual {
        margin-bottom: 1rem;
    }

    .destination-flag {
        font-size: 4rem;
    }

    .travel-stats {
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem 1.5rem;
    }

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

    .airplane {
        font-size: 2rem;
    }

    .cloud {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .destination-card {
        padding: 1.5rem;
    }

    .destination-header h3 {
        font-size: 1.5rem;
    }

    .destination-description {
        font-size: 1rem;
    }

    .travel-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    width: 100%;
}

/* Road Trip Visual */
.road-trip-visual {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
}

.road-trip-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.125rem;
}

.road-path {
    position: relative;
    height: 80px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
}

.road-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.6) 20%, 
        rgba(99, 102, 241, 0.8) 50%, 
        rgba(99, 102, 241, 0.6) 80%, 
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.road-marker {
    position: absolute;
    font-size: 1.5rem;
    animation: pulse-pin 2s ease-in-out infinite;
    z-index: 2;
}

.marker-1 {
    left: 5%;
    animation-delay: 0s;
}

.marker-2 {
    left: 35%;
    animation-delay: 0.5s;
}

.marker-3 {
    left: 65%;
    animation-delay: 1s;
}

.marker-4 {
    left: 95%;
    animation-delay: 1.5s;
}

.car-icon {
    position: absolute;
    font-size: 2rem;
    left: 0;
    animation: drive-road 8s linear infinite;
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes drive-road {
    0% {
        left: 0;
        transform: translateX(0);
    }
    25% {
        transform: translateX(0) translateY(-5px);
    }
    50% {
        transform: translateX(0) translateY(0);
    }
    75% {
        transform: translateX(0) translateY(-5px);
    }
    100% {
        left: calc(100% - 2rem);
        transform: translateX(0);
    }
}

.road-trip-cities {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}

/* Travel Map Section */
.travel-map-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 6rem 0;
}

.travel-map-container {
    margin-top: 3rem;
    position: relative;
}

.world-map-visual {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.continent {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.continent-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.asia {
    top: 15%;
    left: 10%;
}

.europe {
    top: 25%;
    left: 45%;
}

.eurasia {
    top: 30%;
    right: 15%;
}

.country-pin {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    animation: pulse-pin 2s ease-in-out infinite;
}

.pin-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.country-pin:hover .pin-label {
    opacity: 1;
}

.country-pin:hover .pin-dot {
    transform: scale(1.5);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.9);
}

.singapore-pin {
    top: 20%;
    left: 15%;
}

.india-pin {
    top: 25%;
    left: 20%;
}

.uk-pin {
    top: 30%;
    left: 48%;
}

.netherlands-pin {
    top: 28%;
    left: 52%;
}

.france-pin {
    top: 32%;
    left: 50%;
}

.belgium-pin {
    top: 30%;
    left: 51%;
}

.luxembourg-pin {
    top: 31%;
    left: 52%;
}

.turkey-pin {
    top: 35%;
    right: 18%;
}

.travel-routes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.travel-icon-plane {
    position: absolute;
    font-size: 2rem;
    top: 22%;
    left: 17%;
    animation: fly-route 10s linear infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.travel-icon-train {
    position: absolute;
    font-size: 2rem;
    top: 30%;
    left: 48%;
    animation: train-route 8s linear infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes fly-route {
    0% {
        top: 22%;
        left: 17%;
        transform: rotate(0deg);
    }
    50% {
        top: 28%;
        left: 50%;
        transform: rotate(5deg);
    }
    100% {
        top: 30%;
        left: 50%;
        transform: rotate(0deg);
    }
}

@keyframes train-route {
    0% {
        left: 48%;
        transform: translateX(0);
    }
    25% {
        left: 50%;
        transform: translateX(0) translateY(-2px);
    }
    50% {
        left: 52%;
        transform: translateX(0);
    }
    75% {
        left: 51%;
        transform: translateX(0) translateY(-2px);
    }
    100% {
        left: 52%;
        transform: translateX(0);
    }
}

/* Train Journey Section */
.train-journey-section {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    padding: 6rem 0;
}

.train-route-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.train-route-visual {
    position: relative;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    min-height: 400px;
}

.train-track {
    position: relative;
    width: 100%;
    height: 100px;
    margin: 2rem 0;
}

.track-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.6) 10%, 
        rgba(139, 92, 246, 0.8) 50%, 
        rgba(139, 92, 246, 0.6) 90%, 
        transparent 100%);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    transform: translateY(-50%);
}

.track-line::before,
.track-line::after {
    content: '';
    position: absolute;
    top: -8px;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(139, 92, 246, 0.3) 0px,
        rgba(139, 92, 246, 0.3) 10px,
        transparent 10px,
        transparent 20px
    );
}

.track-line::after {
    top: 12px;
}

.train-icon {
    position: absolute;
    font-size: 3rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: train-move 10s linear infinite;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@keyframes train-move {
    0% {
        left: 0;
    }
    25% {
        left: 25%;
        transform: translateY(-50%) translateY(-3px);
    }
    50% {
        left: 50%;
        transform: translateY(-50%);
    }
    75% {
        left: 75%;
        transform: translateY(-50%) translateY(-3px);
    }
    100% {
        left: calc(100% - 2rem);
    }
}

.train-stations {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.station {
    text-align: center;
    flex: 1;
    position: relative;
}

.station-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: pulse-pin 2s ease-in-out infinite;
    display: inline-block;
}

.station-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.station-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.station::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(139, 92, 246, 0.3);
    z-index: -1;
}

.station:last-child::after {
    display: none;
}

.train-journey-description {
    padding: 2rem;
}

.train-journey-description p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.train-benefits {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    color: var(--secondary-color);
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.25rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .world-map-visual {
        height: 400px;
        padding: 2rem;
    }

    .train-route-container {
        grid-template-columns: 1fr;
    }

    .train-route-visual {
        min-height: 300px;
    }

    .train-stations {
        flex-direction: column;
        gap: 2rem;
    }

    .station::after {
        display: none;
    }

    .road-trip-cities {
        flex-direction: column;
        align-items: center;
    }

    .road-path {
        height: 60px;
    }
}

