/* ============================================================
   Diilzo Storefront — Contact page
   ============================================================ */

.dz-contact-body { background: #f5f5f5; min-height: 100vh; }
.dz-contact-hero { background: linear-gradient(135deg, var(--diilzo-primary), var(--diilzo-accent)); color: #fff; padding: 48px 20px; text-align: center; }
.dz-contact-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.dz-contact-hero p { font-size: 15px; opacity: 0.9; }
.dz-contact-main { max-width: 1000px; margin: -32px auto 0; padding: 0 20px 40px; position: relative; }
.dz-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dz-contact-info { display: flex; flex-direction: column; gap: 16px; }
.dz-contact-info-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); display: flex; gap: 16px; align-items: flex-start; }
.dz-contact-info-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; background: #DCF5EC; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--diilzo-primary); }
.dz-contact-info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.dz-contact-info-card p { font-size: 14px; color: #666; line-height: 1.5; }
.dz-contact-info-card a { color: var(--diilzo-primary); text-decoration: none; }
.dz-contact-form-wrap { background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.dz-contact-form-wrap h2 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.dz-contact-form { display: flex; flex-direction: column; gap: 16px; }
.dz-contact-field { display: flex; flex-direction: column; gap: 6px; }
.dz-contact-field label { font-size: 13px; font-weight: 600; color: #333; }
.dz-contact-field input, .dz-contact-field textarea { border: 2px solid #eee; border-radius: 8px; padding: 10px 14px; font-size: 14px; outline: none; font-family: inherit; transition: border-color 0.2s; }
.dz-contact-field input:focus, .dz-contact-field textarea:focus { border-color: var(--diilzo-primary); }
.dz-contact-field textarea { resize: vertical; min-height: 120px; }
.dz-contact-btn { height: 46px; background: var(--diilzo-primary); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: opacity 0.2s; }
.dz-contact-btn:hover { opacity: 0.9; }
@media (max-width: 768px) { .dz-contact-grid { grid-template-columns: 1fr; } }
