.hero-background {
    background: radial-gradient(50% 50% at 50% 50%, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    border-radius: 0px 0px 25px 25px;
}

.platform-background {
    background: linear-gradient(180deg, #232B24 0%, #0B0E0C 100%);
    border: 2px solid #192017;
    backdrop-filter: blur(7px);
    border-radius: 25px;
}

/* Services Section */
.service-card {
    position: relative;
    display: block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

/* Ensure images don't break layout if missing */
.service-card img {
    object-fit: cover;
}

/* Fleet Section */
.fleet-card {
    position: relative;
    display: block;
}

/* Trending Destinations */
.infinite-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.infinite-line-destinations {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-right 30s linear infinite;
    font-size: 2rem;
    font-weight: 400;
    color: #A3BBAC;
}

.infinite-line-reverse {
    animation: scroll-left 30s linear infinite;
}

.destination-link {
    color: #A3BBAC;
    text-decoration: none;
    padding: 0 1rem;
    transition: color 0.3s ease;
    display: inline-block;
    cursor: none;
}

.destination-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Make adjacent dots turn primary when link is hovered */
.destination-link:hover + .destination-dot,
.destination-dot:has(+ .destination-link:hover) {
    background-color: var(--color-primary);
}

.destination-dot {
    background-color: #A3BBAC;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    transition: background-color 0.3s ease;
}

/* Custom Cursor */
.custom-destination-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 9999;
    display: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
}

.custom-destination-cursor.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}