/* ── Contact Hero ────────────────────────────────────────────────────────── */
.contact-hero {
    padding: 80px 0 40px;
    background: linear-gradient(160deg, #f3ffe0 0%, #f8ffed 45%, #f5f5f5 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 420px;
    background: radial-gradient(ellipse, rgba(194,249,113,.18) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(194,249,113,.1);
    border: 1px solid rgba(194,249,113,.25);
    color: #5a7a00;
    font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 24px;
}

.contact-hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%; background: #c2f971;
    animation: contact-badge-pulse 2s ease-in-out infinite;
}

@keyframes contact-badge-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(194,249,113,.6); }
    50%      { box-shadow: 0 0 0 6px rgba(194,249,113,0); }
}

.contact-hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: -.04em; line-height: 1.1;
    color: #121212; margin: 0;
}

.contact-hero-title em { font-style: normal; color: #c2f971; }

/* ── Contact Section ─────────────────────────────────────────────────────── */
.contact-section {
    background: #f5f5f5;
    padding: 0 0 80px;
}

.contact-section-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-card {
    display: grid;
    grid-template-columns: 290px 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.05);
}

/* ── Info Panel ──────────────────────────────────────────────────────────── */
.contact-info-panel {
    background: #0a0a0a; color: #fff;
    padding: 46px 34px;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}

.contact-info-panel::after {
    content: ''; position: absolute;
    bottom: -70px; right: -70px;
    width: 240px; height: 240px; border-radius: 50%;
    background: rgba(194,249,113,.13);
    pointer-events: none;
}

.contact-info-panel::before {
    content: ''; position: absolute;
    bottom: 20px; right: 20px;
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(194,249,113,.07);
    pointer-events: none;
}

.contact-info-panel h2 {
    font-size: 22px; font-weight: 800;
    letter-spacing: -.03em; margin: 0 0 10px; line-height: 1.25;
}

.contact-info-panel h2 em { font-style: normal; color: #c2f971; }

.contact-info-desc {
    font-size: 13px; color: rgba(255,255,255,.45);
    line-height: 1.65; margin: 0 0 38px;
}

.contact-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 26px; position: relative; z-index: 1;
}

.contact-info-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(194,249,113,.1);
    border: 1px solid rgba(194,249,113,.18);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}

.contact-info-icon svg { width: 16px; height: 16px; }

.contact-info-text { display: flex; flex-direction: column; gap: 3px; }

.contact-info-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

.contact-info-value {
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,.82);
}

.contact-info-value a { color: inherit; text-decoration: none; transition: color .2s; }
.contact-info-value a:hover { color: #c2f971; }

.contact-info-divider { flex: 1; }

.contact-info-socials { display: flex; gap: 10px; position: relative; z-index: 1; }

.contact-social-btn {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: background .2s, border-color .2s;
}

.contact-social-btn:hover { background: rgba(194,249,113,.15); border-color: rgba(194,249,113,.3); }

.contact-social-btn svg {
    width: 15px; height: 15px;
    stroke: rgba(255,255,255,.55); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    transition: stroke .2s;
}

.contact-social-btn:hover svg { stroke: #c2f971; }

/* ── Form Panel ──────────────────────────────────────────────────────────── */
.contact-form-panel { background: #fff; padding: 40px 44px; }

/* ── ODF Contact Page Inline Form ───────────────────────────────────────── */
.odf-cp-wrap { height: 100%; }

.odf-cp-title {
    font-size: 22px; font-weight: 800;
    letter-spacing: -.03em; margin: 0 0 28px; color: #121212;
}

.odf-cp-title em { font-style: normal; color: #c2f971; }

.odf-cp-form { display: flex; flex-direction: column; }

.odf-cp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.odf-cp-group { margin-bottom: 20px; }

.odf-cp-group input,
.odf-cp-group textarea {
    font-family: inherit; font-size: 14px; font-weight: 400;
    color: #121212; border: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 0; background: transparent;
    outline: none; transition: border-color .2s;
    width: 100%; resize: none;
}

.odf-cp-group input:focus,
.odf-cp-group textarea:focus { border-bottom-color: #c2f971; }

.odf-cp-group input::placeholder,
.odf-cp-group textarea::placeholder { color: #bbb; font-weight: 400; }

.odf-cp-group textarea { min-height: 90px; }

.odf-cp-footer { display: flex; justify-content: flex-end; margin-top: 8px; }

.odf-cp-submit {
    display: inline-flex; align-items: center; gap: 10px;
    background: #c2f971; color: #0a0a0a;
    font-family: inherit; font-size: 15px; font-weight: 700;
    padding: 14px 30px; border: none; border-radius: 100px;
    cursor: pointer; transition: transform .15s, box-shadow .15s;
}

.odf-cp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(194,249,113,.4);
}

.odf-cp-error { margin-top: 12px; font-size: 13px; color: #c00; }

.odf-cp-success {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px; min-height: 200px; text-align: center;
}

.odf-cp-success-icon { font-size: 48px; color: #c2f971; }

.odf-cp-success p {
    font-size: 16px; font-weight: 500; color: #333;
    max-width: 320px; line-height: 1.5;
}

/* honeypot */
.odf-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .contact-section-inner { padding: 0 24px; }
}

@media (max-width: 860px) {
    .contact-section-inner { padding: 0 16px;  }
    .contact-card { grid-template-columns: 1fr; border-radius: 18px; }
    .contact-form-panel { order: -1; padding: 28px 22px; }
    .odf-cp-row { grid-template-columns: 1fr; gap: 0; }
    .contact-section { padding-bottom: 60px; }
}

@media (max-width: 480px) {
    .contact-hero { padding: 70px 0 36px; }
    .contact-info-panel { padding: 32px 24px; }
}
