/* ==========================================================================
   CONTACT SECTION, GLASSFORM & FOOTER COMPONENT
   ========================================================================== */

.contact-section .page-decor-raccoon {
    display: none !important;
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4C1D95 0%, #6D28D9 50%, #7C3AED 100%);
    color: #FFFFFF;
}

.contact-section .section-title {
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
    font-weight: 800;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.15rem;
}

.contact-form-wrapper {
    max-width: 580px;
    margin: 0 auto;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius-lg);
    padding: 2.4rem 2.2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.contact-form label {
    display: block;
    color: #1e1b4b !important;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
    text-shadow: none !important;
}

.contact-form .form-input,
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="date"] {
    width: 100%;
    display: block;
    padding: 0.95rem 1.1rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 1.5px solid #cbd5e1 !important;
    background: #f8fafc !important;
    color: #1e1b4b !important;
    font-weight: 600;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    box-shadow: none;
}

.contact-form .form-input:focus,
.contact-form input:focus {
    outline: none;
    border-color: #7c3aed !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15) !important;
}

.contact-form .form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: #475569 !important;
    margin-top: 1rem;
    margin-bottom: 1.3rem;
    text-align: left;
    line-height: 1.45;
}

.contact-form .form-consent label {
    display: inline;
    font-weight: 500;
    font-size: 0.82rem;
    color: #475569 !important;
    margin-bottom: 0;
    text-shadow: none !important;
}

.contact-form .form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    accent-color: #7c3aed;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form .form-consent a {
    color: #7c3aed !important;
    text-decoration: underline;
    font-weight: 700;
}

.contact-form .btn-submit {
    width: 100% !important;
    padding: 1rem 1.4rem !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35) !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.35 !important;
    min-height: 52px;
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5) !important;
}

@media (max-width: 768px) {
    .contact-section { padding: 3rem 0; }

    .contact-section .section-title { font-size: 2rem; }

    .contact-section .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .contact-form-wrapper {
        width: 100%;
        padding: 1.5rem 1.15rem;
        border-radius: 18px;
    }

    .contact-form .form-input,
    .contact-form input[type="text"],
    .contact-form input[type="tel"],
    .contact-form input[type="date"] {
        min-height: 52px;
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }

    .contact-form .form-consent { margin-bottom: 1.25rem; }
    .contact-form .form-consent input[type="checkbox"] { width: 20px; height: 20px; }
    .contact-form .btn-submit { min-height: 54px; font-size: 1.05rem; }

    .whatsapp-float {
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Footer */
.footer {
    background: #0F172A;
    color: #FFFFFF;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-social .social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.footer-social .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-social .social-link.social-vk:hover {
    background: #0077ff;
    border-color: #0077ff;
    color: #ffffff;
}

.footer-social .social-link.social-tg:hover {
    background: #229ed9;
    border-color: #229ed9;
    color: #ffffff;
}

.footer-social .social-link.social-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #1E293B;
    color: #64748B;
    font-size: 0.9rem;
}

