@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* ── SECTION ── */
.akl-location-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #fdf8f0 0%, #fef3e2 50%, #fdf8f0 100%);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Warm floating particle dots */
.akl-location-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(200,140,20,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 70%, rgba(200,140,20,0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 15%, rgba(220,100,20,0.30) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 60%, rgba(200,140,20,0.20) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 30%, rgba(200,140,20,0.30) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 20% 85%, rgba(220,160,40,0.20) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 90%, rgba(200,140,20,0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 45%, rgba(245,200,66,0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 80%, rgba(212,160,40,0.30) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Warm ambient glow blob */
.akl-location-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,40,0.10) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
    animation: blobDrift 8s ease-in-out infinite alternate;
}

@keyframes blobDrift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(60px, 40px); }
}

.akl-heading,
.akl-carousel {
    position: relative;
    z-index: 1;
}

/* ── HEADING ── */
.akl-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #3a2500;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    animation: fadeSlideDown 0.8s ease both;
}

.akl-heading h2 span {
    background: linear-gradient(90deg, #7a4f00, #c8860c, #f5c230, #d4880a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: akGoldShimmer 5s linear infinite;
}

@keyframes akGoldShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.akl-heading p {
    color: rgba(80,55,20,0.55);
    margin-bottom: 60px;
    font-size: 15px;
    animation: fadeSlideDown 0.9s ease both;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── CAROUSEL WRAPPER ── */
.akl-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

/* ── TRACK ── */
.akl-track {
    display: flex;
    gap: 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 30px 10px 40px;
}
.akl-track::-webkit-scrollbar { display: none; }

/* ── ITEM ── */
.akl-item {
    min-width: 120px;
    text-decoration: none;
    color: rgba(80,55,20,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), color 0.3s;
    scroll-snap-align: center;
    animation: itemFadeIn 0.6s ease both;
}

@keyframes itemFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.akl-item:hover {
    transform: translateY(-14px) scale(1.05);
    color: #3a2500;
}

/* ── PIN ── */
.akl-pin {
    width: 88px;
    height: 88px;
    background: radial-gradient(circle at 35% 35%, #fff4c2 0%, #f5c230 30%, #d4800a 70%, #a04010 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow:
        0 8px 24px rgba(160,80,10,0.28),
        0 0 0 0 rgba(200,150,12,0.25);
    position: relative;
    transition: box-shadow 0.3s, background 0.3s;
}

.akl-item:hover .akl-pin {
    background: radial-gradient(circle at 35% 35%, #fffbe0 0%, #f5c842 30%, #d4880a 65%, #a03008 100%);
    box-shadow:
        0 12px 36px rgba(160,80,10,0.42),
        0 0 50px rgba(200,150,12,0.20);
}

/* ── PIN RING ── */
.akl-pin::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50% 50% 50% 0;
    border: 1.5px solid rgba(200,150,12,0.28);
    transition: border-color 0.3s;
}

.akl-item:hover .akl-pin::before {
    border-color: rgba(200,150,12,0.65);
}

/* ── IMAGE ── */
.akl-pin img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    transform: rotate(45deg);
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.55);
    transition: border-color 0.3s;
}

.akl-item:hover .akl-pin img {
    border-color: rgba(255,255,255,0.90);
}

/* ── ACTIVE GLOW PULSE ── */
.akl-item.active .akl-pin {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%   { box-shadow: 0 8px 24px rgba(160,80,10,0.35), 0 0 0 0   rgba(200,150,12,0.40); }
    60%  { box-shadow: 0 8px 24px rgba(160,80,10,0.20), 0 0 0 22px rgba(200,150,12,0); }
    100% { box-shadow: 0 8px 24px rgba(160,80,10,0.35), 0 0 0 0   rgba(200,150,12,0); }
}

/* ── RIPPLE on click ── */
.akl-pin.ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 50% 0;
    background: rgba(255,255,255,0.35);
    animation: rippleOut 0.5s ease forwards;
}

@keyframes rippleOut {
    from { opacity: 1; transform: scale(1); }
    to   { opacity: 0; transform: scale(1.8); }
}

/* ── LABEL ── */
.akl-item span {
    display: block;
    margin-top: 18px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s;
    color: rgba(80,55,20,0.75);
}

.akl-item:hover span {
    color: #c8860c;
}

/* ── ARROWS ── */
.akl-arrow {
    background: rgba(200,150,12,0.10);
    border: 1px solid rgba(200,150,12,0.35);
    color: #c8860c;
    font-size: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: background 0.25s, border-color 0.25s, transform 0.2s, color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akl-arrow:hover {
    background: rgba(200,150,12,0.22);
    border-color: rgba(200,150,12,0.70);
    color: #7a4f00;
    transform: scale(1.1);
}

.akl-arrow:active {
    transform: scale(0.95);
}

.akl-left  { left: -22px; }
.akl-right { right: -22px; }

/* ── FADE EDGES ── */
.akl-carousel::before,
.akl-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.akl-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fdf8f0, transparent);
}

.akl-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fdf8f0, transparent);
}