.akl-location-section {
    padding: 110px 40px;
    background: #f9f9f9;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* HEADING */
.akl-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.akl-heading p {
    color: #666;
    margin-bottom: 60px;
}

/* CAROUSEL */
.akl-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

/* TRACK */
.akl-track {
    display: flex;
    gap: 70px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.akl-track::-webkit-scrollbar {
    display: none;
}

/* ITEM */
.akl-item {
    min-width: 160px;
    text-decoration: none;
    color: #222;
    transition: 0.3s;
    scroll-snap-align: center;
}

/* PIN */
.akl-pin {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg,#ff5a00,#ff8c00);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 10px 30px rgba(255,90,0,0.3);
    position: relative;
}

/* IMAGE */
.akl-pin img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transform: rotate(45deg);
    object-fit: cover;
    border: 3px solid #fff;
}

/* GLOW PULSE */
.akl-item.active .akl-pin {
    animation: glowPulse 1.5s infinite;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,90,0,0.5); }
    70% { box-shadow: 0 0 0 20px rgba(255,90,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,90,0,0); }
}

/* TEXT */
.akl-item span {
    display: block;
    margin-top: 15px;
}

/* ARROWS */
.akl-arrow {
    background: #ff5a00;
    border: none;
    color: #fff;
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 10;
}

.akl-left { left: -20px; }
.akl-right { right: -20px; }

/* HOVER */
.akl-item:hover {
    transform: translateY(-10px);
}