﻿/* ===== SOCIAL MEDIA SECTION - FIXED VERSION ===== */
.social-appointment-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.08);
    border: 1px solid #e8f5e9;
}

.social-section-title {
    color: #2c3e50;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 12px;
}

    .social-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #a8e6cf, #4CAF50);
        border-radius: 2px;
    }

.social-section-subtitle {
    color: #7f8c8d;
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* ===== SOCIAL GRID CONTAINER ===== */
.social-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

/* ===== SOCIAL MEDIA CARDS ===== */
.social-media-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

    .social-media-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

/* Card Top Section */
.social-card-top {
    margin-bottom: 20px;
}

.social-media-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 24px;
}

.social-media-name {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Card Middle Section */
.social-card-middle {
    margin-bottom: 20px;
}

.social-media-desc {
    color: #5d6d7e;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Card Buttons */
.social-media-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
}

    .social-media-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

/* ===== SPECIFIC CARD STYLES ===== */
.social-card-whatsapp .social-media-icon {
    background: #e8f5e9;
    color: #25D366;
}

.social-card-whatsapp .social-media-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-card-instagram .social-media-icon {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    color: white;
}

.social-card-instagram .social-media-btn {
    background: linear-gradient(135deg, #833AB4, #FD1D1D);
}

.social-card-snapchat .social-media-icon {
    background: #FFFC00;
    color: #000;
}

.social-card-snapchat .social-media-btn {
    background: linear-gradient(135deg, #FFFC00, #FFD700);
    color: #333;
}

/* ===== CONTACT INFORMATION ===== */
.social-contact-info {
    background: #f8fdf8;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e8f5e9;
    margin-top: 20px;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-content {
    flex-grow: 1;
}

.contact-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #27ae60;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 5px;
}

    .contact-phone:hover {
        color: #219651;
    }

    .contact-phone i {
        font-size: 16px;
    }

.contact-hours {
    color: #7f8c8d;
    font-size: 13px;
    margin: 0;
}
/* Ensure overlay works on top of bg-img */
.instagram-section.youtube-item {
    position: relative;
}

    /* Make the play icon look like IG overlay */
    .instagram-section.youtube-item .youtube-play {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.55);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

        .instagram-section.youtube-item .youtube-play i {
            color: #fff;
            font-size: 28px;
            line-height: 1;
        }

        .instagram-section.youtube-item .youtube-play:hover {
            background: rgba(0, 0, 0, 0.75);
        }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .social-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-grid-container {
        grid-template-columns: 1fr;
    }

    .social-appointment-box {
        padding: 25px 20px;
    }

    .social-contact-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-phone {
        justify-content: center;
    }
}
