/* Modern Contact Page Styles */

/* Contact Section Wrapper */
.contact-section {
    position: relative;
    overflow: hidden;
}

/* Abstract Background Elements */
.contact-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.contact-bg-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Contact Grid Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }
}

/* Contact Info Side */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.3);
}

.contact-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

.contact-detail-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Form Side */
.contact-form-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-heading);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-body);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}