﻿/* === SHARE SECTION (FINAL CLEAN VERSION) === */
.share-section {
    /*background: repeating-linear-gradient(45deg, #000, #3c3636bf 100px);*/
    background-position: center;
    background-size: 107px 108px;
    background-attachment: fixed;
    padding: 30px 0 40px;
    text-align: center;
    color: #fff;
    border-top: 3px solid #ff6b35;
    border-bottom: 3px solid #ff6b35;
    background-color:#fff;
}

/* WhatsApp Share Box */
.share-whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 90%;
    max-width: 350px;
    margin: 0 auto 20px;
}

    .share-whatsapp .input-wrapper {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 8px;
        padding: 6px 12px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.25);
        width: 100%;
    }

        .share-whatsapp .input-wrapper label {
            color: #333;
            font-weight: 600;
            margin-right: 6px;
        }

        .share-whatsapp .input-wrapper input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            padding: 8px;
        }

/* WhatsApp button */
.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: 0.3s ease;
}

    .whatsapp-btn:hover {
        background: #1ebe5d;
    }

/* Add to Phone Book */
.shadow-btn {
    width: 90%;
    max-width: 350px;
    margin: 15px auto;
}

    .shadow-btn .addphonebook {
        display: block;
        background: #ff6b35;
        color: #fff;
        font-weight: 600;
        padding: 12px;
        border-radius: 8px;
        text-decoration: none;
        transition: 0.3s ease;
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

        .shadow-btn .addphonebook:hover {
            background: #e95c28;
        }

/* Share toggle button */
.share-toggle {
    margin-top: 10px;
}

.share-main-btn {
    background: #0077c8;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .share-main-btn:hover {
        background: #005fa6;
    }

/* Social icons */
#social-share {
    list-style: none;
    display: none;
    justify-content: center;
    gap: 14px;
    margin-top: 15px;
    padding: 0;
}

    #social-share.show {
        display: flex;
        animation: fadeIn 0.4s ease;
    }

    #social-share li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        font-size: 20px;
        color: #fff;
        transition: 0.3s;
    }

    #social-share a:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

    /* Icon colors */
    #social-share .fa-facebook {
        background: #1877f2;
    }

    #social-share .fa-twitter {
        background: #1da1f2;
    }

    #social-share .fa-instagram {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    #social-share .fa-linkedin {
        background: #0077b5;
    }

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
