/* ============================================================
   ELITE KEYS — Contact Page
   Premium dark luxury aesthetic (aligned with Corporate)
   ============================================================ */

#pg-ct {
    --t-bg: #08090a;
    --t-surface: #101214;
    --t-surface2: #181b1f;
    --t-gold: #c7a24a;
    --t-gold-light: #e0c072;
    --t-text: #f2f2f2;
    --t-muted: #8a8f96;
    --t-border: rgba(255,255,255,0.06);
    background: var(--t-bg);
    color: var(--t-text);
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Buttons ── */
.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 42px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border: none;
    width: auto;
}
.ct-btn--gold {
    background: var(--t-gold);
    color: var(--t-bg);
}
.ct-btn--gold:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(199,162,74,0.35);
}
.ct-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}
.ct-btn--ghost:hover {
    border-color: var(--t-gold);
    color: var(--t-gold);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.ct-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}
.ct-hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(199,162,74,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(199,162,74,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(30,33,38,1) 0%, var(--t-bg) 100%);
    animation: ctMeshShift 20s ease-in-out infinite alternate;
}
@keyframes ctMeshShift {
    0%   { background-position: 0% 0%, 100% 100%, 50% 50%; }
    100% { background-position: 20% 10%, 80% 90%, 50% 50%; }
}
.ct-hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px;
    pointer-events: none;
}
.ct-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: ctHeroFadeIn 1s ease-out both;
}
@keyframes ctHeroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    border-radius: 50px;
    border: 1px solid rgba(199,162,74,0.2);
    background: rgba(199,162,74,0.06);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--t-gold);
    margin-bottom: 28px;
}
.ct-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--t-gold);
    box-shadow: 0 0 10px var(--t-gold);
    animation: ctPulseDot 2s ease-in-out infinite;
}
@keyframes ctPulseDot {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.ct-hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 22px;
}
.ct-hero-h1 em {
    color: var(--t-gold);
    font-style: italic;
}
.ct-hero-sub {
    font-size: 1.1rem;
    color: var(--t-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   QUICK ACTIONS BAR
   ═══════════════════════════════════════ */
.ct-quick {
    border-top: 1px solid var(--t-border);
    border-bottom: 1px solid var(--t-border);
    padding: 36px 0;
    background: rgba(255,255,255,0.01);
}
.ct-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ct-quick-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid var(--t-border);
    background: var(--t-surface);
    text-decoration: none;
    color: var(--t-text);
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.ct-quick-item:hover {
    border-color: rgba(199,162,74,0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.ct-quick-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(199,162,74,0.08);
    border: 1px solid rgba(199,162,74,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ct-quick-ico svg {
    width: 18px;
    height: 18px;
    stroke: var(--t-gold);
}
.ct-quick-ico--wa {
    background: rgba(37,211,102,0.1);
    border-color: rgba(37,211,102,0.25);
}
.ct-quick-ico--wa svg {
    stroke: none;
    fill: #25D366;
}
.ct-quick-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ct-quick-meta span {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--t-muted);
    font-weight: 600;
}
.ct-quick-meta strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--t-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ═══════════════════════════════════════
   MAIN GRID
   ═══════════════════════════════════════ */
.ct-main {
    padding: 100px 0 120px;
}
.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: start;
}

/* ── Info card (left) ── */
.ct-card {
    background: var(--t-surface);
    border: 1px solid var(--t-border);
    border-radius: 28px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}
.ct-card-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--t-gold);
    margin-bottom: 14px;
}
.ct-card-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 32px;
}
.ct-card-h2 em {
    color: var(--t-gold);
    font-style: italic;
}

.ct-info-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--t-border);
}
.ct-info-row:last-of-type { border-bottom: 0; }
.ct-info-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(199,162,74,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ct-info-ico svg {
    width: 18px;
    height: 18px;
    stroke: var(--t-gold);
}
.ct-info-body {
    min-width: 0;
}
.ct-info-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--t-muted);
    margin-bottom: 6px;
}
.ct-info-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--t-text);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    line-height: 1.4;
}
.ct-info-value:hover {
    color: var(--t-gold);
}
.ct-info-value-text {
    color: var(--t-text);
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}

.ct-divider {
    height: 1px;
    background: var(--t-border);
    margin: 24px 0;
}

.ct-note {
    display: flex;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(199,162,74,0.04);
    border: 1px solid rgba(199,162,74,0.1);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--t-muted);
    margin-top: 24px;
}
.ct-note svg {
    width: 18px;
    height: 18px;
    stroke: var(--t-gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.ct-note strong { color: var(--t-text); font-weight: 500; }

/* ── Form card (right) ── */
.ct-form-card {
    background: var(--t-surface);
    border: 1px solid var(--t-border);
    border-radius: 28px;
    padding: 44px 40px;
}

#pg-ct .form-group {
    margin-bottom: 22px;
}
#pg-ct .form-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--t-muted);
    margin-bottom: 10px;
}
#pg-ct .form-control {
    width: 100%;
    background: var(--t-bg);
    border: 1px solid var(--t-border);
    border-radius: 14px;
    padding: 16px 18px;
    color: var(--t-text);
    font-family: inherit;
    font-size: 0.98rem;
    transition: all 0.3s;
}
#pg-ct .form-control:hover {
    border-color: rgba(199,162,74,0.2);
}
#pg-ct .form-control:focus {
    outline: none;
    border-color: var(--t-gold);
    background: rgba(199,162,74,0.03);
    box-shadow: 0 0 0 3px rgba(199,162,74,0.12);
}
#pg-ct textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* ── ek-dd dropdown overrides ── */
#pg-ct .ek-dd-trigger {
    text-align: left;
}
#pg-ct .ek-dd-menu {
    background: var(--t-surface2);
    border-color: var(--t-border);
}
#pg-ct .ek-dd-label {
    color: var(--t-text);
}

/* ── Submit button (force gold style) ── */
#pg-ct .contact-btn-full {
    width: 100%;
    margin-top: 8px;
    padding: 18px 32px;
    border-radius: 60px;
    background: var(--t-gold);
    color: var(--t-bg);
    border: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#pg-ct .contact-btn-full:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(199,162,74,0.35);
}
#pg-ct .contact-btn-full:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ct-form-footnote {
    margin-top: 18px;
    font-size: 0.78rem;
    color: var(--t-muted);
    line-height: 1.6;
    text-align: center;
}
.ct-form-footnote a { color: var(--t-gold); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .ct-grid { grid-template-columns: 1fr; }
    .ct-quick-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ct-hero { padding: 100px 0 60px; }
    .ct-hero-h1 { font-size: 2.1rem; }
    .ct-main { padding: 60px 0 80px; }
    .ct-card,
    .ct-form-card { padding: 32px 26px; border-radius: 22px; }
    .ct-card-h2 { font-size: 1.5rem; }
    .ct-info-value { font-size: 1.05rem; }
    .ct-quick { padding: 24px 0; }
    .ct-quick-item { padding: 12px 16px; }
}

/* ═══════════════════════════════════════
   LIGHT THEME
   ═══════════════════════════════════════ */
[data-theme="light"] #pg-ct {
    --t-bg: #faf6ec;
    --t-surface: #fdfaf2;
    --t-surface2: #f1ecdd;
    --t-gold: #b8942f;
    --t-gold-light: #9c7c28;
    --t-text: #1a1a1a;
    --t-muted: #6b6e73;
    --t-border: rgba(0,0,0,0.07);
}
[data-theme="light"] .ct-hero-mesh {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(184,148,47,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(184,148,47,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, #f5efde 0%, var(--t-bg) 100%);
}
[data-theme="light"] .ct-quick { background: rgba(0,0,0,0.01); }
[data-theme="light"] .ct-card,
[data-theme="light"] .ct-form-card,
[data-theme="light"] .ct-quick-item { background: #fdfaf2; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
[data-theme="light"] #pg-ct .form-control { background: #faf6ec; }
[data-theme="light"] #pg-ct .form-control:focus { background: rgba(184,148,47,0.04); }
[data-theme="light"] #pg-ct .contact-btn-full { color: #fff; }
[data-theme="light"] #pg-ct .contact-btn-full:hover { color: var(--t-bg); background: var(--t-text); }
