/* contact page */
/* ── Contact Page ── */
.cp-wrap { max-width: 980px; margin: 0 auto; padding: 0 24px 64px; }

/* Page header */
.cp-hero {
    background: linear-gradient(135deg, #ecfdf5 0%, #eff6ff 60%, #fdf2f8 100%);
    border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 44px 48px 36px; margin: 28px 0 32px;
    position: relative; overflow: hidden;
}
.cp-hero::before {
    content: ''; position: absolute; top: -70px; right: -50px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(5,150,105,.13), transparent 70%);
}
.cp-hero::after {
    content: ''; position: absolute; bottom: -50px; left: -40px;
    width: 180px; height: 180px; border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,.1), transparent 70%);
}
.cp-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 700; color: #059669;
    text-transform: uppercase; letter-spacing: .9px; margin-bottom: 12px;
}
.cp-hero h1 {
    font-size: 34px; font-weight: 800; color: #111;
    letter-spacing: -.5px; margin: 0 0 10px; line-height: 1.2;
    position: relative;
}
.cp-hero p { font-size: 14.5px; color: #6b7280; margin: 0; max-width: 580px; line-height: 1.65; position: relative; }

/* Hero meta strip */
.cp-hero-meta {
    display: flex; align-items: center; gap: 20px; margin-top: 20px;
    flex-wrap: wrap; position: relative;
}
.cp-meta-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
    padding: 5px 14px; font-size: 12.5px; color: #374151;
}
.cp-meta-pill strong { color: #111; }
.cp-meta-dot { width: 7px; height: 7px; border-radius: 50%; background: #059669; animation: cp-pulse 2s ease-in-out infinite; }
@keyframes cp-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* Body grid */
.cp-body { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }

/* Form card */
.cp-form-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 34px; }
.cp-form-title { font-size: 17px; font-weight: 700; color: #111; margin: 0 0 22px; }

.cp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cp-field { margin-bottom: 16px; }
.cp-field label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.cp-field input,
.cp-field select,
.cp-field textarea {
    width: 100%; padding: 10px 14px; border: 1.5px solid #e5e7eb;
    border-radius: 9px; font-size: 14px; font-family: inherit; color: #111;
    background: #fff; transition: border-color .15s, box-shadow .15s; appearance: none;
}
.cp-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus { outline: none; border-color: #059669; box-shadow: 0 0 0 3px rgba(5,150,105,.1); }
.cp-field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.cp-field-req { color: #e11d48; margin-left: 2px; }

.cp-submit {
    width: 100%; padding: 13px; background: #059669; color: #fff;
    border: none; border-radius: 9px; font-size: 15px; font-weight: 700;
    font-family: inherit; cursor: pointer; transition: background .15s, transform .12s;
    margin-top: 4px; letter-spacing: .3px;
}
.cp-submit:hover { background: #047857; transform: translateY(-1px); }

.cp-alert {
    padding: 13px 18px; border-radius: 9px; margin-bottom: 20px;
    font-size: 14px; font-weight: 500; line-height: 1.5;
}
.cp-alert.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #065f46; }
.cp-alert.error   { background: #fff1f2; border: 1px solid #fecdd3; color: #881337; }

/* Right info column */
.cp-info-col { display: flex; flex-direction: column; gap: 16px; }
.cp-info-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 22px 24px; }
.cp-info-card-title {
    font-size: 11px; font-weight: 700; color: #6b7280;
    text-transform: uppercase; letter-spacing: .8px; margin: 0 0 16px;
    display: flex; align-items: center; gap: 7px;
}
.cp-info-card-title svg { color: #059669; }

.cp-info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.cp-info-row:last-child { margin-bottom: 0; }
.cp-info-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: #f0fdf4; color: #059669; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.cp-info-text strong { display: block; font-size: 13px; font-weight: 600; color: #111; margin-bottom: 2px; }
.cp-info-text span, .cp-info-text a { font-size: 13px; color: #6b7280; line-height: 1.5; display: block; }
.cp-info-text a { color: #059669; text-decoration: none; }
.cp-info-text a:hover { text-decoration: underline; }

.cp-rt-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 20px;
    padding: 3px 10px; font-size: 11.5px; font-weight: 600; color: #065f46; margin-top: 5px;
}

.cp-faq-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.cp-faq-list li {
    display: flex; align-items: center; gap: 9px;
    font-size: 13px; color: #374151; padding: 8px 10px;
    background: #f9fafb; border-radius: 8px; line-height: 1.4;
}
.cp-faq-list li::before { content: '→'; color: #059669; font-weight: 700; flex-shrink: 0; }

.cp-address {
    font-style: normal; font-size: 13px; color: #6b7280; line-height: 1.9;
    padding: 14px 16px; background: #f9fafb;
    border-radius: 9px; border-left: 3px solid #059669;
}
.cp-address strong { color: #111; display: block; margin-bottom: 4px; font-size: 13.5px; }
.cp-address a { color: #059669; text-decoration: none; }
.cp-address a:hover { text-decoration: underline; }

@media (max-width: 860px) {
    .cp-body { grid-template-columns: 1fr; }
    .cp-info-col { flex-direction: row; flex-wrap: wrap; }
    .cp-info-card { flex: 1; min-width: 240px; }
}
@media (max-width: 640px) {
    .cp-hero { padding: 30px 22px 26px; }
    .cp-hero h1 { font-size: 26px; }
    .cp-form-card { padding: 24px 18px; }
    .cp-form-row { grid-template-columns: 1fr; gap: 0; }
    .cp-info-col { flex-direction: column; }
}
