/* ================================================================
 * Haika KingSize — Contact page
 *   Sleek glass design • Mobile-first • 3-mode aware
 * ================================================================ */

.hctc {
	--hc-fg:          var(--cb-text, #e6edf3);
	--hc-fg-muted:    var(--cb-text-2, rgba(255,255,255,0.62));
	--hc-card-bg:     rgba(255,255,255,0.04);
	--hc-card-bg-2:   rgba(255,255,255,0.07);
	--hc-border:      rgba(255,255,255,0.10);
	--hc-purple:      var(--ks-purple, #5b2c87);
	--hc-purple-glow: var(--ks-purple-glow, #c084fc);
	--hc-purple-soft: rgba(139, 92, 246, 0.12);
	--hc-success:     #10b981;
	--hc-whatsapp:    #25d366;
	--hc-insta-from:  #e91e63;
	--hc-insta-to:    #ff9800;
	--hc-radius-lg:   24px;
	--hc-radius:      16px;
	--hc-radius-sm:   10px;
	--hc-shadow:      0 12px 40px rgba(0,0,0,.28);
	color: var(--hc-fg);
	padding: 36px 16px 80px;
	max-width: 1200px;
	margin: 0 auto;
}
.haika-theme-light .hctc {
	--hc-card-bg:     #ffffff;
	--hc-card-bg-2:   #faf7ff;
	--hc-border:      rgba(91, 44, 135, 0.12);
	--hc-fg:          #1a1a2e;
	--hc-fg-muted:    #6b7280;
	--hc-shadow:      0 12px 40px rgba(91, 44, 135, 0.08);
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hctc__hero {
	position: relative;
	border-radius: var(--hc-radius-lg);
	background: linear-gradient(135deg, rgba(91, 44, 135, .18), rgba(192, 132, 252, .03));
	border: 1px solid var(--hc-border);
	padding: 56px 32px;
	margin-bottom: 28px;
	overflow: hidden;
	text-align: center;
}
.hctc__hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hctc__hero-orb {
	position: absolute;
	width: 240px; height: 240px;
	border-radius: 50%;
	filter: blur(60px);
	opacity: .35;
}
.hctc__hero-orb--1 { background: var(--hc-purple-glow); top: -60px; right: -40px; }
.hctc__hero-orb--2 { background: var(--hc-purple);      bottom: -80px; left: -60px; }
.hctc__hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hctc__hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--hc-purple-soft);
	color: var(--hc-purple-glow);
	font-size: 12.5px;
	font-weight: 700;
	margin-bottom: 14px;
}
.hctc__pulse {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--hc-purple-glow);
	animation: hctc-pulse 1.8s cubic-bezier(.66,0,0,1) infinite;
}
@keyframes hctc-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(192,132,252,.6); }
	70%      { box-shadow: 0 0 0 9px rgba(192,132,252,0); }
}
.hctc__hero-title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 900;
	margin: 0 0 12px;
	color: var(--hc-fg);
	letter-spacing: -.01em;
}
.hctc__hero-desc {
	font-size: 14.5px;
	line-height: 2;
	color: var(--hc-fg-muted);
	margin: 0 auto;
	max-width: 600px;
}

/* ════════════════════════════════════════════════════════════
   CHANNEL CARDS
   ════════════════════════════════════════════════════════════ */
.hctc__channels { margin-bottom: 36px; }
.hctc__channels-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
@media (max-width: 900px) { .hctc__channels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hctc__channels-grid { grid-template-columns: 1fr; } }

.hctc__channel {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
	background: var(--hc-card-bg);
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	color: var(--hc-fg);
	text-decoration: none;
	transition: transform .25s, border-color .2s, box-shadow .25s;
	position: relative;
	overflow: hidden;
}
.hctc__channel::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 3px; height: 100%;
	background: linear-gradient(180deg, var(--hc-purple-glow), var(--hc-purple));
	opacity: 0;
	transition: opacity .25s;
}
[dir="rtl"] .hctc__channel::before { left: auto; right: 0; }
.hctc__channel:hover {
	transform: translateY(-3px);
	border-color: var(--hc-purple-glow);
	box-shadow: 0 16px 36px rgba(91,44,135,.18);
}
.hctc__channel:hover::before { opacity: 1; }

.hctc__channel-icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--hc-purple-soft);
	color: var(--hc-purple-glow);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hctc__channel--whatsapp .hctc__channel-icon { background: rgba(37, 211, 102, 0.15); color: var(--hc-whatsapp); }
.hctc__channel--insta    .hctc__channel-icon {
	background: linear-gradient(135deg, rgba(233, 30, 99, .15), rgba(255, 152, 0, .15));
	color: var(--hc-insta-from);
}

.hctc__channel-body { flex: 1; min-width: 0; }
.hctc__channel-body small { display: block; font-size: 11px; color: var(--hc-fg-muted); font-weight: 600; margin-bottom: 2px; }
.hctc__channel-body strong { display: block; font-size: 15.5px; font-weight: 800; color: var(--hc-fg); margin-bottom: 2px; }
.hctc__channel-body span   { display: block; font-size: 11.5px; color: var(--hc-fg-muted); line-height: 1.7; }

.hctc__channel-arrow {
	color: var(--hc-purple-glow);
	opacity: .5;
	transition: transform .2s, opacity .2s;
	flex-shrink: 0;
}
.hctc__channel:hover .hctc__channel-arrow { opacity: 1; transform: translateX(-4px); }
[dir="ltr"] .hctc__channel:hover .hctc__channel-arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════
   FORM + SIDE
   ════════════════════════════════════════════════════════════ */
.hctc__main { margin-bottom: 50px; }
.hctc__main-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 28px;
	align-items: flex-start;
}
@media (max-width: 900px) { .hctc__main-grid { grid-template-columns: 1fr; } }

.hctc__form-wrap {
	background: var(--hc-card-bg);
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius-lg);
	padding: 32px;
	box-shadow: var(--hc-shadow);
}
.hctc__form-head { margin-bottom: 22px; }
.hctc__form-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 19px;
	font-weight: 800;
	margin: 0 0 6px;
	color: var(--hc-fg);
}
.hctc__form-title > svg { color: var(--hc-purple-glow); }
.hctc__form-head p { font-size: 13px; color: var(--hc-fg-muted); margin: 0; line-height: 1.85; }

.hctc__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .hctc__fields { grid-template-columns: 1fr; } }
.hctc__field { display: flex; flex-direction: column; gap: 6px; }
.hctc__field--full { grid-column: 1 / -1; }
.hctc__label { font-size: 12.5px; font-weight: 700; color: var(--hc-fg); }
.hctc__label em { color: var(--hc-purple-glow); font-style: normal; }
.hctc__field input[type="text"],
.hctc__field input[type="tel"],
.hctc__field input[type="email"],
.hctc__field textarea,
.hctc__select-wrap select {
	padding: 12px 14px;
	border-radius: var(--hc-radius-sm);
	border: 1.5px solid var(--hc-border);
	background: var(--hc-card-bg-2);
	color: var(--hc-fg);
	font-family: inherit;
	font-size: 13.5px;
	width: 100%;
	box-sizing: border-box;
	transition: border-color .15s, box-shadow .15s;
}
.hctc__field textarea { resize: vertical; min-height: 120px; line-height: 1.85; }
.hctc__field input:focus,
.hctc__field textarea:focus,
.hctc__select-wrap select:focus {
	outline: 0;
	border-color: var(--hc-purple-glow);
	box-shadow: 0 0 0 3px rgba(192,132,252,.18);
}
.hctc__field input::placeholder, .hctc__field textarea::placeholder { color: var(--hc-fg-muted); opacity: .65; }

.hctc__select-wrap { position: relative; }
.hctc__select-wrap select {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	padding-left: 38px;
}
[dir="ltr"] .hctc__select-wrap select { padding-left: 14px; padding-right: 38px; }
.hctc__select-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hc-purple-glow);
	pointer-events: none;
}
[dir="ltr"] .hctc__select-icon { left: auto; right: 14px; }

.hctc__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 22px;
}
.hctc__submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	background: linear-gradient(135deg, var(--hc-purple-glow), var(--hc-purple));
	color: #fff;
	border: 0;
	border-radius: var(--hc-radius-sm);
	font-family: inherit;
	font-weight: 800;
	font-size: 14.5px;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(91,44,135,.35);
	transition: transform .15s, box-shadow .2s;
}
.hctc__submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(91,44,135,.5); }
.hctc__submit:disabled { opacity: .65; cursor: wait; }
.hctc__submit-spin { display: none; animation: hctc-spin .8s linear infinite; transform-origin: 50% 50%; }
.hctc__submit.is-loading .hctc__submit-text,
.hctc__submit.is-loading .hctc__submit-arrow { display: none; }
.hctc__submit.is-loading .hctc__submit-spin   { display: inline-block; }
@keyframes hctc-spin { to { transform: rotate(360deg); } }

.hctc__privacy {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--hc-fg-muted);
	margin: 0;
}
.hctc__privacy > svg { color: var(--hc-success); }

.hctc__feedback {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: var(--hc-radius-sm);
	font-size: 13px;
	font-weight: 600;
	border: 1px solid;
	animation: hctc-slidein .25s ease;
}
.hctc__feedback[hidden] { display: none; }
.hctc__feedback.is-success { background: rgba(16, 185, 129, .12); color: var(--hc-success); border-color: rgba(16, 185, 129, .4); }
.hctc__feedback.is-error   { background: rgba(239, 68, 68, .12); color: #ef4444; border-color: rgba(239, 68, 68, .4); }
@keyframes hctc-slidein {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ────── Side panels ────── */
.hctc__side { display: flex; flex-direction: column; gap: 14px; }
.hctc__panel {
	background: var(--hc-card-bg);
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	padding: 22px;
}
.hctc__panel-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14.5px;
	font-weight: 800;
	margin: 0 0 14px;
	color: var(--hc-fg);
}
.hctc__panel-title > svg { color: var(--hc-purple-glow); }

.hctc__hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hctc__hours li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12.5px;
	color: var(--hc-fg-muted);
	padding-bottom: 8px;
	border-bottom: 1px dashed var(--hc-border);
}
.hctc__hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.hctc__hours strong { color: var(--hc-fg); font-weight: 700; font-size: 12.5px; }

.hctc__inline-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: var(--hc-radius-sm);
	background: var(--hc-card-bg-2);
	color: var(--hc-fg);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 8px;
	transition: background .15s, transform .15s;
}
.hctc__inline-link:last-child { margin-bottom: 0; }
.hctc__inline-link:hover { background: var(--hc-purple-soft); transform: translateX(-2px); color: var(--hc-purple-glow); }
[dir="ltr"] .hctc__inline-link:hover { transform: translateX(2px); }
.hctc__inline-link > svg { color: var(--hc-purple-glow); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   ADDRESSES
   ════════════════════════════════════════════════════════════ */
.hctc__addresses { margin-top: 24px; }
.hctc__section-head { text-align: center; margin-bottom: 22px; }
.hctc__section-eyebrow {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 999px;
	background: var(--hc-purple-soft);
	color: var(--hc-purple-glow);
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .04em;
	margin-bottom: 10px;
}
.hctc__section-title {
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 800;
	margin: 0;
	color: var(--hc-fg);
}

.hctc__addresses-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 720px) { .hctc__addresses-grid { grid-template-columns: 1fr; } }

.hctc__addr-card {
	display: flex;
	gap: 16px;
	padding: 22px;
	background: var(--hc-card-bg);
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	transition: border-color .25s, transform .25s;
}
.hctc__addr-card:hover { border-color: var(--hc-purple-glow); transform: translateY(-3px); }
.hctc__addr-icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--hc-purple-soft);
	color: var(--hc-purple-glow);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hctc__addr-body { flex: 1; min-width: 0; }
.hctc__addr-body small {
	display: block;
	font-size: 11px;
	color: var(--hc-fg-muted);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.hctc__addr-body p { font-size: 13px; color: var(--hc-fg); margin: 0; line-height: 1.95; }

/* ════════════════════════════════════════════════════════════
   Mobile fine-tuning
   ════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
	.hctc { padding: 24px 12px 80px; }
	.hctc__hero { padding: 40px 22px; }
	.hctc__form-wrap { padding: 22px 18px; }
	.hctc__panel { padding: 18px; }
	.hctc__submit { width: 100%; justify-content: center; }
	.hctc__actions { flex-direction: column; align-items: stretch; }
	.hctc__actions .hctc__privacy { justify-content: center; }
}
