/* ==========================================================================
   contacto.css  —  Sifuentes Colombia
   Contact / Quote Request page — v5.0.0
   Prefix:    ct-
   Loaded:    conditionally on /contacto/ via functions.php
   Depends:   child-style (loads after — inherits --sif-* variables)
   ========================================================================== */

/* ── Page-scoped variables ────────────────────────────────────────────────
   All ct-* vars resolve from --sif-* so brand colours stay in one place.
   ─────────────────────────────────────────────────────────────────────── */
.ct-page {
  --ct-blue:        var(--sif-blue,        #0A1C85);
  --ct-blue-deep:   var(--sif-blue-deep,   #060e2e);
  --ct-yellow:      var(--sif-yellow,      #FFC300);
  --ct-white:       var(--sif-white,       #FFFFFF);
  --ct-surface:     #F7F8FC;
  --ct-border:      rgba(0, 0, 0, .08);
  --ct-text:        #1A1A2E;
  --ct-muted:       rgba(26, 26, 46, .52);
  --ct-error:       #dc2626;
  --ct-success:     #16a34a;
  --ct-font:        var(--sif-font, 'Manrope', -apple-system, sans-serif);
  --ct-ease:        cubic-bezier(.4, 0, .2, 1);
  --ct-radius:      14px;
  --ct-radius-sm:   8px;
  --ct-shadow:      0 4px 24px rgba(0, 0, 0, .07);
  --ct-shadow-md:   0 8px 40px rgba(10, 28, 133, .10);
}

/* ── Page wrapper ─────────────────────────────────────────────────────────*/
.ct-page {
  font-family:          var(--ct-font);
  -webkit-font-smoothing: antialiased;
  color:                var(--ct-text);
  background:           var(--ct-surface);
  /* Neutralise Elementor container padding */
  width:                100vw;
  margin-left:          calc(-50vw + 50%);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ct-hero {
  position:   relative;
  background: var(--ct-blue-deep);
  padding:    72px 20px 68px;
  overflow:   hidden;
}

/* Subtle grid overlay — clinical texture */
.ct-hero__overlay {
  position: absolute;
  inset:    0;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px,
      transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px,
      transparent 1px, transparent 80px);
  pointer-events: none;
}

/* Bottom fade to page background */
.ct-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(6, 14, 46, .40));
  pointer-events: none;
}

.ct-hero__inner {
  position:   relative;
  z-index:    1;
  max-width:  840px;
  margin:     0 auto;
}

/* Eyebrow — line + text */
.ct-hero__eyebrow {
  display:     flex;
  align-items: center;
  gap:         14px;
  font-size:   10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:       rgba(255, 195, 0, .75);
  margin:      0 0 20px;
}

.ct-hero__rule {
  display: block;
  width:   36px;
  height:  1.5px;
  background: var(--ct-yellow);
  opacity: .65;
  flex-shrink: 0;
}

.ct-hero__title {
  font-size:      clamp(30px, 4vw, 52px);
  font-weight:    800;
  color:          var(--ct-white);
  line-height:    1.08;
  letter-spacing: -.028em;
  margin:         0 0 18px;
}

.ct-hero__title em {
  font-style: normal;
  color:      var(--ct-yellow);
}

.ct-hero__sub {
  font-size:   clamp(14px, 1.2vw, 16.5px);
  font-weight: 400;
  color:       rgba(255, 255, 255, .64);
  line-height: 1.76;
  max-width:   640px;
  margin:      0;
}

/* ==========================================================================
   MAIN + GRID
   ========================================================================== */
.ct-main {
  max-width: 1280px;
  margin:    0 auto;
  padding:   60px 24px 80px;
}

/* Two-column: form (wider) + info sidebar */
.ct-grid {
  display:               grid;
  grid-template-columns: 1fr 380px;
  grid-template-areas:   "form info";
  gap:                   48px;
  align-items:           start;
}

/* ==========================================================================
   FORM PANEL
   ========================================================================== */
.ct-form-panel {
  grid-area:     form;
  background:    var(--ct-white);
  border:        1px solid var(--ct-border);
  border-radius: calc(var(--ct-radius) + 4px);
  padding:       44px 44px 40px;
  box-shadow:    var(--ct-shadow);
}

.ct-form-panel__header {
  display:         flex;
  align-items:     baseline;
  justify-content: space-between;
  gap:             16px;
  margin-bottom:   32px;
  padding-bottom:  24px;
  border-bottom:   1px solid var(--ct-border);
}

.ct-form-panel__title {
  font-size:      20px;
  font-weight:    800;
  color:          var(--ct-blue);
  letter-spacing: -.018em;
  margin:         0;
}

.ct-form-panel__required-note {
  font-size:   11.5px;
  color:       var(--ct-muted);
  margin:      0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── SUCCESS STATE ────────────────────────────────────────────────────────*/
.ct-success {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  padding:        52px 24px 48px;
  gap:            16px;
  animation:      ct-fade-in .48s var(--ct-ease) both;
}

@keyframes ct-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ct-success__icon {
  width:  64px;
  height: 64px;
  color:  var(--ct-success);
  display: flex;
}

.ct-success__icon svg { width: 100%; height: 100%; }

.ct-success__title {
  font-size:      22px;
  font-weight:    800;
  color:          var(--ct-blue);
  letter-spacing: -.018em;
  margin:         4px 0 0;
}

.ct-success__body {
  font-size:   15px;
  color:       var(--ct-muted);
  line-height: 1.72;
  max-width:   520px;
  margin:      0;
}

/* ── ALERT BANNERS ────────────────────────────────────────────────────────*/
.ct-alert {
  display:       flex;
  align-items:   flex-start;
  gap:           12px;
  padding:       14px 18px;
  border-radius: var(--ct-radius-sm);
  font-size:     14px;
  line-height:   1.62;
  margin-bottom: 28px;
}

.ct-alert svg { flex-shrink: 0; margin-top: 1px; }
.ct-alert p,
.ct-alert ul { margin: 0; }
.ct-alert ul { padding-left: 18px; margin-top: 4px; }
.ct-alert strong { font-weight: 700; display: block; margin-bottom: 2px; }

.ct-alert--error {
  background:  #fef2f2;
  border:      1px solid #fecaca;
  color:       var(--ct-error);
}

.ct-alert--error svg { color: var(--ct-error); }

.ct-alert--warning {
  background:  #fffbeb;
  border:      1px solid #fde68a;
  color:       #92600a;
}

.ct-alert--warning svg { color: #b45309; }

/* ── FIELDSETS ────────────────────────────────────────────────────────────*/
.ct-fieldset {
  border:  none;
  padding: 0;
  margin:  0 0 28px;
}

.ct-fieldset--product {
  background:    rgba(255, 195, 0, .07);
  border:        1px solid rgba(255, 195, 0, .26);
  border-radius: var(--ct-radius-sm);
  padding:       16px 20px 18px;
  margin-bottom: 28px;
}

.ct-legend {
  display:        flex;
  align-items:    center;
  gap:            7px;
  font-size:      10px;
  font-weight:    800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color:          var(--ct-muted);
  padding:        0;
  margin-bottom:  18px;
  /* Float trick keeps legend inside border-radius */
  float: left;
  width: 100%;
}

.ct-fieldset--product .ct-legend { color: #7a5a00; margin-bottom: 14px; }
.ct-legend svg { opacity: .55; flex-shrink: 0; }

/* ── FIELDS ───────────────────────────────────────────────────────────────*/
.ct-field {
  margin:  0 0 18px;
  display: block;
}

.ct-field:last-child { margin-bottom: 0; }

/* Two inputs side by side (tel + empresa) */
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:     16px;
  margin:  0 0 18px;
}

.ct-field-row .ct-field { margin: 0; }

/* ── LABELS ───────────────────────────────────────────────────────────────*/
.ct-label {
  display:     block;
  font-size:   12.5px;
  font-weight: 700;
  color:       var(--ct-text);
  margin-bottom: 7px;
}

.ct-required {
  color:       var(--ct-error);
  margin-left: 1px;
}

/* ── INPUTS ───────────────────────────────────────────────────────────────*/
.ct-input {
  display:       block;
  width:         100%;
  font-family:   var(--ct-font);
  font-size:     14.5px;
  font-weight:   500;
  color:         var(--ct-text);
  background:    var(--ct-surface);
  border:        1.5px solid rgba(0, 0, 0, .13);
  border-radius: var(--ct-radius-sm);
  padding:       11px 14px;
  box-sizing:    border-box;
  outline:       none;
  /* Remove browser / Elementor injection */
  -webkit-appearance: none;
  appearance:    none;
  box-shadow:    none;
  transition:
    border-color .18s var(--ct-ease),
    background   .18s var(--ct-ease),
    box-shadow   .18s var(--ct-ease);
}

.ct-input::placeholder       { color: rgba(26, 26, 46, .30); font-weight: 400; }
.ct-input:hover               { border-color: rgba(10, 28, 133, .28); }
.ct-input:focus               {
  border-color: var(--ct-blue);
  background:   var(--ct-white);
  box-shadow:   0 0 0 3.5px rgba(10, 28, 133, .09);
}

/* Error state */
.ct-input--error,
.ct-input--error:hover {
  border-color: var(--ct-error);
  background:   #fff5f5;
}

.ct-input--error:focus {
  border-color: var(--ct-error);
  box-shadow:   0 0 0 3.5px rgba(220, 38, 38, .10);
}

/* Readonly product field */
.ct-input--product {
  background:    rgba(255, 195, 0, .08);
  border-color:  rgba(255, 195, 0, .40);
  color:         #6a4c00;
  font-weight:   700;
  cursor:        default;
}

.ct-input--product:focus {
  border-color: rgba(255, 195, 0, .60);
  box-shadow:   0 0 0 3.5px rgba(255, 195, 0, .12);
}

/* Textarea */
.ct-textarea {
  resize:     vertical;
  min-height: 130px;
  line-height: 1.66;
}

/* ── FIELD ERROR MESSAGES ─────────────────────────────────────────────────*/
.ct-field-error {
  display:     block;
  font-size:   11.5px;
  font-weight: 600;
  color:       var(--ct-error);
  margin-top:  5px;
}

.ct-field-error--hidden { display: none; }

/* ==========================================================================
   DATA CONSENT CHECKBOX
   ========================================================================== */
.ct-consent {
  margin: 4px 0 28px;
}

.ct-consent__label {
  display:     flex;
  align-items: flex-start;
  gap:         12px;
  cursor:      pointer;
  line-height: 1.55;
}

/* Hide the native checkbox visually — replaced by .ct-consent__box */
.ct-consent__input {
  position: absolute;
  opacity:  0;
  width:    0;
  height:   0;
  pointer-events: none;
}

/* Custom checkbox box */
.ct-consent__box {
  flex-shrink:   0;
  width:         20px;
  height:        20px;
  margin-top:    1px;
  border:        1.8px solid rgba(0, 0, 0, .20);
  border-radius: 5px;
  background:    var(--ct-white);
  display:       flex;
  align-items:   center;
  justify-content: center;
  color:         var(--ct-white);
  transition:
    background     .18s var(--ct-ease),
    border-color   .18s var(--ct-ease),
    box-shadow     .18s var(--ct-ease);
}

.ct-consent__box svg {
  width:    11px;
  height:   11px;
  opacity:  0;
  transform: scale(.5);
  transition: opacity .14s ease, transform .14s ease;
  stroke: currentColor;
}

/* Checked state — driven by sibling CSS selector */
.ct-consent__input:checked ~ .ct-consent__box {
  background:   var(--ct-blue);
  border-color: var(--ct-blue);
}

.ct-consent__input:checked ~ .ct-consent__box svg {
  opacity:   1;
  transform: scale(1);
}

/* Focus ring on the visible box */
.ct-consent__input:focus-visible ~ .ct-consent__box {
  box-shadow: 0 0 0 3.5px rgba(10, 28, 133, .14);
  border-color: var(--ct-blue);
}

/* Error state */
.ct-consent--invalid .ct-consent__box {
  border-color: var(--ct-error);
  background:   #fff5f5;
}

.ct-consent__text {
  font-size:   13.5px;
  color:       var(--ct-muted);
  line-height: 1.55;
}

.ct-consent__link {
  color:           var(--ct-blue) !important;
  text-decoration: underline !important;
  background:      transparent !important;
  border:          none !important;
  box-shadow:      none !important;
  font-weight:     600;
}

.ct-consent__link:hover { opacity: .78; }

/* ==========================================================================
   FORM FOOTER + BUTTONS
   ========================================================================== */
.ct-form-footer {
  display:        flex;
  flex-direction: column;
  gap:            14px;
  margin-top:     4px;
}

/* Primary submit button */
.ct-btn-submit,
.ct-btn-submit:link,
.ct-btn-submit:visited,
.ct-btn-submit:focus {
  display:         flex !important;
  align-items:     center !important;
  justify-content: center !important;
  gap:             9px !important;
  width:           100% !important;
  font-family:     var(--ct-font) !important;
  font-size:       13px !important;
  font-weight:     700 !important;
  letter-spacing:  .07em !important;
  text-transform:  uppercase !important;
  text-decoration: none !important;
  color:           var(--ct-blue) !important;
  background:      var(--ct-yellow) !important;
  background-color:var(--ct-yellow) !important;
  background-image:none !important;
  border:          2px solid var(--ct-yellow) !important;
  border-radius:   var(--ct-radius-sm) !important;
  padding:         15px 28px !important;
  cursor:          pointer !important;
  box-shadow:      none !important;
  transition:      background .22s ease, border-color .22s ease,
                   color .22s ease, transform .18s ease,
                   opacity .18s ease !important;
}

.ct-btn-submit:hover {
  background:       var(--ct-blue) !important;
  background-color: var(--ct-blue) !important;
  border-color:     var(--ct-blue) !important;
  color:            #FFF !important;
  transform:        translateY(-2px) !important;
  box-shadow:       0 8px 28px rgba(10, 28, 133, .22) !important;
}

.ct-btn-submit:disabled,
.ct-btn-submit--loading {
  opacity:   .65 !important;
  transform: none !important;
  cursor:    not-allowed !important;
}

/* Idle / busy text switching */
.ct-btn-submit__idle  { display: flex; align-items: center; gap: 9px; }
.ct-btn-submit__busy  { display: none; align-items: center; gap: 9px; }

.ct-btn-submit--loading .ct-btn-submit__idle { display: none; }
.ct-btn-submit--loading .ct-btn-submit__busy { display: flex; }

/* Spinner */
.ct-spinner {
  width:     18px;
  height:    18px;
  animation: ct-spin .8s linear infinite;
  flex-shrink: 0;
}

@keyframes ct-spin {
  to { transform: rotate(360deg); }
}

.ct-form-footer__disclaimer {
  display:     flex;
  align-items: flex-start;
  gap:         7px;
  font-size:   11.5px;
  color:       var(--ct-muted);
  line-height: 1.55;
  margin:      0;
}

.ct-form-footer__disclaimer svg {
  flex-shrink: 0;
  margin-top:  1px;
  opacity:     .55;
}

/* Return to catalogue button (success state) */
.ct-btn-return,
.ct-btn-return:link,
.ct-btn-return:visited {
  display:         inline-flex !important;
  align-items:     center !important;
  gap:             6px !important;
  font-size:       12px !important;
  font-weight:     700 !important;
  letter-spacing:  .06em !important;
  text-transform:  uppercase !important;
  text-decoration: none !important;
  color:           var(--ct-blue) !important;
  background:      rgba(10, 28, 133, .06) !important;
  border:          1.5px solid rgba(10, 28, 133, .16) !important;
  border-radius:   var(--ct-radius-sm) !important;
  padding:         11px 22px !important;
  box-shadow:      none !important;
  margin-top:      8px !important;
  transition:      background .18s ease, border-color .18s ease !important;
}

.ct-btn-return:hover {
  background:   rgba(10, 28, 133, .10) !important;
  border-color: rgba(10, 28, 133, .28) !important;
}

/* ==========================================================================
   INFO PANEL (right column)
   ========================================================================== */
.ct-info-panel {
  grid-area:      info;
  display:        flex;
  flex-direction: column;
  gap:            18px;
  position:       sticky;
  top:            calc(68px + 20px);
}

/* ── Contact card ─────────────────────────────────────────────────────────*/
.ct-info-card {
  background:    var(--ct-white);
  border:        1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding:       26px 24px 22px;
  box-shadow:    var(--ct-shadow);
}

.ct-info-card__title {
  font-size:      15.5px;
  font-weight:    800;
  color:          var(--ct-blue);
  letter-spacing: -.015em;
  margin:         0 0 20px;
}

.ct-address {
  font-style: normal;
  display:    flex;
  flex-direction: column;
  gap:        16px;
}

.ct-address__item {
  display:     flex;
  align-items: flex-start;
  gap:         12px;
  font-size:   13.5px;
  color:       var(--ct-text);
  line-height: 1.62;
  margin:      0;
}

.ct-address__icon {
  flex-shrink:   0;
  width:         32px;
  height:        32px;
  border-radius: 8px;
  background:    rgba(10, 28, 133, .06);
  display:       flex;
  align-items:   center;
  justify-content: center;
  color:         var(--ct-blue);
  margin-top:    1px;
}

.ct-address__icon svg { width: 16px; height: 16px; }

.ct-address strong {
  display:     block;
  font-weight: 700;
  font-size:   11.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color:       var(--ct-muted);
  margin-bottom: 2px;
}

.ct-address a,
.ct-address a:link,
.ct-address a:visited {
  color:           var(--ct-blue) !important;
  text-decoration: none !important;
  font-weight:     600 !important;
  background:      transparent !important;
  border:          none !important;
  box-shadow:      none !important;
  transition:      opacity .15s ease !important;
}

.ct-address a:hover { opacity: .72; }

/* ── Response time pill ───────────────────────────────────────────────────*/
.ct-response-pill {
  display:       flex;
  align-items:   center;
  gap:           9px;
  background:    rgba(22, 163, 74, .07);
  border:        1px solid rgba(22, 163, 74, .20);
  border-radius: 30px;
  padding:       8px 16px;
  font-size:     12px;
  font-weight:   600;
  color:         #16a34a;
}

.ct-response-pill__dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    #16a34a;
  flex-shrink:   0;
  animation:     ct-pulse 2.4s ease-in-out infinite;
}

@keyframes ct-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, .4); }
  50%       { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

/* ── Channel buttons (WhatsApp / LinkedIn / Instagram) ────────────────────*/
.ct-channels {
  display:        flex;
  flex-direction: column;
  gap:            8px;
}

.ct-channel,
.ct-channel:link,
.ct-channel:visited {
  display:       flex !important;
  align-items:   center !important;
  gap:           12px !important;
  padding:       13px 16px !important;
  border-radius: var(--ct-radius-sm) !important;
  text-decoration: none !important;
  box-shadow:    none !important;
  transition:    background .18s ease, transform .16s ease, box-shadow .18s ease !important;
}

.ct-channel:hover {
  transform:   translateX(3px) !important;
  box-shadow:  var(--ct-shadow) !important;
}

/* WhatsApp */
.ct-channel--whatsapp,
.ct-channel--whatsapp:link,
.ct-channel--whatsapp:visited {
  background:   rgba(37, 211, 102, .08) !important;
  border:       1px solid rgba(37, 211, 102, .22) !important;
  color:        #1a7a3a !important;
}
.ct-channel--whatsapp:hover { background: rgba(37, 211, 102, .14) !important; }
.ct-channel--whatsapp .ct-channel__icon { color: #25d366; }

/* LinkedIn */
.ct-channel--linkedin,
.ct-channel--linkedin:link,
.ct-channel--linkedin:visited {
  background:   rgba(10, 102, 194, .07) !important;
  border:       1px solid rgba(10, 102, 194, .18) !important;
  color:        #0a66c2 !important;
}
.ct-channel--linkedin:hover { background: rgba(10, 102, 194, .12) !important; }
.ct-channel--linkedin .ct-channel__icon { color: #0a66c2; }

/* Instagram */
.ct-channel--instagram,
.ct-channel--instagram:link,
.ct-channel--instagram:visited {
  background:   rgba(225, 48, 108, .07) !important;
  border:       1px solid rgba(225, 48, 108, .18) !important;
  color:        #c2185b !important;
}
.ct-channel--instagram:hover { background: rgba(225, 48, 108, .12) !important; }
.ct-channel--instagram .ct-channel__icon { color: #e1306c; }

.ct-channel__icon {
  flex-shrink:   0;
  width:         34px;
  height:        34px;
  border-radius: 8px;
  background:    rgba(255, 255, 255, .72);
  display:       flex;
  align-items:   center;
  justify-content: center;
}

.ct-channel__icon svg { width: 18px; height: 18px; }

.ct-channel__body {
  flex:           1;
  display:        flex;
  flex-direction: column;
  gap:            1px;
}

.ct-channel__body strong {
  font-size:   13.5px;
  font-weight: 700;
  display:     block;
}

.ct-channel__body span {
  font-size:   11.5px;
  opacity:     .65;
}

.ct-channel__arrow {
  font-size:   14px;
  opacity:     .38;
  flex-shrink: 0;
  transition:  transform .18s ease, opacity .18s ease;
}

.ct-channel:hover .ct-channel__arrow {
  transform: translateX(3px);
  opacity:   .70;
}

/* ── Trust strip (certifications) ────────────────────────────────────────*/
.ct-trust-strip {
  background:    var(--ct-white);
  border:        1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding:       20px 22px 18px;
  box-shadow:    var(--ct-shadow);
}

.ct-trust-strip__title {
  font-size:      10px;
  font-weight:    800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color:          var(--ct-muted);
  margin:         0 0 14px;
}

.ct-trust-strip__list {
  list-style: none;
  margin:     0;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        9px;
}

.ct-trust-strip__item {
  display:     flex;
  align-items: center;
  gap:         8px;
  font-size:   13px;
  font-weight: 600;
  color:       var(--ct-text);
}

.ct-trust-strip__item svg {
  color:       var(--ct-success);
  flex-shrink: 0;
}

/* ==========================================================================
   MAP SECTION
   ========================================================================== */
.ct-map-section {
  background:  var(--ct-blue-deep);
  padding:     64px 0 0;
  position:    relative;
}

/* Top separator line */
.ct-map-section::before {
  content:    '';
  position:   absolute;
  top:        0;
  left:       50%;
  transform:  translateX(-50%);
  width:      56px;
  height:     2px;
  background: var(--ct-yellow);
}

.ct-map-header {
  text-align: center;
  padding:    0 20px 44px;
}

.ct-map-header__eyebrow {
  font-size:      10px;
  font-weight:    700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color:          rgba(255, 195, 0, .65);
  margin:         0 0 10px;
}

.ct-map-header__title {
  font-size:      clamp(22px, 2.8vw, 34px);
  font-weight:    800;
  color:          var(--ct-white);
  letter-spacing: -.022em;
  margin:         0 0 10px;
}

.ct-map-header__address {
  font-size:   14px;
  color:       rgba(255, 255, 255, .50);
  margin:      0;
}

.ct-map-frame {
  position:      relative;
  width:         100%;
  overflow:      hidden;
}

.ct-map-embed {
  display:    block;
  width:      100%;
  height:     420px;
  border:     none;
  /* Desaturated map — integrates with dark brand palette */
  filter:     grayscale(1) contrast(1.08) brightness(.90);
  transition: filter .48s ease;
}

.ct-map-embed:hover,
.ct-map-embed:focus {
  filter: grayscale(.3) contrast(1.04) brightness(.96);
  outline: none;
}

/* ==========================================================================
   HONEYPOT — hidden from real users, invisible to accessibility tree
   ========================================================================== */
.ct-trap {
  position:       absolute !important;
  left:           -99999px !important;
  top:            -99999px !important;
  width:          1px !important;
  height:         1px !important;
  opacity:        0 !important;
  overflow:       hidden !important;
  pointer-events: none !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Large → medium desktop */
@media (max-width: 1200px) {
  .ct-grid { grid-template-columns: 1fr 340px; gap: 36px; }
}

/* Tablet portrait — stack columns */
@media (max-width: 960px) {
  .ct-grid {
    grid-template-columns: 1fr;
    grid-template-areas:   "form" "info";
    gap:                   32px;
  }
  .ct-info-panel {
    position: static;
    /* Two-column info layout on tablet */
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   16px;
  }
  .ct-info-card   { grid-column: 1 / -1; }
  .ct-trust-strip { grid-column: 1 / -1; }
  .ct-main { padding: 44px 20px 64px; }
  .ct-form-panel { padding: 32px 28px 28px; }
}

/* Mobile */
@media (max-width: 640px) {
  .ct-hero        { padding: 52px 16px 48px; }
  .ct-main        { padding: 28px 14px 52px; }
  .ct-form-panel  { padding: 24px 18px 20px; }
  .ct-form-panel__header { flex-direction: column; gap: 4px; }
  .ct-field-row   { grid-template-columns: 1fr; gap: 14px; }
  .ct-info-panel  { grid-template-columns: 1fr; }
  .ct-map-embed   { height: 300px; }
}

@media (max-width: 420px) {
  .ct-hero__title { letter-spacing: -.02em; }
  .ct-map-embed   { height: 260px; }
}
