/* Aloqa page — extends hotels.css. */

.aloqa-body { --aq-accent: #f97316; }

/* Hero — warmer mix (orange / pink) to signal "human/connect" */
.aloqa-body .hotel-hero {
  background: linear-gradient(135deg, #0B3AD6 0%, #2563eb 55%, #6366f1 100%);
}
.aloqa-body .htl-blob-1 { background: #fbbf24; }
.aloqa-body .htl-blob-2 { background: #f97316; }
.aloqa-body .htl-blob-3 { background: #ec4899; }
.aloqa-body .htl-rotate { min-width: 11ch; }

/* ── Channel grid: 6 big contact tiles ─────────────────────────── */
.aq-channels {
  padding: 60px 20px;
}
.aq-channels-inner { max-width: 1180px; margin: 0 auto; }
.aq-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.aq-channel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.aq-channel:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 32px -16px rgba(15, 23, 42, 0.2);
}
.aq-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.aq-channel-icon svg { width: 24px; height: 24px; flex-shrink: 0; }
.aq-channel-icon.green   { background: linear-gradient(135deg, #10b981, #059669); }
.aq-channel-icon.blue    { background: linear-gradient(135deg, #0B3AD6, #2563eb); }
.aq-channel-icon.tg      { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.aq-channel-icon.wa      { background: linear-gradient(135deg, #22c55e, #15803d); }
.aq-channel-icon.orange  { background: linear-gradient(135deg, #f97316, #ea580c); }
.aq-channel-icon.pink    { background: linear-gradient(135deg, #ec4899, #be185d); }
.aq-channel-icon.violet  { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.aq-channel-icon.amber   { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.aq-channel-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.aq-channel-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.aq-channel-value {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
  word-break: break-word;
}
.aq-channel-cta {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
}
.aq-channel-arrow {
  color: #cbd5e1;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.aq-channel-arrow svg { width: 18px; height: 18px; }
.aq-channel:hover .aq-channel-arrow { color: var(--htl-blue); transform: translateX(3px); }

/* ── Department contacts ───────────────────────────────────────── */
.aq-depts {
  padding: 60px 20px;
}
.aq-depts-inner { max-width: 1180px; margin: 0 auto; }
.aq-depts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.aq-dept {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 18px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.aq-dept:hover { border-color: #cbd5e1; box-shadow: 0 10px 22px -14px rgba(15, 23, 42, 0.18); }
.aq-dept-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.aq-dept-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: var(--htl-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aq-dept-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.aq-dept-name {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.1px;
}
.aq-dept-rows { display: flex; flex-direction: column; gap: 6px; }
.aq-dept-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
}
.aq-dept-row svg { width: 14px; height: 14px; color: #94a3b8; flex-shrink: 0; }
.aq-dept-row:hover { color: var(--htl-blue); }
.aq-dept-row:hover svg { color: var(--htl-blue); }

/* ── Office + hours split card ─────────────────────────────────── */
.aq-office {
  padding: 60px 20px;
}
.aq-office-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.aq-office-card,
.aq-hours-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 22px;
}
.aq-office-map {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.aq-office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.aq-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.aq-card-title svg { width: 18px; height: 18px; color: var(--htl-blue); }
.aq-card-sub {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}
.aq-hours-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }
.aq-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 13px;
}
.aq-hours-list li:last-child { border-bottom: 0; }
.aq-hours-day { color: #475569; font-weight: 600; }
.aq-hours-time { color: #0f172a; font-weight: 800; }
.aq-hours-list li.now {
  background: linear-gradient(90deg, #f0fdf4, transparent);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 0 -10px;
}
.aq-hours-list li.now .aq-hours-time { color: #10b981; }

@media (max-width: 880px) {
  .aq-office-inner { grid-template-columns: 1fr; }
}

/* ── Quick message form ────────────────────────────────────────── */
.aq-form-section {
  padding: 60px 20px;
}
.aq-form-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #0B3AD6 0%, #1e1b4b 100%);
  border-radius: 22px;
  padding: 40px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.aq-form-inner::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.32) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}
.aq-form-left { position: relative; z-index: 1; }
.aq-form-left h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}
.aq-form-left h2 .accent-y { color: #fbbf24; }
.aq-form-left p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
}
.aq-form-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.aq-form-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}
.aq-form-bullets li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fbbf24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23422006' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.aq-form {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aq-form-field { display: flex; flex-direction: column; gap: 5px; }
.aq-form-label {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.aq-form-input,
.aq-form-textarea {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.aq-form-input:focus,
.aq-form-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--htl-blue);
  box-shadow: 0 0 0 3px rgba(11, 58, 214, 0.08);
}
.aq-form-textarea {
  min-height: 90px;
  resize: vertical;
}
.aq-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--htl-blue);
  color: #fff;
  border: 0;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
  box-shadow: 0 10px 22px -10px rgba(11, 58, 214, 0.5);
  margin-top: 4px;
}
.aq-form-submit:hover { background: #0A2BA8; transform: translateY(-2px); }
.aq-form-submit svg { width: 16px; height: 16px; }
.aq-form-note {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 2px;
}

@media (max-width: 880px) {
  .aq-form-inner { grid-template-columns: 1fr; padding: 32px 22px; gap: 22px; }
}
