/* filename: contact.css */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #003B73 0%, #0051A3 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 20px;
    color: #e0f2fe;
}

/* Contact Info Section */
.contact-info {
    padding: 60px 0;
    background-color: #f9fafb;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.blue-bg {
    background-color: #003B73;
}

.green-bg {
    background-color: #25D366;
}

.orange-bg {
    background-color: #FFA500;
}

.info-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.info-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-link {
    color: #003B73;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    direction: ltr;
    display: inline-block;
}

.info-link:hover {
    color: #FFA500;
}

/* Forms Section */
.forms-section {
    padding: 60px 0;
    background-color: white;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.form-container {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-header {
    padding: 32px;
    color: white;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.execution-header {
    background: linear-gradient(135deg, #003B73 0%, #0051A3 100%);
}

.design-header {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.form-header-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-form {
    padding: 32px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003B73;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 59, 115, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    color: white;
    margin-top: 24px;
    font-family: 'Vazirmatn', sans-serif;
    text-decoration: none;
}

.form-submit:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.execution-btn {
    background: linear-gradient(135deg, #003B73 0%, #0051A3 100%);
}

.execution-btn:hover {
    box-shadow: 0 8px 16px rgba(0, 59, 115, 0.3);
}

.design-btn {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.design-btn:hover {
    box-shadow: 0 8px 16px rgba(255, 165, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .forms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-container {
        border-radius: 16px;
    }
    
    .form-header {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}