* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


:root {
    --primary: #ff0000;
    --primary-dark: #cc0000;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f5f5f5;
    --gray: #2a2a2a;
    --light-gray: #3a3a3a;
}

body {
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 2800px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Шапка */
header {
    background-color: rgba(10, 10, 10, 0.95);
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;

}

.logo {
    font-size: 30px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}



.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
    background: var(--gray);
}

.contact-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Навигация */
nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Герой секция */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(hero.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 200px 0 150px;
    position: relative;
    overflow: hidden;

}



a {
    color: #ffffff !important;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 10%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
    margin-top: -10%;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

.hero .btn {
    animation: fadeIn 1.5s ease;
}

/* О нас */
.about {
    background-color: var(--dark);
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.884), rgba(0, 0, 0, 0.9)), url(car3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
    border: 2px solid var(--primary);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Преимущества */
/* .services-section {
    background-color: var(--darker);
    position: relative;

    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(hero2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

} */



/* Общий контейнер для секций услуг */
.services-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(hero2.png);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}

/* Убираем индивидуальные фоны у секций */
.advantages {
    background-color: transparent;
    position: relative;
    padding: 60px 0;
}

/* Для мобильных */
@media (max-width: 768px) {
    .services-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(hero2-mobile.jpg);
    }
}





.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--gray);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.advantage-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 0, 0, 0.05));
    z-index: 1;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.advantage-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    position: relative;
    z-index: 2;
}

/* Оценка стоимости */
.cost {
    background-color: var(--dark);
}

.cost-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.cost-info {
    flex: 1;
}

.cost-info ul {
    list-style: none;
    margin: 20px 0;
}

.cost-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost-info ul li i {
    color: var(--primary);
}

.price-examples {
    background: var(--gray);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.price-examples h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-item:last-child {
    border-bottom: none;
}

.cost-form {
    flex: 1;
    background: var(--gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cost-form h3 {
    text-align: center;
    margin-bottom: 25px;
}

/* выаывпывп */
.advantage-card-single {
    background: #00000025;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.advantage-card-single:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    font-size: 4rem;
    color: #8d0303;
    margin-bottom: 30px;
    display: block;

}

.advantage-card-single h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.advantage-card-single p {
    color: #ffffff7e;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Стили для карусели */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: #ccc;
    border: 2px solid transparent;
}

.carousel-indicators button.active {
    background-color: #bb01019f;
    border-color: #97020281;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.021);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;

}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(35%) sepia(90%) saturate(2000%) hue-rotate(200deg);
}

/* Адаптивность */
@media (max-width: 768px) {
    .advantage-card-single {
        padding: 30px 20px;
        margin: 0 15px;
    }


    .advantage-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .advantage-card-single h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .advantage-card-single p {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .advantage-card-single {
        padding: 25px 15px;
    }

    .advantage-icon {
        font-size: 2.5rem;
    }

    .advantage-card-single h3 {
        font-size: 1.2rem;
    }
}

/* Формы */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    background: var(--dark);
    color: var(--light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 10px;
}

/* Подвал */
footer {
    background-color: var(--darker);
    color: white;
    padding: 70px 0 20px;
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    color: #888;
    font-size: 0.9rem;
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--gray);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--light);
}

/* Контакты в модальном окне */
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #0a0a0a9c;
    border-radius: 10px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    text-align: center;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;

}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.social-btn.phone {
    background: #27ae60;
}

.social-btn.telegram {
    background: #0088cc;
}

.social-btn.viber {
    background: #7360f2;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Карта */
.map-container {
    margin-top: 30px;
}

.map-container h3 {
    text-align: center;
    margin-bottom: 20px;
}

.map-placeholder {
    height: 300px;
    background-color: #0a0a0a9c;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Кнопки в модальном окне записи */
.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hero h1 {
        margin-top: 40%;
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .header-contacts {
        gap: 10px;
    }

    .contact-link .contact-text {
        display: none;
    }

    .contact-link {
        padding: 8px;
    }

    .address {
        display: flex;
        font-size: 0.8rem;
        ;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        gap: 40px;
    }

    .cost-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .container {
        max-width: 90%;
    }

    .logo {
        font-size: 24px;
    }

    .header-contacts {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }

    .contact-link .contact-text {
        display: inline;
    }

    .contact-link {
        padding: 10px 15px;
    }

    nav {
        width: 100%;
        margin-top: 15px;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--darker);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 150px 0 100px;
        background-attachment: scroll;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        flex-direction: column;
    }

    .cost-content {
        flex-direction: column;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 40px;
    }

    section {
        padding: 70px 0;
    }

    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .social-buttons {
        flex-direction: column;
    }

    .social-btn {
        min-width: 100%;
    }

    .modal-buttons {
        gap: 10px;
    }

    .modal-btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .map-placeholder {
        height: 200px;
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .header-contacts {
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .logo {
        font-size: 25px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    h2:after {
        bottom: -10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .about-content,
    .cost-content {
        gap: 30px;
    }

    .cost-form {
        padding: 20px 15px;
    }


    .price-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
    }

    .modal-content {
        margin: 5% auto;
        padding: 25px 15px;
    }

    .contact-item {
        padding: 12px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .header-contacts {
        flex-direction: column;
        gap: 8px;
    }

    .contact-link {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .advantage-icon {
        font-size: 40px;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }

    .modal-content {
        padding: 20px 15px;
    }

    .modal-buttons {
        gap: 8px;
    }

    .modal-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
}


.developed-links {
    display: flex;
    justify-content: center;
}


/* Добавьте это в конец вашего CSS файла */
.modal.show {
    display: block !important;
}

.modal-content {
    /* Убедитесь, что у modal-content есть эти свойства */
    position: relative;
    z-index: 2001;
}

/* Улучшите стиль кнопки закрытия */
/* Увеличиваем крестик закрытия */
.close {
    color: #aaa;
    float: right;
    font-size: 36px !important;
    /* Увеличиваем размер */
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2002;
    background: none;
    border: none;
    width: 40px;
    /* Увеличиваем область клика */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(1.1);
    /* Легкое увеличение при наведении */
}

/* Для мобильных устройств можно сделать еще больше */
@media (max-width: 768px) {
    .close {
        font-size: 42px !important;
        /* Еще больше на мобильных */
        width: 45px;
        height: 45px;
        right: 15px;
        top: 10px;
    }
}

@media (max-width: 576px) {
    .close {
        font-size: 38px !important;
        width: 40px;
        height: 40px;
        right: 10px;
        top: 5px;
    }
}


/* история */
.imcont {
    display: flex;
    justify-content: center;
}

.text-block {
    text-align: justify;
    height: 100%;
    /* Задает ширину блока в 100% от родительского контейнера */
    /* Или можно использовать max-width для гибкости */

}


.contact-item {

    flex-direction: column;

}

.cont {
    margin-top: 5%;
}

.textcont {
    text-align: center;
    font-size: 160%;
    margin-bottom: 2%;
    font-weight: bold;
    margin-top: -5%;
}

/* Отладочные стили - убедимся что кнопки видны */
.social-btn {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 15px 25px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    min-width: 180px !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    border: 2px solid transparent !important;
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.social-btn.phone {
    background: #27ae60 !important;
}

.social-btn.telegram {
    background: #0088cc !important;
}

.social-btn.viber {
    background: #7360f2 !important;
}

.social-btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}