/* Contact Page (ADD NEW FILE ONLY) - scoped by ct- prefix */

:root{
    --ct-bg:#ffffff;
    --ct-soft:#f6f7fb;
    --ct-text:#0f172a;
    --ct-muted:#64748b;
    --ct-line: rgba(15,23,42,.10);
    --ct-accent:#f97316;
    --ct-accent2:#fb923c;
    --ct-shadow: 0 18px 44px rgba(15,23,42,.10);
    --ct-shadow2: 0 10px 22px rgba(15,23,42,.08);
    --ct-radius: 18px;
}

/* reveal */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease;}
.reveal.is-in{opacity:1; transform: translateY(0);}
@media (prefers-reduced-motion: reduce){ .reveal{transition:none;} }

/* buttons */
.ct-btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    border-radius:999px; border:1px solid var(--ct-line);
    padding:12px 16px; font-weight:800; cursor:pointer;
    transition: all .2s ease;
    background: rgba(255,255,255,.92); color: rgba(15,23,42,.92);
}
.ct-btn-primary{
    background: linear-gradient(135deg, var(--ct-accent), var(--ct-accent2));
    border-color: transparent; color:#fff;
    box-shadow: 0 16px 34px rgba(249,115,22,.18);
}
.ct-btn-primary:hover{ transform: translateY(-1px); filter:saturate(1.04); }
.ct-btn-ghost:hover{ background: rgba(249,115,22,.10); border-color: rgba(249,115,22,.18); }
.ct-btn-small{ padding:10px 12px; font-size:13px; }
.ct-btn-full{ width:100%; }

.ct-link{ display:inline-flex; margin-top: 12px; color: rgba(249,115,22,.92); font-weight:900; }

/* hero */
.ct-hero{
    position:relative;
    min-height: 760px;
    overflow:hidden;
    padding: 44px 0 22px;
    background:
            radial-gradient(900px 600px at 15% 0%, rgba(249,115,22,.10), transparent 55%),
            radial-gradient(900px 600px at 90% 10%, rgba(15,23,42,.08), transparent 55%),
            linear-gradient(180deg, var(--ct-bg) 0%, var(--ct-soft) 100%);
}
#threeContact{ position:absolute; inset:0; width:100%; height:100%; display:block; opacity:.65; }
.ct-hero-overlay{
    position:absolute; inset:0;
    background:
            radial-gradient(900px 520px at 15% 15%, rgba(249,115,22,.12), transparent 62%),
            radial-gradient(1000px 640px at 85% 20%, rgba(15,23,42,.10), transparent 62%),
            linear-gradient(180deg, rgba(255,255,255,.72), rgba(246,247,251,.96));
    pointer-events:none;
}

.ct-hero-inner{
    position:relative; z-index:2;
    display:grid; grid-template-columns: 1.1fr .9fr;
    gap: 26px; align-items:center;
}

.ct-badge{
    display:inline-flex; align-items:center; gap:10px;
    padding: 10px 14px; border-radius:999px;
    background: rgba(255,255,255,.88); border:1px solid var(--ct-line);
    color: rgba(15,23,42,.90); font-weight:900; font-size:13px;
    margin-bottom: 14px;
}
.ct-badge-dot{
    width:10px;height:10px;border-radius:999px;
    background: var(--ct-accent);
    box-shadow: 0 0 0 6px rgba(249,115,22,.12);
}

.ct-title{ margin:0; font-size: 46px; line-height:1.12; letter-spacing:-.6px; color: var(--ct-text); }
.ct-gradient{
    background: linear-gradient(135deg, var(--ct-accent), #ea580c);
    -webkit-background-clip:text; background-clip:text; color:transparent;
}
.ct-subtitle{ margin: 14px 0 20px; color: var(--ct-muted); line-height:1.75; font-size:15px; max-width: 680px; }
.ct-actions{ display:flex; gap:12px; margin-bottom: 18px; }

.ct-mini{
    margin-top: 14px;
    display:flex; align-items:flex-start; gap:10px;
    padding: 12px 14px; border-radius: 16px;
    background: rgba(249,115,22,.06);
    border: 1px solid rgba(249,115,22,.14);
    color: rgba(15,23,42,.92); line-height:1.6;
}
.ct-mini-icon{
    width:26px;height:26px;border-radius:10px;
    display:grid; place-items:center;
    background: rgba(249,115,22,.12);
    border: 1px solid rgba(249,115,22,.18);
}

/* hero card */
.ct-hero-card{
    border-radius: 24px;
    overflow:hidden;
    border: 1px solid var(--ct-line);
    background: rgba(255,255,255,.92);
    box-shadow: var(--ct-shadow);
    position:relative;
}
.ct-card-top{
    display:flex; justify-content:space-between; align-items:center;
    gap:10px; padding: 14px 16px 10px;
}
.ct-card-title{ font-weight: 950; }
.ct-card-tag{
    font-size: 12px; padding: 6px 10px; border-radius: 999px;
    background: rgba(249,115,22,.10); border: 1px solid rgba(249,115,22,.18);
    color:#9a3412; font-weight: 900;
}

.ct-quick{ display:grid; gap:10px; padding: 0 16px 14px; }
.ct-quick-item{
    display:flex; gap:12px; align-items:flex-start;
    padding: 12px 12px; border-radius: 18px;
    border: 1px solid var(--ct-line);
    background: rgba(15,23,42,.02);
    cursor:pointer;
}
.ct-quick-item:hover{ background: rgba(249,115,22,.06); border-color: rgba(249,115,22,.18); }
.ct-qi-icon{
    width: 40px; height: 40px; border-radius: 16px;
    display:grid; place-items:center;
    background: rgba(249,115,22,.12);
    border: 1px solid rgba(249,115,22,.18);
}
.ct-qi-title{ font-weight: 950; margin-bottom: 2px; color: rgba(15,23,42,.92); }
.ct-qi-value{ color: var(--ct-muted); line-height:1.6; font-size: 13px; }

.ct-map img{ width:100%; aspect-ratio: 16/9; object-fit: cover; display:block; }

.ct-toast{
    position:absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.12);
    background: rgba(255,255,255,.95);
    box-shadow: var(--ct-shadow2);
    font-weight: 900;
    color: rgba(15,23,42,.88);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
}
.ct-toast.is-show{
    opacity:1;
    transform: translateX(-50%) translateY(-2px);
}

/* sections */
.ct-section{ padding: 70px 0; }
.ct-alt{ background: rgba(15,23,42,.03); }
.ct-section-head{ margin-bottom: 22px; }
.ct-section-title{ margin:0 0 10px; font-size: 30px; letter-spacing: -.2px; color: var(--ct-text); }
.ct-section-desc{ margin:0; color: var(--ct-muted); line-height: 1.75; max-width: 920px; }

.ct-cards{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.ct-card{
    border-radius: 22px;
    padding: 16px;
    border: 1px solid var(--ct-line);
    background: rgba(255,255,255,.92);
    box-shadow: var(--ct-shadow2);
}
.ct-card-icon{ font-size: 22px; margin-bottom: 10px; color: var(--ct-accent); }
.ct-card-name{ font-weight: 950; margin-bottom: 6px; color: rgba(15,23,42,.92); }
.ct-card-value{ font-weight: 900; color: rgba(15,23,42,.86); }
.ct-card-meta{ margin-top: 8px; color: var(--ct-muted); line-height: 1.7; font-size: 13px; }

/* form */
.ct-form-wrap{
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 14px;
    align-items:start;
}
.ct-form{
    border-radius: 24px;
    padding: 18px;
    border: 1px solid var(--ct-line);
    background: rgba(255,255,255,.92);
    box-shadow: var(--ct-shadow2);
}
.ct-form-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.ct-field{ display:flex; flex-direction:column; gap:8px; }
.ct-full{ grid-column: 1 / -1; }
.ct-field label{ font-size: 13px; font-weight: 900; color: rgba(15,23,42,.86); }

.ct-field input,
.ct-field select,
.ct-field textarea{
    border-radius: 16px;
    border:1px solid rgba(15,23,42,.12);
    background: rgba(255,255,255,.92);
    padding: 12px 12px;
    outline:none;
    color: rgba(15,23,42,.92);
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus{
    border-color: rgba(249,115,22,.55);
    box-shadow: 0 0 0 6px rgba(249,115,22,.10);
}

.ct-hint{ margin: 12px 0 0; color: var(--ct-muted); font-size: 12px; line-height: 1.6; }

.ct-side-card{
    border-radius: 24px;
    padding: 18px;
    border: 1px solid var(--ct-line);
    background: rgba(255,255,255,.92);
    box-shadow: var(--ct-shadow2);
}
.ct-side-title{ font-weight: 950; margin-bottom: 12px; }
.ct-side-item{
    display:flex; justify-content:space-between; gap:10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(15,23,42,.12);
}
.ct-side-item:last-of-type{ border-bottom:none; }
.ct-side-item span{ color: var(--ct-muted); }
.ct-divider{ border:0; height:1px; background: rgba(15,23,42,.10); margin: 14px 0; }

.ct-qr-row{ display:flex; gap: 12px; flex-wrap:wrap; }
.ct-qr{
    flex:1; min-width: 140px;
    text-align:center;
    border-radius: 18px;
    padding: 12px 10px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.02);
}
.ct-qr img{ margin: 0 auto; border-radius: 14px; }
.ct-qr-label{ margin-top: 8px; font-weight: 900; color: rgba(15,23,42,.86); }

.ct-note{
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(249,115,22,.06);
    border: 1px solid rgba(249,115,22,.14);
    color: rgba(15,23,42,.90);
    line-height: 1.65;
}

/* responsive */
@media (max-width: 1100px){
    .ct-hero-inner{ grid-template-columns: 1fr; gap: 16px; }
    .ct-form-wrap{ grid-template-columns: 1fr; }
    .ct-cards{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
    .ct-title{ font-size: 34px; }
    .ct-form-grid{ grid-template-columns: 1fr; }
}
