.custom-form-container {
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
    margin: 0 auto;
}
.custom-form-container .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.custom-form-container .info-header, 
.custom-form-container .form-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}
.custom-form-container .header-line {
    width: 50px;
    height: 2px;
    background: #6f42c1;
}
.custom-form-container .info-header h2, 
.custom-form-container .form-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}
.custom-form-container .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.custom-form-container .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}
.custom-form-container .contact-item:hover {
    transform: translateX(5px);
    background: #f1f5f9;
}
.custom-form-container .icon-wrapper {
    background: white;
    padding: 0.75rem;
    left: 0px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.custom-form-container .icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--primary-500);
}
.custom-form-container .contact-text {
    flex: 1;
    padding-top: 0.25rem;
    position: relative;
    z-index: 0;
}
.custom-form-container .contact-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
}
.custom-form-container .contact-text p {
    color: #4a5568;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: calc(100% - 20px);
}
.custom-form-container .social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}
.custom-form-container .social-links h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}
.custom-form-container .social-icons {
    display: flex;
    gap: 1rem;
}
.custom-form-container .social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.custom-form-container .social-item:hover {
    background: #6f42c1;
    transform: translateY(-3px);
}
.custom-form-container .social-item:hover svg {
    color: white !important;
}
.custom-form-container .form-group {
    margin-bottom: 1.5rem;
}
.custom-form-container .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
}
.custom-form-container .form-group input,
.custom-form-container .form-group select,
.custom-form-container .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.custom-form-container .form-group input:focus,
.custom-form-container .form-group select:focus,
.custom-form-container .form-group textarea:focus {
    outline: none;
    border-color: #6f42c1;
    background: white;
    box-shadow: 0 0 0 4px rgba(111, 66, 193, 0.1);
}
.custom-form-container .submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.custom-form-container .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.2);
}
.custom-form-container .submit-btn svg {
    transition: transform 0.3s ease;
}
.custom-form-container .submit-btn:hover svg {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .custom-form-container {
        padding: 0 1rem;
    }
    .custom-form-container .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .custom-form-container .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}