.contact-container {
    padding-top: 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.contact-card i {
    width: 48px;
    height: 48px;
    color: #0066CC;
    margin-bottom: 16px;
}
.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}
.contact-card p {
    color: #64748b;
    margin-bottom: 16px;
}
.contact-card a {
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
}
.contact-card a:hover {
    text-decoration: underline;
}
.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-form-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-form-card h2 i[data-lucide] {
    width: 28px;
    height: 28px;
    color: #0066CC;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-primary {
    background: linear-gradient(135deg, #0066CC 0%, #0052a3 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}
.btn-primary i[data-lucide] {
    width: 20px;
    height: 20px;
}
.alert {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}
.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}
.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}
.contact-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.contact-hero-content {
    text-align: center;
    margin-bottom: 60px;
}
.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.contact-hero h1 i {
    width: 48px;
    height: 48px;
    color: #0066CC;
}
.contact-hero p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.contact-container-bottom {
    padding-bottom: 80px;
}
