/* ── Contact Page Styles ───────────────────────────────── */
.zeevio-contact-main { font-family: 'Inter', sans-serif; }

/* Hero */
.zeevio-ct-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--zeevio-light, #f0f7ff) 0%, #f5f0ff 100%);
    overflow: hidden;
    text-align: center;
}
.zeevio-ct-hero-inner { position: relative; z-index: 1; }
.zeevio-ct-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--zeevio-dark2, #1e293b);
    margin: 16px 0 12px;
    line-height: 1.15;
}
.zeevio-ct-subtitle {
    font-size: 1.1rem;
    color: var(--zeevio-gray, #64748b);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}
.zeevio-ct-hero-shape {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* Body */
.zeevio-ct-body { padding: 60px 0 80px; background: #fff; }
.zeevio-ct-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* Info Cards */
.zeevio-ct-info { display: flex; flex-direction: column; gap: 16px; }
.zeevio-ct-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 20px;
    transition: box-shadow .2s, transform .2s;
}
.zeevio-ct-info-card:hover { box-shadow: 0 6px 24px rgba(59,130,246,.1); transform: translateY(-2px); }
.zeevio-ct-card-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.zeevio-ct-card-icon svg { width: 22px; height: 22px; }
.zeevio-ct-card-body h4 { margin: 0 0 3px; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: #94a3b8; font-weight: 600; }
.zeevio-ct-card-body a, .zeevio-ct-card-body span { font-size: 14px; font-weight: 500; color: var(--zeevio-dark2, #1e293b); text-decoration: none; }
.zeevio-ct-card-body a:hover { color: var(--zeevio-blue, #3b82f6); }
.zeevio-ct-empty { color: #94a3b8; font-style: italic; }

.zeevio-ct-response-badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #64748b;
    padding: 12px 16px;
    background: #f8faff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.zeevio-ct-response-badge .zeevio-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: zeevioPulse 2s infinite; }

/* Form Card */
.zeevio-ct-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.zeevio-ct-form-card h3 { margin: 0 0 28px; font-size: 1.35rem; font-weight: 700; color: var(--zeevio-dark2, #1e293b); }
.zeevio-ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.zeevio-ct-field { margin-bottom: 20px; }
.zeevio-ct-field label { display: block; font-size: 13px; font-weight: 600; color: var(--zeevio-dark2, #1e293b); margin-bottom: 7px; }
.zeevio-req { color: var(--zeevio-blue, #3b82f6); }
.zeevio-ct-input, .zeevio-ct-textarea {
    width: 100%; box-sizing: border-box;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--zeevio-dark2, #1e293b);
    background: #fafbff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.zeevio-ct-input:focus, .zeevio-ct-textarea:focus {
    border-color: var(--zeevio-blue, #3b82f6);
    box-shadow: 0 0 0 4px rgba(59,130,246,.1);
    background: #fff;
}
.zeevio-ct-textarea { resize: vertical; min-height: 120px; }

/* Submit button */
.zeevio-ct-submit {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--zeevio-blue, #3b82f6), var(--zeevio-indigo, #6366f1));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    box-shadow: 0 4px 16px rgba(59,130,246,.3);
    margin-top: 4px;
}
.zeevio-ct-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,.35); }
.zeevio-ct-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.zeevio-ct-submit .zeevio-btn-icon svg { width: 18px; height: 18px; }
.zeevio-spin { animation: zeevio-spin 1s linear infinite; width: 18px; height: 18px; }
@keyframes zeevio-spin { to { transform: rotate(360deg); } }

/* Success / Error */
.zeevio-ct-success {
    text-align: center;
    padding: 30px 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-bottom: 24px;
    color: #166534;
}
.zeevio-ct-success svg { width: 40px; height: 40px; color: #22c55e; margin-bottom: 10px; }
.zeevio-ct-success p { margin: 0; font-size: 15px; font-weight: 500; }
.zeevio-ct-error {
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .zeevio-ct-grid { grid-template-columns: 1fr; }
    .zeevio-ct-info { order: 2; }
    .zeevio-ct-form-wrap { order: 1; }
}
@media (max-width: 560px) {
    .zeevio-ct-hero { padding: 80px 0 60px; }
    .zeevio-ct-form-card { padding: 24px 20px; }
    .zeevio-ct-form-row { grid-template-columns: 1fr; gap: 0; }
}
