/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Hero */
.ct-hero {
    background: var(--ink);
    padding: 9rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ct-hero-glow {
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(34,211,238,0.22) 0%, transparent 65%);
    pointer-events: none;
}
.ct-hero-inner { position: relative; z-index: 1; }
.ct-eyebrow { color: rgba(255,255,255,0.45); }
.ct-hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.045em;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.ct-accent { color: var(--blue); }
.ct-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Body */
.ct-body-section {
    padding: 5rem 1.5rem 7rem;
    background: var(--white);
}
.ct-body-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

/* Shared side styles */
.ct-side-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}
.ct-side-sub {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* Form */
.ct-form { display: flex; flex-direction: column; gap: 1.1rem; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.ct-field { display: flex; flex-direction: column; gap: 0.4rem; }
.ct-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.ct-input {
    background: var(--surface);
    border: 1.5px solid var(--border-lt);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--ink);
    font-family: inherit;
    outline: none;
    transition: border-color var(--t), box-shadow var(--t);
    width: 100%;
}
.ct-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
}
.ct-input::placeholder { color: rgba(0,0,0,0.28); }
.ct-select { cursor: pointer; appearance: none; }
.ct-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--t), transform 0.25s var(--spring);
    margin-top: 0.25rem;
    align-self: flex-start;
}
.ct-submit-btn:hover { background: var(--blue); transform: translateY(-1px); }
.ct-submit-btn i { font-size: 0.8rem; }
.ct-privacy-note {
    font-size: 0.75rem;
    color: var(--gray-2);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ct-privacy-note i { color: var(--blue); font-size: 0.65rem; }

/* Info side */
.ct-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.ct-action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    border: 1.5px solid var(--border-lt);
    background: var(--surface);
    text-decoration: none;
    transition: border-color var(--t), box-shadow var(--t), transform 0.25s var(--spring);
}
.ct-action-btn:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(34,211,238,0.1); transform: translateY(-2px); }
.ct-action-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.ct-whatsapp .ct-action-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.ct-call .ct-action-icon { background: rgba(34,211,238,0.1); color: var(--blue); }
.ct-email-btn .ct-action-icon { background: rgba(34,211,238,0.1); color: var(--blue); }
.ct-action-text { flex: 1; }
.ct-action-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}
.ct-action-text span {
    font-size: 0.78rem;
    color: var(--gray);
}
.ct-action-arrow { font-size: 0.7rem; color: rgba(0,0,0,0.2); transition: color var(--t), transform var(--t); }
.ct-action-btn:hover .ct-action-arrow { color: var(--blue); transform: translateX(3px); }

/* Offices */
.ct-offices { margin-bottom: 1.5rem; }
.ct-offices-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ct-offices-label i { color: var(--blue); }
.ct-office {
    padding: 1rem 0;
    border-top: 1px solid var(--border-lt);
}
.ct-office:last-child { border-bottom: 1px solid var(--border-lt); }
.ct-office-city {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
}
.ct-office-addr {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Response badge */
.ct-response-badge {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(34,211,238,0.06);
    border: 1.5px solid rgba(34,211,238,0.15);
    border-radius: 100px;
    padding: 0.55rem 1rem;
    margin-top: 1.5rem;
}
.ct-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}
.ct-response-badge span {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.4;
}
.ct-response-badge strong { color: var(--ink); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .ct-body-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ct-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ct-hero { padding: 7rem 1.25rem 4rem; }
    .ct-body-section { padding: 4rem 1.25rem 5rem; }
    .ct-submit-btn { width: 100%; }
}
