/* Forms Section */
.forms {
    padding: 60px 0;
    background: linear-gradient(135deg, #F0F4F8 0%, #FFFFFF 50%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.forms::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.forms__wrapper {
    position: relative;
    z-index: 2;
}

.forms__box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.forms__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.forms__title span {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.forms__title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E5E7EB, transparent);
    z-index: -1;
}

.forms__title span::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 14px 18px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

/* Form spacing */
.forms__box .my-0 {
    margin: 0 0 20px 0 !important;
}

.forms__box .my-4 {
    margin: 20px 0 !important;
}

.forms__box .my-4:last-of-type {
    margin-bottom: 25px !important;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: #9CA3AF;
    font-size: 14px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Form Button */
.forms__button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.forms__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.forms__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.forms__button:hover::before {
    left: 100%;
}

.forms__button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Success Message */
#jq_success {
    padding: 12px 20px;
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    border: 1px solid #10B981;
    border-radius: 10px;
    color: #065F46;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.footer .container {
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
    color: var(--primary-light);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #6B7280;
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #9CA3AF;
    font-size: 12px;
    font-weight: 500;
}

.footer-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary-light);
}

/* Mobile Responsive - Forms */
@media (max-width: 768px) {
    .forms {
        padding: 40px 0;
    }
    
    .forms__box {
        margin: 0 15px;
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .forms__title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .forms__button {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .my-4 {
        margin: 15px 0 !important;
    }
}

/* Mobile Responsive - Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-logo svg {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-links {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-social {
        margin-bottom: 25px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-badges {
        gap: 10px;
    }
    
    .footer-badge {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .footer-badge svg {
        width: 14px;
        height: 14px;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
    .forms__box {
        max-width: 500px;
        padding: 35px 30px;
    }
    
    .footer-content {
        gap: 25px;
    }
}