/* Main Section Styles */
.socials {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Title */
.socials__title {
    font-weight: 600;
    font-size: 3rem;
    text-align: center;
    color: #2d2d2d;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .socials__title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Slider / Gallery */
.socials__gallery {
    width: 100%;
    margin-bottom: 60px;
    padding: 20px 0;
}

.socials__swiper {
    width: 100%;
    overflow: visible;
}

.socials__slide {
    width: 320px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

@media (min-width: 992px) {
    .socials__slide {
        width: 400px;
        height: 180px;
    }
}

.socials__image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.socials__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect on Slide */
.socials__slide:hover .socials__img {
    transform: scale(1.1);
}

/* Buttons Container */
.socials__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Button Common Styles */
.socials__btn {
    display: flex;
    align-items: center;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    color: #2d2d2d;
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
    justify-content: center;
}

.socials__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.socials__btn:active {
    transform: scale(0.98);
}

.socials__icon-wrap {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.socials__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Instagram Button (Gradient Border) */
.socials__btn--insta {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(90deg, #5CB65B 0%, #9D4EDD 100%) border-box;
    border: 2px solid transparent;
}

/* Telegram Button */
.socials__btn--tg {
    background-color: #F6F6FE;
    border: 2px solid #D6D6F5;
    color: #333;
}

/* VKontakte Button */
.socials__btn--vk {
    background-color: #F6F6FE;
    border: 2px solid #D6D6F5;
    color: #333;
}

/* Button Text Fixes */
.socials__btn--tg .socials__btn-text,
.socials__btn--vk .socials__btn-text {
    color: #333;
    font-weight: 600;
}

.socials__btn--insta .socials__btn-text {
    color: #000;
    font-weight: 600;
}

/* Parallax Effect Targets */
.socials__btn {
    will-change: transform;
}