/* ===== VEYRA MEDS — CONTACT PAGE (Master Build Spec) ===== */

.ct-container { max-width: 1200px; margin-inline: auto; padding-inline: 32px; }
@media (max-width: 650px) { .ct-container { padding-inline: 20px; } }

/* ===== HERO ===== */
.ct-hero {
  width: 100%;
  min-height: 520px;
  padding: 84px 0 88px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 28%, rgba(9,158,248,.14) 0%, transparent 34%),
    radial-gradient(circle at 92% 55%, rgba(107,13,216,.10) 0%, transparent 32%),
    linear-gradient(110deg, #FFFFFF 0%, #F7FBFF 58%, #F7F3FF 100%);
}
.ct-hero-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.ct-eyebrow {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--electric);
  margin-bottom: 16px;
}
.ct-h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 0;
}
.ct-grad {
  background: linear-gradient(100deg, #099EF8 0%, #315CF4 38%, #6B0DD8 72%, #8B2EE8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ct-hero-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #526581;
  max-width: 620px;
  margin-top: 24px;
}
.ct-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}
.ct-trust-item { display: flex; flex-direction: column; gap: 10px; }
.ct-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.ct-trust-icon svg { width: 18px; height: 18px; }
.ct-trust-icon.ct-c1 { background: linear-gradient(135deg, #099EF8, #315CF4); }
.ct-trust-icon.ct-c2 { background: linear-gradient(135deg, #6B0DD8, #8B2EE8); }
.ct-trust-icon.ct-c3 { background: linear-gradient(135deg, #0384AB, #099EF8); }
.ct-trust-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.ct-trust-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #526581;
}
.ct-hero-visual {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-hero-visual-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
}
.ct-hero-visual-glow {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(9,158,248,.16) 0%, transparent 55%),
    radial-gradient(circle at 66% 62%, rgba(139,46,232,.14) 0%, transparent 55%);
  filter: blur(2px);
}

/* ===== GET IN TOUCH ===== */
.ct-gtn-section { width: 100%; background: #FFFFFF; padding: 96px 0 104px; }
.ct-gtn-eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6B0DD8;
  margin-bottom: 14px;
}
.ct-gtn-h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
}
.ct-gtn-intro {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: #526581;
  margin-top: 14px;
  margin-bottom: 40px;
  max-width: 640px;
}
.ct-gtn-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  align-items: stretch;
}
.ct-methods-col { display: flex; flex-direction: column; gap: 24px; }

/* Contact method cards */
.ct-method-card {
  background: #FFFFFF;
  border: 1px solid #E5ECF5;
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 14px 36px rgba(4,13,46,.07);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ct-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #FFFFFF;
}
.ct-method-icon svg { width: 24px; height: 24px; }
.ct-method-card.ct-email .ct-method-icon { background: linear-gradient(135deg, #099EF8, #315CF4); }
.ct-method-card.ct-phone .ct-method-icon { background: linear-gradient(135deg, #0384AB, #099EF8); }
.ct-method-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.ct-method-card p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #526581;
  margin: 0 0 16px;
}
.ct-method-value {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--royal);
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}
.ct-method-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  margin-top: auto;
}
.ct-method-card.ct-email .ct-method-btn { background: linear-gradient(90deg, #099EF8, #315CF4); }
.ct-method-card.ct-phone .ct-method-btn { background: linear-gradient(90deg, #0384AB, #099EF8); }

/* Form card */
.ct-form-card {
  background: #FFFFFF;
  border: 1px solid #E5ECF5;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(4,13,46,.08);
  padding: 38px 40px 42px;
}
.ct-form-card h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}
.ct-form-intro {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #526581;
  margin-top: 10px;
  margin-bottom: 28px;
}
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ct-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.ct-field label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.ct-req { color: #6B0DD8; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  height: 52px;
  border: 1px solid #D9E3F0;
  border-radius: 10px;
  padding: 0 16px;
  background: #FFFFFF;
  width: 100%;
}
.ct-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23526581' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.ct-field textarea { height: auto; min-height: 150px; padding: 14px 16px; resize: vertical; }
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #8A9AB3; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: #099EF8;
  box-shadow: 0 0 0 3px rgba(9,158,248,.12);
  outline: none;
}
.ct-field.ct-error input,
.ct-field.ct-error select,
.ct-field.ct-error textarea {
  border-color: #E0455C;
}
.ct-error-msg {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #E0455C;
  display: none;
}
.ct-field.ct-error .ct-error-msg { display: block; }

.ct-submit-btn {
  width: 100%;
  height: 54px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #099EF8 0%, #315CF4 48%, #6B0DD8 78%, #8B2EE8 100%);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ct-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(9,158,248,.28); }
.ct-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.ct-privacy-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: #6B7C96;
  margin-top: 16px;
}

.ct-success {
  display: none;
  text-align: center;
  padding: 20px 10px 6px;
}
.ct-success.ct-show { display: block; }
.ct-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: #10B981;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.ct-success-icon svg { width: 26px; height: 26px; }
.ct-success h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #10B981;
  margin: 0 0 8px;
}
.ct-success p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #526581;
  margin: 0;
}
.ct-form-fields.ct-hide { display: none; }

/* ===== QUICK LINKS ===== */
.ct-ql-section { width: 100%; background: #F5FAFF; padding: 84px 0 92px; }
.ct-ql-eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 14px;
}
.ct-ql-h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 36px;
}
.ct-ql-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ct-ql-card {
  background: #FFFFFF;
  border: 1px solid #E5ECF5;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(4,13,46,.045);
  display: flex;
  flex-direction: column;
}
.ct-ql-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #099EF8, #6B0DD8);
}
.ct-ql-icon svg { width: 20px; height: 20px; }
.ct-ql-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.ct-ql-card p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #526581;
  margin: 0 0 16px;
}
.ct-ql-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--electric);
  text-decoration: none;
  margin-top: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ct-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .ct-hero-visual { order: -1; min-height: 0; }
  .ct-h1 { font-size: 52px; }
  .ct-gtn-grid { grid-template-columns: 1fr; }
  .ct-methods-col { flex-direction: row; }
  .ct-method-card { flex: 1; }
  .ct-ql-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ct-h1 { font-size: 44px; }
  .ct-trust-row { grid-template-columns: 1fr; gap: 18px; }
  .ct-methods-col { flex-direction: column; }
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-gtn-h2 { font-size: 34px; }
}
@media (max-width: 650px) {
  .ct-hero { padding: 56px 0 48px; min-height: 0; }
  .ct-h1 { font-size: 38px; }
  .ct-hero-visual-img { max-width: 300px; }
  .ct-gtn-section { padding: 64px 0 72px; }
  .ct-gtn-h2 { font-size: 30px; }
  .ct-form-card { padding: 28px 22px 32px; }
  .ct-ql-section { padding: 56px 0 64px; }
  .ct-ql-h2 { font-size: 28px; }
  .ct-ql-grid { grid-template-columns: 1fr; }
}

/* ===== ERROR BOX ===== */
.ct-error-box {
  display: none;
  text-align: center;
  padding: 20px 10px 6px;
}
.ct-error-box.ct-show { display: block; }
.ct-error-box-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(224, 69, 92, .10);
  color: #E0455C;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.ct-error-box-icon svg { width: 26px; height: 26px; }
.ct-error-box h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #E0455C;
  margin: 0 0 8px;
}
.ct-error-box p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #526581;
  margin: 0;
}
.ct-error-box a { color: #061155; font-weight: 600; }

/* ===== BOTTOM CTA ===== */
.ct-cta-section { width: 100%; background: #FFFFFF; padding: 64px 0 72px; }
.ct-cta-band {
  background: linear-gradient(100deg, #040D2E 0%, #061155 55%, #6B0DD8 100%);
  border-radius: 22px;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ct-cta-text { max-width: 680px; }
.ct-cta-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--electric);
  margin: 0 0 10px;
}
.ct-cta-h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 12px;
}
.ct-cta-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #B8C8E8;
  margin: 0 0 16px;
}
.ct-cta-brand {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
}
.ct-cta-brand .cbc-blue { color: #099EF8; }
.ct-cta-brand .cbc-violet { color: #8B2EE8; }
.ct-cta-brand .cbc-magenta { color: #E26EE8; }
.ct-cta-brand .cbc-gold { color: #FFD700; }
.ct-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  border-radius: 13px;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ct-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(9,158,248,.35); }

@media (max-width: 768px) {
  .ct-cta-band { flex-direction: column; align-items: flex-start; padding: 34px 28px; gap: 26px; }
  .ct-cta-btn { width: 100%; max-width: 360px; }
  .ct-cta-h2 { font-size: 26px; }
}

/* ===== 3D SUPPORTING ILLUSTRATIONS (approved assets) ===== */
.ct-method-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.ct-method-head-left { display: flex; flex-direction: column; }
.ct-method-art {
  width: 158px;
  max-width: 45%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: -6px;
  pointer-events: none;
}
.ct-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.ct-form-art {
  width: 125px;
  max-width: 30%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: -6px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .ct-method-art { width: 118px; }
  .ct-form-art { width: 100px; margin-top: 0; }
}
@media (max-width: 430px) {
  .ct-method-art { width: 108px; margin-top: 0; }
  .ct-form-art { width: 88px; margin-top: 0; }
}
