/* Contact Page Specific Styles */

body {
    background: #fafafa;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 64px 120px;
}

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

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 56px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.info-header {
    margin-bottom: 40px;
}

.info-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.08) 0%, rgba(0, 168, 107, 0.04) 100%);
    color: #00a86b;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 168, 107, 0.1);
}

.info-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.6px;
}

.info-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: -0.1px;
}

.info-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-item-value {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 56px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.form-header {
    margin-bottom: 40px;
}

.form-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.08) 0%, rgba(0, 168, 107, 0.04) 100%);
    color: #00a86b;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 168, 107, 0.1);
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.8px;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.1px;
}

.alert-success {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.08) 0%, rgba(0, 168, 107, 0.04) 100%);
    color: #00a86b;
    border: 1px solid rgba(0, 168, 107, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
    letter-spacing: -0.1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a86b;
    box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00a86b 0%, #008f5c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 168, 107, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 107, 0.35);
}

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

    .contact-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .contact-card,
    .contact-info {
        padding: 40px 32px;
    }
}
