/* ═══════════════════════════════════════════════
   CONTACT PAGE — STYLES
   Depends on styles.css design tokens
═══════════════════════════════════════════════ */

/* ── Active nav link ── */
.nav-link--active {
  color: #8CC63F !important;
  background: rgba(0, 152, 69, 0.15) !important;
}

/* ══════════════════════════════════════════════════════
   HERO — Dark split-screen: content left +
   sonar/pulse decoration right (unique to contact page)
══════════════════════════════════════════════════════ */
.ct-hero {
  position: relative;
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 720px;
  height: 90vh;
  max-height: 940px;
  background: linear-gradient(148deg, #081B29 0%, #0D2137 52%, #060F1A 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ct-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ct-hero-orb-1 {
  width: 640px; height: 640px;
  top: -240px; left: -180px;
  background: radial-gradient(circle, rgba(0, 152, 69, 0.38) 0%, transparent 68%);
}

.ct-hero-orb-2 {
  width: 480px; height: 480px;
  bottom: -140px; right: 8%;
  background: radial-gradient(circle, rgba(0, 80, 40, 0.26) 0%, transparent 68%);
}

.ct-hero-orb-3 {
  width: 300px; height: 300px;
  top: 15%; left: 40%;
  background: radial-gradient(circle, rgba(0, 152, 69, 0.06) 0%, transparent 68%);
}

.ct-hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 64px, rgba(255,255,255,0.02) 65px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 64px, rgba(255,255,255,0.02) 65px);
  background-size: 65px 65px;
}

/* ── Left content panel ── */
.ct-hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 56px clamp(28px, 4vw, 56px) 56px max(24px, calc((100vw - 1160px) / 2));
}

/* ── Right sonar panel ── */
.ct-hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Sonar container (relative within right panel) ── */
.ct-sonar {
  position: relative;
  width: 500px;
  height: 500px;
  pointer-events: none;
  flex-shrink: 0;
}

.ct-sonar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 152, 69, 0.18);
  animation: ct-sonar-pulse 5s ease-out infinite;
  transform: scale(0);
  opacity: 0;
}

.ct-sonar-ring-1 { animation-delay: 0s; }
.ct-sonar-ring-2 { animation-delay: 1s; }
.ct-sonar-ring-3 { animation-delay: 2s; }
.ct-sonar-ring-4 { animation-delay: 3s; }
.ct-sonar-ring-5 { animation-delay: 4s; }

@keyframes ct-sonar-pulse {
  0%   { transform: scale(0.1); opacity: 0.9; }
  100% { transform: scale(1);   opacity: 0; }
}

/* Center pin */
.ct-sonar-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0, 152, 69, 0.14);
  border: 1px solid rgba(0, 152, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 0 12px rgba(0, 152, 69, 0.06);
  animation: ct-pin-float 5s ease-in-out infinite;
}

@keyframes ct-pin-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, calc(-50% - 8px)) scale(1.04); }
}

/* Floating chips around sonar */
.ct-sonar-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: ct-pin-float 7s ease-in-out infinite;
}

.ct-sonar-chip-1 {
  top: 22%;
  left: 30%;
  animation-delay: -1s;
}

.ct-sonar-chip-2 {
  bottom: 28%;
  left: 18%;
  animation-delay: -3.5s;
  animation-duration: 8s;
}

.ct-sonar-chip-3 {
  top: 38%;
  right: 10%;
  animation-delay: -2s;
  animation-duration: 6s;
}

/* ── Hero content ── */
.ct-hero-inner {
  max-width: 540px;
}

.ct-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.ct-breadcrumb a { color: inherit; text-decoration: none; transition: color 200ms ease; }
.ct-breadcrumb a:hover { color: var(--gold); }

.ct-hero-h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.033em;
  color: #FFFFFF;
  margin: 16px 0 24px;
}

.ct-hero-h1 span { display: block; }

.ct-hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.06rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 520px;
}

.ct-hero-actions { margin-bottom: 36px; flex-wrap: wrap; }

/* Chips below actions */
.ct-hero-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ct-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ══════════════════════════════════════════════════════
   CONTACT INFO STRIP — 4 floating cards
   Overlaps hero bottom, bridges dark → light
══════════════════════════════════════════════════════ */
.ct-info-strip {
  background: var(--cream);
  padding: 0 0 16px;
  position: relative;
  z-index: 10;
}

.ct-info-strip .container {
  transform: translateY(-52px);
  padding-bottom: 0;
}

.ct-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: none;
}

/* ── Card base ── */
.ct-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(0, 152, 69, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  cursor: default;
}

.ct-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Coloured top accent bar */
.ct-info-card::before {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.ct-info-card:nth-child(1)::before { background: linear-gradient(90deg, #009845, #1a8a3c); }
.ct-info-card:nth-child(2)::before { background: linear-gradient(90deg, #a56c00, #d4a017); }
.ct-info-card:nth-child(3)::before { background: linear-gradient(90deg, #0a9080, #12c4b0); }
.ct-info-card:nth-child(4)::before { background: linear-gradient(90deg, #4a2ab0, #7c5ae0); }

/* Inner padding wrapper */
.ct-info-card-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px 20px;
  flex: 1;
}

/* Icon */
.ct-info-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out);
}

.ct-info-card:hover .ct-info-icon { transform: scale(1.1) rotate(-5deg); }

.ct-icon--phone {
  background: linear-gradient(135deg, rgba(0, 152, 69, 0.12) 0%, rgba(0, 152, 69, 0.08) 100%);
  color: #009845;
  box-shadow: 0 2px 8px rgba(0, 152, 69, 0.12);
}

.ct-icon--email {
  background: linear-gradient(135deg, rgba(200, 145, 10, 0.14) 0%, rgba(212, 160, 23, 0.08) 100%);
  color: #a56c00;
  box-shadow: 0 2px 8px rgba(200, 145, 10, 0.12);
}

.ct-icon--address {
  background: linear-gradient(135deg, rgba(10, 165, 150, 0.14) 0%, rgba(18, 196, 176, 0.08) 100%);
  color: #0a9080;
  box-shadow: 0 2px 8px rgba(10, 165, 150, 0.12);
}

.ct-icon--hours {
  background: linear-gradient(135deg, rgba(74, 42, 176, 0.12) 0%, rgba(124, 90, 224, 0.08) 100%);
  color: #5a38c8;
  box-shadow: 0 2px 8px rgba(74, 42, 176, 0.1);
}

/* Text content */
.ct-info-content { flex: 1; min-width: 0; }

.ct-info-content h3 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}

.ct-info-content a,
.ct-info-content span {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.25;
  transition: color 200ms ease;
  word-break: break-word;
}

.ct-info-content a:hover { color: var(--navy); }

.ct-info-content p {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Card footer row (arrow / live status) */
.ct-info-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px 14px;
  border-top: 1px solid rgba(0, 152, 69, 0.06);
  margin-top: auto;
}

/* Arrow icon */
.ct-info-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 260ms ease, gap 200ms ease;
}

.ct-info-card:hover .ct-info-arrow {
  color: var(--navy);
  gap: 8px;
}

/* Live dot for hours */
.ct-info-dot-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a8a3c;
}

.ct-info-dot-live span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1a8a3c;
  box-shadow: 0 0 0 3px rgba(0, 152, 69, 0.2);
  animation: ct-live-pulse 1.8s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes ct-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ══════════════════════════════════════════════════════
   MAIN — Form + Map (two column)
══════════════════════════════════════════════════════ */
.ct-main-section { background: var(--cream); }

.ct-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

/* ── Form card ── */
.ct-form-card {
  background: var(--paper);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 152, 69, 0.08);
  box-shadow: var(--shadow-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.ct-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 60%, var(--mint) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.ct-form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 152, 69, 0.08);
}

.ct-form-header-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 152, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.ct-form-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px;
}

.ct-form-header p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.ct-form-header p span {
  color: #c0274a;
  font-weight: 700;
}

/* ── Floating label fields ── */
.ct-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field {
  position: relative;
  margin-bottom: 26px;
}

.ct-field--select .ct-label,
.ct-field--textarea .ct-label {
  pointer-events: none;
}

.ct-input {
  width: 100%;
  padding: 20px 16px 8px;
  border: none;
  border-bottom: 2px solid rgba(0, 152, 69, 0.15);
  border-radius: 0;
  background: rgba(0, 152, 69, 0.03);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.ct-input:focus {
  border-bottom-color: var(--navy);
  background: rgba(0, 152, 69, 0.05);
}

/* Floating label */
.ct-label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 180ms ease, color 180ms ease, font-size 180ms ease;
}

.ct-label span { color: #c0274a; }

/* Label floats when input has value or focus */
.ct-input:focus ~ .ct-label,
.ct-input:not(:placeholder-shown) ~ .ct-label {
  transform: translateY(-10px) scale(0.78);
  color: var(--navy);
}

.ct-input:focus ~ .ct-label { color: var(--navy); }

/* Field line (animated underline accent) */
.ct-field-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--navy);
  transition: width 220ms ease;
  border-radius: 2px;
}

.ct-input:focus ~ .ct-label ~ .ct-field-line,
.ct-input:focus ~ .ct-field-line {
  width: 100%;
}

/* Select specific */
.ct-select { cursor: pointer; padding-right: 36px; }

.ct-select ~ .ct-label--select { pointer-events: none; }

/* Force label float for select when value chosen */
.ct-select:valid ~ .ct-label--select,
.ct-select:focus ~ .ct-label--select {
  transform: translateY(-10px) scale(0.78);
  color: var(--navy);
}

/* Hide default select arrow */
.ct-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  transition: transform 200ms ease;
}

.ct-select:focus ~ .ct-select-arrow { transform: translateY(-50%) rotate(180deg); }

/* Textarea */
.ct-textarea {
  padding-top: 22px;
  resize: none;
  min-height: 120px;
  overflow-y: hidden;
}

.ct-textarea-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.ct-char-count {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  margin-left: auto;
}

.ct-char-count.ct-char--warn { color: #c0274a; }

/* Error state */
.ct-field--error .ct-input {
  border-bottom-color: #c0274a;
  background: rgba(192, 39, 74, 0.03);
}

.ct-field--error .ct-label { color: #c0274a; }

.ct-field-error {
  display: block;
  font-size: 0.73rem;
  color: #c0274a;
  font-weight: 500;
  margin-top: 5px;
  min-height: 1em;
  animation: ct-error-shake 280ms ease;
}

@keyframes ct-error-shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-4px); }
  75%       { transform: translateX(4px); }
}

/* Valid state */
.ct-field--valid .ct-input { border-bottom-color: #009845; }
.ct-field--valid .ct-label { color: #1a8a3c; }

/* ── Submit button ── */
.ct-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  width: 100%;
  border: none;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--navy) 0%, #007835 100%);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease;
  margin-top: 8px;
  overflow: hidden;
}

.ct-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 152, 69, 0.35);
}

.ct-submit-btn:active { transform: translateY(0); }

.ct-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Loading spinner */
.ct-btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  animation: ct-spin 600ms linear infinite;
}

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

.ct-submit-btn--loading .ct-btn-text { display: none; }
.ct-submit-btn--loading .ct-btn-icon { display: none; }
.ct-submit-btn--loading .ct-btn-spinner { display: block; }

/* Success state */
.ct-submit-btn--success {
  background: linear-gradient(135deg, #1a8a3c, #0d5523);
}

/* ── Form success message ── */
.ct-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  animation: ct-success-in 400ms var(--ease-out) both;
}

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

.ct-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0, 152, 69, 0.12);
  border: 2px solid rgba(0, 152, 69, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a8a3c;
  margin-bottom: 16px;
}

.ct-form-success h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
}

.ct-form-success p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Map column ── */
.ct-map-col { display: flex; flex-direction: column; gap: 20px; }

.ct-map-wrap {
  position: relative;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 152, 69, 0.1);
  box-shadow: var(--shadow-md);
}

.ct-map-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(8, 27, 41, 0.75);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.ct-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Animated pin overlay (decorative) */
.ct-map-overlay-pin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.ct-map-pin-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 5px rgba(0, 152, 69, 0.25), 0 0 0 10px rgba(0, 152, 69, 0.1);
  animation: ct-pin-ring 2.4s ease-out infinite;
}

@keyframes ct-pin-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0, 152, 69, 0.6), 0 0 0 0 rgba(0, 152, 69, 0.3); }
  70%  { box-shadow: 0 0 0 12px rgba(0, 152, 69, 0), 0 0 0 24px rgba(0, 152, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 152, 69, 0), 0 0 0 0 rgba(0, 152, 69, 0); }
}

/* Quick reach links */
.ct-quick-reach {
  background: var(--paper);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 152, 69, 0.08);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-sm);
}

.ct-quick-reach-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}

.ct-reach-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ct-reach-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(0, 152, 69, 0.04);
  border: 1px solid rgba(0, 152, 69, 0.07);
  text-decoration: none;
  transition: background 200ms ease, transform 160ms ease, box-shadow 200ms ease;
}

.ct-reach-link:hover {
  background: rgba(0, 152, 69, 0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.ct-reach-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-reach--whatsapp  { background: rgba(37, 211, 102, 0.12); color: #128c7e; }
.ct-reach--email     { background: rgba(200, 145, 10, 0.12); color: #a56c00; }
.ct-reach--facebook  { background: rgba(24, 119, 242, 0.12); color: #1877f2; }
.ct-reach--instagram { background: rgba(193, 53, 132, 0.12); color: #c13584; }

.ct-reach-link strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.ct-reach-link span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════ */
.ct-faq-section { background: var(--paper); }

.ct-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 44px;
  max-width: 960px;
  margin: 0 auto;
}

.ct-faq-item { border-bottom: 1px solid rgba(0, 152, 69, 0.1); }

.ct-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: color 200ms ease;
}

.ct-faq-trigger:hover { color: var(--navy); }

.ct-faq-chevron {
  flex-shrink: 0;
  color: var(--navy-2);
  transition: transform 280ms var(--ease-out);
}

.ct-faq-item--open .ct-faq-chevron { transform: rotate(180deg); }

.ct-faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 360ms var(--ease-out);
}

.ct-faq-body p {
  font-size: 0.87rem;
  line-height: 1.72;
  color: var(--muted);
  padding-bottom: 18px;
  margin: 0;
}

.ct-faq-item--open .ct-faq-body { max-height: 260px; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1200px
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .ct-sonar { width: 420px; height: 420px; }
  .ct-info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 960px
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .ct-hero { grid-template-columns: 1fr; min-height: auto; height: auto; max-height: none; }

  .ct-hero-left {
    padding: 100px clamp(20px, 5vw, 48px) 40px;
    justify-content: center;
  }

  .ct-hero-inner { max-width: 100%; text-align: center; }

  .ct-hero-h1 { align-items: center; }

  .ct-hero-actions { justify-content: center; }

  .ct-hero-chips { justify-content: center; }

  .ct-hero-right { padding: 24px clamp(20px, 5vw, 48px) 56px; }

  .ct-sonar { width: 360px; height: 360px; }

  .ct-main-grid { grid-template-columns: 1fr; gap: 28px; }

  .ct-map-wrap { height: 300px; }

  .ct-faq-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 640px
══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .ct-hero-right { display: none; }

  .ct-hero-left { padding-bottom: 56px; }

  .ct-hero-inner { text-align: left; }

  .ct-hero-h1 { align-items: flex-start; font-size: 2.2rem; }

  .ct-hero-subtitle { font-size: 0.92rem; }

  .ct-hero-actions { flex-direction: column; align-items: flex-start; justify-content: flex-start; }

  .ct-hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .ct-hero-chips { justify-content: flex-start; gap: 7px; }

  .ct-hero-chip { font-size: 0.72rem; padding: 5px 11px; }

  .ct-info-grid { grid-template-columns: 1fr; }

  .ct-form-card { padding: 24px 16px; }

  .ct-fields-row { grid-template-columns: 1fr; gap: 0; }

  .ct-reach-links { grid-template-columns: 1fr; }

  .ct-faq-grid { gap: 0; }
}


/* ══════════════════════════════════════════════════════
   ALTERNATING LIGHT / DARK SECTIONS
   ct-hero → always dark
   ct-main → LIGHT (off-white)
   ct-faq → DARK (explicit)
   cta → always dark
══════════════════════════════════════════════════════ */
.ct-main-section {
  --ink:       #081B29;
  --ink-2:     #243B53;
  --muted:     #4A6480;
  --paper:     #FFFFFF;
  --cream:     #F4F7FA;
  --aqua:      #E8F5F0;
  --border:    rgba(36, 59, 83, 0.1);
  --border-mid: rgba(36, 59, 83, 0.2);
  background: #F0F5FA;
}

.ct-faq-section { background: #081B29; }

/* Kicker pill in light section */
.ct-main-section .kicker-pill {
  background:   rgba(0, 152, 69, 0.09);
  border-color: rgba(0, 152, 69, 0.25);
  color:        #007835;
}
.ct-main-section .kicker-pill::before { background: #009845; }
