/*
 * Contact page styles — baat-contact-page
 */

body.baat-contact-page {
  background: #0B1120;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  overflow-x: hidden;
}
body.baat-contact-page * { box-sizing: border-box; }
body.baat-contact-page a { text-decoration: none; }
body.baat-contact-page p { color: inherit; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.ct-hero {
  padding: 120px 40px 72px;
  text-align: center;
  background: #0B1120;
  position: relative;
  overflow: hidden;
}
.ct-hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.ct-hero-bg-orb {
  position: absolute; width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,87,255,.12) 0%, transparent 70%);
  top: -60px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.ct-hero-inner { position: relative; z-index: 1; }

/* pill badge — avoid conflict with GP label styles */
.ct-hero-inner .ct-pill {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #0057FF; background: rgba(0,87,255,.12);
  border: 1px solid rgba(0,87,255,.25); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ct-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.05;
  color: #fff; margin: 0 0 16px;
}
.ct-hero-sub {
  font-size: 18px; color: rgba(255,255,255,.55);
  max-width: 440px; margin: 0 auto; line-height: 1.6;
}

/* ═══════════════════════════════════════════
   BODY: two-column
═══════════════════════════════════════════ */
.ct-body {
  padding: 80px 40px 100px;
  background: #0B1120;
}
.ct-body-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px; gap: 64px;
  align-items: start;
}

/* ─── Form ─── */
.ct-form-title {
  font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: #fff;
  margin: 0 0 6px;
}
.ct-form-sub {
  font-size: 14px; color: rgba(255,255,255,.4); margin: 0 0 32px;
}
.ct-form { display: flex; flex-direction: column; gap: 20px; }
.ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }

body.baat-contact-page .ct-field label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6);
  letter-spacing: .01em; margin: 0; padding: 0;
  display: block; width: auto; float: none;
}

/* Override GP/WP form styles with high specificity */
body.baat-contact-page .ct-input,
body.baat-contact-page input.ct-input,
body.baat-contact-page textarea.ct-input,
body.baat-contact-page select.ct-input {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  padding: 12px 14px !important;
  transition: border-color .2s, background .2s !important;
  outline: none !important;
  width: 100% !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
body.baat-contact-page .ct-input::placeholder { color: rgba(255,255,255,.22) !important; }
body.baat-contact-page .ct-input:focus {
  border-color: rgba(0,87,255,.6) !important;
  background: rgba(0,87,255,.06) !important;
  box-shadow: 0 0 0 3px rgba(0,87,255,.12) !important;
}
body.baat-contact-page select.ct-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
}
body.baat-contact-page select.ct-input option { background: #1E293B; color: #fff; }
body.baat-contact-page textarea.ct-input { resize: vertical; min-height: 120px; line-height: 1.6; }

.ct-submit {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  background: #0057FF; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
  border: none; border-radius: 10px; padding: 14px 28px;
  cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  align-self: flex-start;
}
.ct-submit:hover {
  background: #0046CC;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,87,255,.4);
}
.ct-submit:active { transform: translateY(0); }
.ct-submit-icon { display: flex; align-items: center; transition: transform .2s; }
.ct-submit:hover .ct-submit-icon { transform: translateX(3px); }

/* Hidden by default — JS removes [hidden] on success */
.ct-success[hidden] { display: none !important; }
.ct-success {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: #25D366;
  background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.2);
  border-radius: 10px; padding: 14px 16px;
}

/* ─── Sidebar ─── */
.ct-sidebar { display: flex; flex-direction: column; gap: 0; }
.ct-sidebar-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ct-sidebar-card:first-child { padding-top: 0; }
.ct-sidebar-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,87,255,.1); border: 1px solid rgba(0,87,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #0057FF; flex-shrink: 0;
}
.ct-sidebar-title {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px;
}
.ct-sidebar-value {
  font-size: 15px; font-weight: 600; color: #fff;
  transition: color .2s; display: block; margin-bottom: 4px;
}
.ct-sidebar-value:hover { color: #4d8fff; }
.ct-sidebar-value-plain {
  font-size: 15px; font-weight: 600; color: #fff;
  margin: 0 0 4px;
}
.ct-sidebar-note {
  font-size: 12px; color: rgba(255,255,255,.3); margin: 0;
}
.ct-sidebar-divider { height: 1px; background: rgba(255,255,255,.07); margin: 8px 0; }
.ct-sidebar-help { padding-top: 24px; }
.ct-sidebar-help-title {
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.ct-sidebar-help-text {
  font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.6; margin: 0 0 14px;
}
.ct-sidebar-help-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: #0057FF;
  transition: gap .2s;
}
.ct-sidebar-help-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   BOTTOM CTA
═══════════════════════════════════════════ */
.ct-cta {
  padding: 100px 40px;
  background: #0F1A2E;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative; overflow: hidden;
}
.ct-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0,87,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.ct-cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.ct-cta-h {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -.03em; color: #fff; margin: 0 0 12px;
}
.ct-cta-sub {
  font-size: 16px; color: rgba(255,255,255,.5); margin: 0 0 32px;
}
.ct-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ct-cta-primary {
  display: inline-flex; align-items: center;
  background: #0057FF; color: #fff;
  font-size: 15px; font-weight: 700; border-radius: 10px;
  padding: 13px 26px; transition: background .2s, transform .15s;
}
.ct-cta-primary:hover { background: #0046CC; transform: translateY(-1px); }
.ct-cta-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: rgba(255,255,255,.7);
  font-size: 15px; font-weight: 600; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15); padding: 13px 26px;
  transition: border-color .2s, color .2s;
}
.ct-cta-ghost:hover { border-color: rgba(255,255,255,.4); color: #fff; }

/* ═══════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════ */
@media (max-width: 860px) {
  .ct-body-inner { grid-template-columns: 1fr; gap: 48px; }
  .ct-sidebar {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 40px;
  }
  .ct-sidebar-card:first-child { padding-top: 24px; }
}
@media (max-width: 600px) {
  .ct-hero { padding: 100px 20px 56px; }
  .ct-body { padding: 60px 20px 80px; }
  .ct-field-row { grid-template-columns: 1fr; }
  .ct-hero-sub { font-size: 16px; }
  .ct-cta { padding: 72px 20px; }
}
