/* ============================================
   PREMIUM LOCATIONS SECTION - FIND US IN AALBORG
   ============================================ */

.locations-world-class {
    padding: 6rem 0;
    background: linear-gradient(180deg,
        #0f172a 0%,
        #1e293b 50%,
        #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.locations-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.8;
    }
}

.locations-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.8) 0%,
        rgba(15, 23, 42, 0.4) 50%,
        rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
}

/* Premium Header */
.locations-header-premium {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.header-badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.2) 0%,
        rgba(34, 197, 94, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: var(--primary-green);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow:
        0 8px 32px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.badge-icon-animated {
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.locations-title-hero {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.locations-subtitle-premium {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.locations-subtitle-premium strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* Horizontal Scrollable Container */
.locations-scroll-container {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
    overflow: visible;
}

/* Gradient Fade Edges */
.locations-scroll-container::before,
.locations-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.8;
}

.locations-scroll-container::before {
    left: 0;
    background: linear-gradient(90deg,
        #0f172a 0%,
        rgba(15, 23, 42, 0.8) 30%,
        transparent 100%);
}

.locations-scroll-container::after {
    right: 0;
    background: linear-gradient(270deg,
        #0f172a 0%,
        rgba(15, 23, 42, 0.8) 30%,
        transparent 100%);
}

.locations-carousel-premium {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 2rem 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.locations-carousel-premium::-webkit-scrollbar {
    display: none;
}

/* Premium Location Card */
.location-card-premium {
    flex: 0 0 400px;
    scroll-snap-align: center;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Card Glow Effect */
.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
        rgba(34, 197, 94, 0.25) 0%,
        rgba(34, 197, 94, 0.1) 40%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.location-card-premium:hover .card-glow-effect {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Shine Overlay */
.card-shine-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%);
    transform: skewX(-25deg);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card-premium:hover .card-shine-overlay {
    left: 150%;
}

.location-card-premium:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(34, 197, 94, 0.25),
        inset 0 2px 2px rgba(255, 255, 255, 0.2),
        inset 0 -2px 2px rgba(0, 0, 0, 0.1);
    border-color: rgba(34, 197, 94, 0.5);
}

/* Day-specific gradients with rounded corners */
.monday-card {
    background: linear-gradient(145deg,
        rgba(59, 130, 246, 0.08) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    position: relative;
}

.monday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 28px 28px 0 0;
}

.monday-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(59, 130, 246, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

.tuesday-card {
    background: linear-gradient(145deg,
        rgba(139, 92, 246, 0.08) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    position: relative;
}

.tuesday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    border-radius: 28px 28px 0 0;
}

.tuesday-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(139, 92, 246, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

.wednesday-card {
    background: linear-gradient(145deg,
        rgba(236, 72, 153, 0.08) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    position: relative;
}

.wednesday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #f472b6);
    border-radius: 28px 28px 0 0;
}

.wednesday-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(236, 72, 153, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

.thursday-card {
    background: linear-gradient(145deg,
        rgba(245, 158, 11, 0.08) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    position: relative;
}

.thursday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 28px 28px 0 0;
}

.thursday-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(245, 158, 11, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

.friday-card {
    background: linear-gradient(145deg,
        rgba(16, 185, 129, 0.08) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    position: relative;
}

.friday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 28px 28px 0 0;
}

.friday-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(16, 185, 129, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

/* Day Header */
.location-day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.day-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.day-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.day-name-large {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.day-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* 3D Location Visual */
.location-visual-premium {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin: 1.5rem 0;
    background: radial-gradient(circle,
        rgba(34, 197, 94, 0.1) 0%,
        transparent 60%);
    border-radius: 50%;
}

.location-icon-3d {
    font-size: 4.5rem;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    animation: iconFloat 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

.location-card-premium:hover .location-icon-3d {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 12px 30px rgba(34, 197, 94, 0.4));
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(8deg);
    }
}

.icon-ring-1,
.icon-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.3);
    transition: all 0.4s ease;
}

.location-card-premium:hover .icon-ring-1,
.location-card-premium:hover .icon-ring-2 {
    border-color: rgba(34, 197, 94, 0.6);
    border-width: 3px;
}

.icon-ring-1 {
    width: 90px;
    height: 90px;
    animation: ringPulse1 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.icon-ring-2 {
    width: 120px;
    height: 120px;
    animation: ringPulse2 4s ease-in-out infinite 0.8s;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

@keyframes ringPulse1 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15) rotate(180deg);
        opacity: 0.9;
    }
}

@keyframes ringPulse2 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2) rotate(-180deg);
        opacity: 0.7;
    }
}

/* Location Content */
.location-content-premium {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.location-title-premium {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.location-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.meta-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

/* Location Footer */
.location-footer-premium {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.btn-premium-map {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-premium-map:hover::before {
    left: 100%;
}

.btn-premium-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
    color: white;
}

.btn-icon-premium {
    font-size: 1.25rem;
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-premium-map:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-premium-website {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-premium-website::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-premium-website .btn-icon-premium {
    position: relative;
    z-index: 1;
}

.btn-premium-website:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.12) 100%);
    border-color: var(--primary-green);
    transform: scale(1.12) rotate(5deg);
    box-shadow:
        0 8px 20px rgba(34, 197, 94, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-premium-website:hover::before {
    opacity: 0.2;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-btn .nav-icon {
    position: relative;
    z-index: 1;
}

.nav-btn:hover {
    border-color: var(--primary-green);
    transform: scale(1.15);
    box-shadow:
        0 12px 32px rgba(34, 197, 94, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.nav-btn:hover::before {
    opacity: 0.3;
}

.carousel-dots {
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--primary-green);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.dot.active {
    background: var(--primary-green);
    width: 40px;
    border-radius: 6px;
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.dot:hover {
    background: rgba(34, 197, 94, 0.5);
    border-color: var(--primary-green);
    transform: scale(1.2);
}

/* Simple Info Text */
.locations-info-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.locations-info-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.locations-info-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

.locations-info-text a {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.locations-info-text a:hover {
    border-bottom-color: var(--primary-green);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .locations-world-class {
        padding: 5rem 0;
    }

    .locations-header-premium {
        margin-bottom: 2.5rem;
    }

    .locations-title-hero {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .locations-subtitle-premium {
        font-size: 1.1rem;
    }

    .location-card-premium {
        flex: 0 0 360px;
        padding: 2rem;
    }

    .location-icon-3d {
        font-size: 4rem;
    }

    .location-visual-premium {
        height: 110px;
    }

    .icon-ring-1 {
        width: 85px;
        height: 85px;
    }

    .icon-ring-2 {
        width: 110px;
        height: 110px;
    }

    .location-title-premium {
        font-size: 1.35rem;
    }

    .nav-btn {
        width: 52px;
        height: 52px;
    }

    .locations-info-text p {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .locations-world-class {
        padding: 3rem 0;
        overflow: hidden;
    }

    .locations-header-premium {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .header-badge-glow {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .badge-icon-animated {
        font-size: 1rem;
    }

    .locations-title-hero {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .locations-subtitle-premium {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .locations-scroll-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(34, 197, 94, 0.3) transparent;
        padding: 0 1rem;
        margin: 0 -1rem;
    }

    .locations-scroll-container::-webkit-scrollbar {
        height: 4px;
    }

    .locations-scroll-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .locations-scroll-container::-webkit-scrollbar-thumb {
        background: rgba(34, 197, 94, 0.3);
        border-radius: 2px;
    }

    .locations-carousel-premium {
        gap: 1rem;
        padding: 1rem;
        width: max-content;
        overflow: visible;
    }

    .location-card-premium {
        flex: 0 0 280px;
        width: 280px;
        padding: 1.5rem;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .location-day-header {
        margin-bottom: 1rem;
    }

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

    .day-name-large {
        font-size: 0.9rem;
    }

    .day-status {
        font-size: 0.75rem;
    }

    .location-icon-3d {
        font-size: 3rem;
    }

    .location-visual-premium {
        height: 90px;
        margin: 1rem 0;
    }

    .icon-ring-1 {
        width: 65px;
        height: 65px;
    }

    .icon-ring-2 {
        width: 85px;
        height: 85px;
    }

    .location-title-premium {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .location-meta-grid {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    .meta-item {
        padding: 0.625rem;
    }

    .meta-icon {
        font-size: 1rem;
    }

    .meta-label {
        font-size: 0.7rem;
    }

    .meta-value {
        font-size: 0.85rem;
    }

    .location-footer-premium {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn-premium-map {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .btn-premium-website {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .btn-icon-premium {
        font-size: 1rem;
    }

    .btn-arrow {
        font-size: 1rem;
    }

    .carousel-navigation {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .locations-info-text {
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .locations-info-text p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

