/* css/contact.css */
/* Page Header */
.page-header {
    background: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?q=80&w=2000&auto=format&fit=crop') center/cover fixed;
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 42, 0.95), rgba(11, 19, 42, 0.7));
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 52px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-header h1 span {
    color: var(--primary-color);
}

.page-header p {
    font-size: 20px;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.contact-info-wrapper h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info-wrapper p {
    color: #a0aec0;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 22px;
    color: var(--primary-color);
    background: rgba(247, 80, 35, 0.15);
    width: 50px; height: 50px;
    display: flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-item .contact-text p {
    color: #a0aec0;
    margin: 0;
    font-size: 16px;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-form-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 32px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
    color: var(--text-dark);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(247, 80, 35, 0.1);
}

textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .page-header h1 { font-size: 40px; }
    .contact-form-wrapper { padding: 30px 20px; }
    .contact-info-wrapper { padding: 30px 20px; }
}