/* Instagram DM Styles */

/* Form Divider */
.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0.5rem 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.form-divider span {
    padding: 0 1rem;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Instagram DM Button in Form */
.instagram-dm-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.instagram-dm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.5);
}

.instagram-dm-btn i {
    font-size: 1.3rem;
}

/* Social CTA Group - Installation Gallery */
.social-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.instagram-dm-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-glow-instagram 2s ease-in-out infinite;
}

.instagram-dm-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.6);
}

.instagram-dm-cta i {
    font-size: 1.1rem;
    animation: shake 1s ease-in-out infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

@keyframes pulse-glow-instagram {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(131, 58, 180, 0.4);
    }

    50% {
        box-shadow: 0 6px 25px rgba(131, 58, 180, 0.7);
    }
}

/* Review Buttons Group - Testimonials */
.review-buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.instagram-review-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #833ab4, #e1306c);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.4);
    text-decoration: none;
}

.instagram-review-btn:hover {
    background: linear-gradient(45deg, #e1306c, #833ab4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.5);
}

.instagram-review-btn i {
    margin-right: 8px;
}

/* Footer Instagram DM Highlight */
.instagram-dm-highlight {
    background: linear-gradient(90deg, rgba(131, 58, 180, 0.1), rgba(225, 48, 108, 0.1));
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #833ab4;
}

.instagram-dm-highlight .dm-link {
    color: #833ab4;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-dm-highlight .dm-link:hover {
    color: #e1306c;
    text-decoration: underline;
}

.instagram-dm-highlight i {
    color: #833ab4;
}

/* Instagram Float Button */
.instagram-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float-instagram 3s ease-in-out infinite;
}

.instagram-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.6);
}

@keyframes float-instagram {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .social-cta-group,
    .review-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .instagram-dm-btn,
    .instagram-dm-cta,
    .instagram-review-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        margin: 0.5rem auto;
        /* Center button */
    }

    .instagram-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .form-divider {
        margin: 0.8rem 0;
    }
}