/* Kontakt page-specific styles */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-xl); align-items: start; }
.calendly-box { min-height: 480px; overflow: hidden; }
.calendly-placeholder { width: 100%; height: 360px; background: var(--bg-secondary); border: 2px dashed var(--border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--text-muted); font-size: .9rem; }
.calendly-placeholder span { font-size: 2.5rem; }
.calendly-note { font-size: .85rem; color: var(--text-muted); margin-top: 16px; font-style: italic; }
.calendly-inline-widget { border-radius: var(--radius-md); overflow: hidden; }
.expect-list { display: flex; flex-direction: column; gap: 20px; }
.expect-item { display: flex; gap: 16px; align-items: flex-start; }
.expect-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--accent-glow); border: 1px solid var(--accent-border-hover); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.expect-text h3 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.expect-text p { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; }
.direct-grid { display: flex; flex-direction: column; gap: 24px; }
.direct-item { display: flex; gap: 16px; align-items: center; padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all .3s; box-shadow: var(--card-shadow); }
.direct-item:hover { border-color: var(--accent-border-subtle); }
.direct-icon { font-size: 1.4rem; }
.direct-item strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.direct-item span { font-size: .88rem; color: var(--text-muted); }
.direct-item a { color: var(--accent); text-decoration: none; font-size: .9rem; }
.address-block { margin-top: var(--space-xl); padding: 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; box-shadow: var(--card-shadow); }
/* CF7 style overrides */
.wpcf7 input, .wpcf7 textarea, .wpcf7 select { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; color: var(--text-primary); font-family: var(--font); font-size: .9rem; }
.wpcf7 input:focus, .wpcf7 textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.wpcf7-submit { background: var(--text-primary); color: #ffffff; padding: 14px 36px; border-radius: var(--radius-pill); font-weight: 600; cursor: pointer; transition: all .3s; border: none; font-family: var(--font); }
[data-theme="dark"] .wpcf7-submit { background: #f1f5f9; color: #0f172a; }
/* Honeypot – invisible to humans */
.form-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; opacity: 0; }
/* Form row – 2 columns side by side */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* Form messages */
.form-message { padding: 20px 24px; border-radius: var(--radius-md); margin-bottom: 24px; font-size: .9rem; line-height: 1.5; }
.form-success { background: var(--success-bg); border: 1px solid var(--success-border); color: var(--success); display: flex; gap: 12px; align-items: flex-start; }
.form-success strong { display: block; margin-bottom: 4px; color: var(--success); }
.form-success p { margin: 0; color: var(--text-secondary); }
.form-error { background: var(--error-bg); border: 1px solid var(--error-border); color: var(--error); }
/* Privacy checkbox */
.form-privacy { margin-top: 8px; }
.checkbox-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: .85rem; color: var(--text-secondary); line-height: 1.5; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.checkbox-label a { color: var(--accent); text-decoration: underline; }
/* Zeeg inline widget */
.zeeg-inline-widget { min-height: 750px; border-radius: var(--radius-xl); overflow: hidden; width: 100%; height: auto; }
.zeeg-inline-widget iframe { width: 100%; min-height: 750px; border: none; border-radius: var(--radius-xl); }
/* Placeholder centering (only when no widget) */
.calendly-box:has(.calendly-placeholder) { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--space-xl); }
@media (max-width: 1024px) { .contact-grid, .form-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .address-block { flex-direction: column; text-align: center; } }
