/**
 * Websirg - Professional Modern Contact Page Stylesheet
 * High-Tech Dark Hero, Interactive Bento Brief Form, Direct Communications & FAQ
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --ws-primary: #f97316;
  --ws-primary-hover: #ea580c;
  --ws-primary-glow: rgba(249, 115, 22, 0.25);
  --ws-dark: #070b14;
  --ws-dark-surface: #0f172a;
  --ws-dark-border: rgba(255, 255, 255, 0.08);
  --ws-light-bg: #f8fafc;
  --ws-card-border: #e2e8f0;
  --ws-text-main: #0f172a;
  --ws-text-muted: #64748b;
  --ws-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.ws-contact-page {
  font-family: var(--ws-font) !important;
  color: var(--ws-text-main);
  background: var(--ws-light-bg);
  overflow-x: hidden;
}

.ws-contact-hero {
  position: relative;
  background: var(--ws-dark);
  color: #ffffff;
  padding: 130px 0 55px;
  overflow: hidden;
  border-bottom: 1px solid var(--ws-dark-border);
}

.ws-hero-glow-1 {
  position: absolute;
  top: -120px;
  right: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, rgba(249, 115, 22, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.ws-hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, rgba(59, 130, 246, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.ws-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.ws-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.ws-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fdba74;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ws-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ws-primary);
  box-shadow: 0 0 10px var(--ws-primary);
  display: inline-block;
  animation: wsDotPulse 2s infinite ease-in-out;
}

@keyframes wsDotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.ws-contact-hero-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}

.ws-gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ws-contact-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 22px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ws-hero-assurance-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-assurance-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #cbd5e1;
}

.ws-assurance-item svg,
.ws-assurance-item .icon-shield-check {
  color: #10b981;
  font-size: 15px;
}

/* =========================================================
   2. MAIN CONTACT SECTION (FORM + DIRECT CHANNELS)
========================================================== */
.ws-contact-main-section {
  padding: 50px 0;
  position: relative;
  background: var(--ws-light-bg);
}

/* Form Bento Card (Left Column) */
.ws-contact-form-card {
  background: #ffffff;
  border: 1px solid var(--ws-card-border);
  border-radius: 20px;
  padding: 36px 38px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.ws-contact-form-card:hover {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.ws-form-header {
  margin-bottom: 24px;
}

.ws-form-tag {
  color: var(--ws-primary);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.ws-form-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ws-text-main);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.ws-form-desc {
  font-size: 14px;
  color: var(--ws-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Interactive Service Category Pills */
.ws-service-select-wrap {
  margin-bottom: 22px;
}

.ws-input-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
  display: block;
}

.ws-service-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ws-chip-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.ws-chip-label input[type="checkbox"] {
  display: none;
}

.ws-chip-label:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.ws-chip-label.is-active,
.ws-chip-label input[type="checkbox"]:checked+span,
.ws-chip-label:has(input[type="checkbox"]:checked) {
  background: #fff7ed;
  border-color: #fdba74;
  color: #ea580c;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.15);
}

/* Input Fields */
.ws-field-group {
  margin-bottom: 16px;
}

.ws-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-family: var(--ws-font);
  outline: none;
}

.ws-control:focus {
  background: #ffffff;
  border-color: var(--ws-primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.ws-control::placeholder {
  color: #94a3b8;
  font-size: 13.5px;
}

textarea.ws-control {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* Privacy & Guarantee note */
.ws-form-security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 20px;
  padding: 9px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
}

.ws-form-security-note svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Submit Button */
.ws-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.ws-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(234, 88, 12, 0.45);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
}

.ws-submit-btn svg {
  transition: transform 0.2s ease;
}

.ws-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Success notification message */
.ws-form-status {
  display: none;
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
}

.ws-form-status.success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* =========================================================
   DIRECT CHANNELS & ROADMAP (RIGHT COLUMN)
========================================================== */
.ws-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Direct Channels Card */
.ws-contact-info-card {
  background: #ffffff;
  border: 1px solid var(--ws-card-border);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.ws-info-header {
  margin-bottom: 20px;
}

.ws-info-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ws-text-main);
  margin-bottom: 4px;
}

.ws-info-header p {
  font-size: 13px;
  color: var(--ws-text-muted);
  margin: 0;
}

.ws-channel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.ws-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.ws-channel-item:hover {
  background: #ffffff;
  border-color: #fdba74;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.08);
  transform: translateX(3px);
}

.ws-channel-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff7ed;
  color: var(--ws-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.ws-channel-body {
  flex-grow: 1;
}

.ws-channel-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748b;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ws-channel-val {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.ws-channel-sub {
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 2px;
}

/* WhatsApp Direct Banner Card */
.ws-whatsapp-hotline-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  transition: all 0.25s ease;
}

.ws-whatsapp-hotline-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
  color: #ffffff;
}

.ws-wa-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ws-wa-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ws-wa-title {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.ws-wa-sub {
  font-size: 11.5px;
  opacity: 0.9;
  margin: 0;
}

.ws-wa-btn {
  background: #ffffff;
  color: #047857;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* 3-Step Next Steps Card */
.ws-roadmap-card {
  background: #ffffff;
  border: 1px solid var(--ws-card-border);
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.ws-roadmap-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ws-text-main);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-roadmap-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ws-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--ws-primary);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.ws-step-content strong {
  font-size: 13px;
  color: #0f172a;
  display: block;
  margin-bottom: 2px;
}

.ws-step-content p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

/* =========================================================
   3. FAQ ACCORDION SECTION (TIGHT & CLEAN)
========================================================== */
.ws-contact-faq-section {
  padding: 45px 0 65px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.ws-faq-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px;
}

.ws-faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ws-primary);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ws-faq-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--ws-text-main);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.ws-faq-desc {
  font-size: 14px;
  color: var(--ws-text-muted);
  margin: 0;
}

.ws-faq-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 24px;
  height: 100%;
  transition: all 0.25s ease;
}

.ws-faq-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.ws-faq-card h5 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.ws-faq-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .ws-contact-hero {
    padding: 115px 0 45px;
  }

  .ws-contact-hero-title {
    font-size: 32px;
  }

  .ws-contact-form-card {
    padding: 26px 22px;
    margin-bottom: 24px;
  }

  .ws-contact-main-section {
    padding: 35px 0;
  }
}

@media (max-width: 576px) {
  .ws-contact-hero-title {
    font-size: 27px;
  }

  .ws-hero-assurance-bar {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .ws-chip-label {
    font-size: 11.5px;
    padding: 6px 11px;
  }
}