/* =====================================================
   ALKONIC CONTACT PAGE — contact.css
   All selectors scoped under .cn-page
   Prefix: cn-
===================================================== */

/* ── BASE ── */
.cn-page {
    font-family: 'DM Sans', sans-serif;
    background: #080808; color: #fff; overflow-x: hidden;
    padding-top: 80px;
}
.cn-page *, .cn-page *::before, .cn-page *::after { box-sizing: border-box; }
.cn-page h1, .cn-page h2, .cn-page h3 { font-family: 'Playfair Display', serif; margin: 0; }
.cn-page h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.12; }
.cn-page h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 600; line-height: 1.22; }
.cn-page p { color: rgba(255,255,255,0.6); line-height: 1.68; margin: 0; }
.cn-page a { text-decoration: none; }

/* ── LAYOUT ── */
.cn-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.cn-section { padding: 88px 0; }

/* ── TOKENS ── */
.cn-gold-text {
    background: linear-gradient(135deg, #E4C97A, #C9A84C, #8B6F32);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cn-section-tag {
    display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: #C9A84C;
    border: 1px solid rgba(201,168,76,0.3); padding: 6px 16px;
    border-radius: 100px; margin-bottom: 18px;
}
.cn-divider { width: 50px; height: 2px; background: linear-gradient(90deg, #C9A84C, transparent); margin: 16px 0 28px; }
.cn-divider.center { margin-left: auto; margin-right: auto; }

/* ── REVEAL ── */
.cn-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.cn-reveal.cn-visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.cn-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 8px; border: none;
    font-family: 'DM Sans', sans-serif; font-size: 0.87rem; font-weight: 600;
    cursor: pointer; transition: 0.3s ease;
}
.cn-btn-primary { background: linear-gradient(135deg, #E4C97A, #C9A84C); color: #000; box-shadow: 0 4px 28px rgba(201,168,76,0.25); }
.cn-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,168,76,0.36); }

/* ══ HERO ══ */
.cn-hero {
    min-height: 52vh; display: flex; align-items: center;
    position: relative; overflow: hidden; background: #080808;
}
.cn-hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=70&auto=format&fit=crop');
    background-size: cover; background-position: center; opacity: 0.07;
}
.cn-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(8,8,8,0.99) 0%, rgba(8,8,8,0.88) 55%, rgba(8,8,8,0.55) 100%);
}
.cn-hero-inner { position: relative; z-index: 2; padding: 80px 0 60px; max-width: 660px; }
.cn-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.22);
    border-radius: 100px; padding: 7px 18px; margin-bottom: 22px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #C9A84C;
}
.cn-eyebrow-dot { width: 6px; height: 6px; background: #C9A84C; border-radius: 50%; animation: cn-pulse 2s infinite; }
@keyframes cn-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }
.cn-hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin: 18px 0 28px; line-height: 1.65; max-width: 500px; }
.cn-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cn-chip {
    background: rgba(255,255,255,0.04); border: 1px solid #1e1e1e;
    border-radius: 8px; padding: 8px 14px;
    font-size: 0.77rem; font-weight: 500; color: rgba(255,255,255,0.6);
}

/* ══ CONTACT CORE ══ */
.cn-core { background: #080808; }
.cn-core-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }

/* ── FORM SIDE ── */
.cn-form-header { margin-bottom: 36px; }
.cn-form-header p { font-size: 0.86rem; }

.cn-form { display: flex; flex-direction: column; gap: 18px; }
.cn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cn-field { display: flex; flex-direction: column; gap: 7px; }
.cn-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.3px; }
.cn-required { color: #C9A84C; }
.cn-input {
    background: rgba(255,255,255,0.04); border: 1px solid #1e1e1e;
    border-radius: 9px; padding: 12px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 0.87rem; color: #fff;
    outline: none; transition: border-color 0.25s ease;
    width: 100%;
}
.cn-input::placeholder { color: rgba(255,255,255,0.22); }
.cn-input:focus { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.03); }
.cn-select { appearance: none; cursor: pointer; }
.cn-textarea { resize: vertical; min-height: 100px; }

.cn-check-group {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.cn-check-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.55);
    cursor: pointer; transition: color 0.2s ease;
}
.cn-check-label:hover { color: rgba(255,255,255,0.8); }
.cn-check-label input { accent-color: #C9A84C; }

.cn-submit-btn {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 28px; gap: 3px; width: 100%; justify-content: center;
    border-radius: 10px;
}
.cn-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }
.cn-btn-text { font-size: 0.92rem; font-weight: 700; }
.cn-btn-note { font-size: 0.62rem; opacity: 0.65; font-weight: 400; }

/* ── INFO SIDE ── */
.cn-info-side { display: flex; flex-direction: column; gap: 20px; }

.cn-contact-cards { display: flex; flex-direction: column; gap: 12px; }
.cn-contact-card {
    display: flex; align-items: center; gap: 16px;
    background: #141414; border: 1px solid #1e1e1e; border-radius: 14px;
    padding: 18px 20px; transition: 0.3s ease; cursor: pointer;
}
.cn-contact-card:hover { border-color: rgba(201,168,76,0.28); transform: translateX(4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.cn-card-call:hover { border-color: rgba(34,197,94,0.3); }
.cn-card-wa:hover { border-color: rgba(34,197,94,0.35); }
.cn-card-email:hover { border-color: rgba(201,168,76,0.3); }
.cn-cc-icon { font-size: 1.5rem; flex-shrink: 0; }
.cn-cc-body { flex: 1; }
.cn-cc-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
.cn-cc-val { font-size: 0.95rem; font-weight: 700; color: #fff; }
.cn-cc-note { font-size: 0.68rem; color: rgba(255,255,255,0.3); margin-top: 2px; }
.cn-cc-arrow { color: rgba(255,255,255,0.2); font-size: 1rem; flex-shrink: 0; transition: 0.2s ease; }
.cn-contact-card:hover .cn-cc-arrow { color: #C9A84C; }

.cn-office-block {
    background: #141414; border: 1px solid #1e1e1e; border-radius: 14px;
    padding: 22px 22px;
}
.cn-ob-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 10px; }
.cn-ob-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cn-ob-address { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 14px; }
.cn-map-link { font-size: 0.75rem; font-weight: 600; color: #C9A84C; transition: letter-spacing 0.2s ease; }
.cn-map-link:hover { letter-spacing: 0.3px; }

.cn-timings {
    background: rgba(255,255,255,0.02); border: 1px solid #1e1e1e; border-radius: 12px;
    padding: 18px 20px;
}
.cn-timings-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
.cn-timing-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.cn-timing-row:last-child { border-bottom: none; }
.cn-timing-val { font-weight: 600; color: rgba(255,255,255,0.7); }

.cn-commitment {
    background: linear-gradient(145deg,#1a1510,#141414);
    border: 1px solid rgba(201,168,76,0.15); border-radius: 14px;
    padding: 18px 20px; display: flex; align-items: center; gap: 0;
}
.cn-cm-item { flex: 1; display: flex; align-items: center; gap: 12px; }
.cn-cm-icon { font-size: 1.3rem; flex-shrink: 0; }
.cn-cm-label { font-size: 0.82rem; font-weight: 700; color: #fff; }
.cn-cm-desc { font-size: 0.65rem; color: rgba(255,255,255,0.35); }
.cn-cm-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.07); flex-shrink: 0; margin: 0 16px; }

/* ══ REGIONAL OFFICES ══ */
.cn-offices { background: #111; border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; }
.cn-section-head { margin-bottom: 48px; }
.cn-offices-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cn-office-card {
    background: #141414; border: 1px solid #1e1e1e; border-radius: 14px;
    padding: 22px 20px; transition: 0.28s ease;
}
.cn-office-card:hover { border-color: rgba(201,168,76,0.22); transform: translateY(-2px); }
.cn-oc-city { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cn-oc-area { font-size: 0.72rem; color: rgba(255,255,255,0.38); margin-bottom: 12px; }
.cn-oc-phone { font-size: 0.82rem; font-weight: 600; color: #C9A84C; }

/* ══ FAQ STRIP ══ */
.cn-faq-strip {
    background: linear-gradient(145deg,#0f0d08,#0d0d0d);
    border-top: 1px solid #1e1e1e; padding: 80px 0;
}
.cn-faq-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cn-faq-col {
    background: #141414; border: 1px solid #1e1e1e; border-radius: 14px;
    padding: 24px 22px; transition: 0.28s ease;
}
.cn-faq-col:hover { border-color: rgba(201,168,76,0.18); }
.cn-faq-q-simple { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cn-faq-a-simple { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .cn-core-grid { grid-template-columns: 1fr; gap: 48px; }
    .cn-offices-grid { grid-template-columns: repeat(2,1fr); }
    .cn-faq-cols { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .cn-container { padding: 0 24px; }
    .cn-section { padding: 64px 0; }
    .cn-form-row { grid-template-columns: 1fr; }
    .cn-offices-grid { grid-template-columns: 1fr; }
    .cn-commitment { flex-direction: column; gap: 16px; }
    .cn-cm-divider { width: 100%; height: 1px; margin: 0; }
}
@media (max-width: 480px) {
    .cn-hero-inner { padding: 60px 0 40px; }
    .cn-check-group { flex-direction: column; }
}