.contact-section {
    position: relative;
    width: 100%;
    padding: 6rem 0 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    overflow: hidden;
}

.contact-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    text-align: center;
}

.contact-heading span {
    color: #d4af37;
}

/* Carousel Container & Track */
.contact-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
    touch-action: none;
}

.contact-carousel:active {
    cursor: grabbing;
}

.contact-cards {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    width: max-content;
    will-change: transform;
    padding: 20px 0;
}

.contact-card {
    position: relative;
    flex: 0 0 220px;
    height: 300px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-decoration: none;
    will-change: transform, opacity;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.18), 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(212, 175, 55, 0.04));
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease, width 0.4s ease;
}

.contact-card:hover::before {
    opacity: 1;
    width: 75%;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 35%;
    height: 220%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transform: rotate(20deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

.contact-card:hover::after {
    left: 130%;
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.15) translateY(-3px);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.55), 0 6px 20px rgba(212, 175, 55, 0.3);
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.25), rgba(255, 255, 255, 0.03));
}

.contact-card__icon svg {
    width: 100%;
    height: 100%;
    fill: #8a8a8a;
    transition: fill 0.3s ease;
}

.contact-card:hover .contact-card__icon svg {
    fill: #d4af37;
}

.contact-card__text {
    width: 100%;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

.contact-card__text--inner {
    display: block;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 2px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-card:hover .contact-card__text--inner {
    color: #f2d675;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.contact-card__sub {
    display: block;
    margin-top: 6px;
    color: #8f8f8f;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card__sub {
    color: #d4af37;
}

@media (max-width: 750px) {
    .contact-section {
        padding: 4rem 0 6rem;
    }

    .contact-cards {
        gap: 1.6rem;
    }

    .contact-card {
        flex: 0 0 180px;
        height: 260px;
    }

    .contact-card__icon {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex: 0 0 150px;
        height: 240px;
    }

    .contact-card__icon {
        width: 44px;
        height: 44px;
    }
}