/* ============================================
   BOLDBLACK DESIGNS — CONTACT PAGE
   Clean white, professional form + sidebar
   ============================================ */

.light-page { background: #ffffff; color: #0a0a0a; }

/* Eyebrow */
.ct-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 12px;
}

/* ============================================
   HERO
   ============================================ */
.ct-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.ct-hero-bg { position: absolute; inset: 0; }
.ct-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.ct-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.6)  50%,
    rgba(10,10,10,0.9)  100%
  );
}
.ct-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto; padding: 60px 48px 0;
}
.ct-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.ct-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.ct-breadcrumb a:hover { color: var(--accent-2); }
.ct-breadcrumb svg { opacity: 0.4; flex-shrink: 0; }

.ct-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.02; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 18px; max-width: 620px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.ct-title-gold { color: var(--accent-2); }

.ct-hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.68);
  max-width: 500px; line-height: 1.8;
  margin-bottom: 28px; font-weight: 300;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}

.ct-hero-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}
.ct-hero-chips span {
  padding: 7px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

/* ============================================
   INFO CARDS STRIP
   ============================================ */
.ct-info-strip {
  background: #0a0a0a;
  border-bottom: 3px solid var(--accent-2);
}
.ct-info-strip-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: stretch;
}

.ct-info-card {
  flex: 1;
  display: flex; align-items: center; gap: 16px;
  padding: 28px 20px;
  transition: background 0.25s;
  cursor: default;
}
.ct-info-card:hover { background: rgba(255,255,255,0.04); }

.ct-info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid rgba(200,169,110,0.3);
  background: rgba(200,169,110,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  transition: all 0.3s;
}
.ct-info-card:hover .ct-info-icon {
  border-color: var(--accent-2);
  background: rgba(200,169,110,0.15);
}

.ct-info-text { display: flex; flex-direction: column; gap: 2px; }
.ct-info-label {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.ct-info-text strong {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: #fff; line-height: 1.3;
}
.ct-info-text strong a {
  color: #fff; text-decoration: none; transition: color 0.2s;
}
.ct-info-text strong a:hover { color: var(--accent-2); }
.ct-info-sub { font-size: 12px; color: rgba(255,255,255,0.4); }

.ct-info-divider {
  width: 1px; background: rgba(255,255,255,0.08);
  flex-shrink: 0; margin: 12px 0;
}

/* ============================================
   MAIN — FORM + SIDEBAR
   ============================================ */
.ct-main {
  background: #f7f7f5;
  border-top: 1px solid #e8e8e8;
  padding: 80px 0;
}
.ct-main-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ---- Form column ---- */
.ct-form-col {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 44px 40px;
  position: relative;
}
.ct-form-col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0a0a0a, var(--accent-2));
}

.ct-form-header { margin-bottom: 32px; }
.ct-form-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  color: #0a0a0a; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 10px;
}
.ct-form-header p { font-size: 15px; color: #555; line-height: 1.75; }

/* Form fields */
.ct-form { display: flex; flex-direction: column; gap: 0; }
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ct-form-group {
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 16px;
}
.ct-form-group:last-of-type { margin-bottom: 0; }

.ct-form-group label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #444;
}
.ct-required { color: var(--accent-2); }

.ct-form-group input,
.ct-form-group textarea {
  background: #f7f7f5;
  border: 1.5px solid #e0e0e0;
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.ct-form-group input:focus,
.ct-form-group textarea:focus {
  border-color: #0a0a0a;
  background: #fff;
}
.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder { color: #bbb; }
.ct-form-group textarea { min-height: 130px; }

/* Custom select */
.ct-select-wrap {
  position: relative;
}
.ct-select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #f7f7f5;
  border: 1.5px solid #e0e0e0;
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 40px 13px 16px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ct-select-wrap select:focus {
  border-color: #0a0a0a;
  background: #fff;
}
.ct-select-wrap select option { color: #0a0a0a; }
.ct-select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #888;
}

/* Submit button */
.ct-submit-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: #0a0a0a; color: #fff;
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em;
  border: 2px solid #0a0a0a;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  margin-top: 8px;
}
.ct-submit-btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.ct-form-note {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 13px; color: #888;
  margin-top: 14px; text-align: center;
}
.ct-form-note svg { stroke: var(--accent-2); flex-shrink: 0; }

/* ---- Sidebar ---- */
.ct-sidebar {
  display: flex; flex-direction: column; gap: 20px;
}

.ct-sidebar-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 32px 28px;
}
.ct-sidebar-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  color: #0a0a0a; margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}

/* What happens next steps */
.ct-next-steps { display: flex; flex-direction: column; gap: 0; }
.ct-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid #f0f0f0;
}
.ct-step:last-child { border-bottom: none; padding-bottom: 0; }
.ct-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: #0a0a0a; color: #fff;
  font-family: var(--font-display);
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ct-step:hover .ct-step-num { background: var(--accent-2); color: #0a0a0a; }
.ct-step-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  color: #0a0a0a; margin-bottom: 4px;
}
.ct-step-text p { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }

/* Dark sidebar card */
.ct-sidebar-dark {
  background: #0a0a0a !important;
  border-color: #0a0a0a !important;
  color: #fff;
}
.ct-sidebar-dark h3 {
  color: #fff !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.ct-sidebar-dark p {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 24px;
}

.ct-schedule-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 24px;
  background: var(--accent-2); color: #0a0a0a;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; border: 2px solid var(--accent-2);
  text-decoration: none; transition: all 0.25s var(--ease);
}
.ct-schedule-btn:hover {
  background: #dfc08a; border-color: #dfc08a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}
.ct-schedule-note {
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
  text-align: center; margin-top: 10px !important;
  margin-bottom: 0 !important;
}

/* Trust badges */
.ct-trust-badges {
  background: #fff; border: 1px solid #e0e0e0;
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.ct-badge {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: #333; letter-spacing: 0.02em;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}
.ct-badge:last-child { border-bottom: none; padding-bottom: 0; }
.ct-badge:hover { color: #0a0a0a; }
.ct-badge svg { stroke: var(--accent-2); flex-shrink: 0; }

/* ============================================
   MAP STRIP
   ============================================ */
.ct-map-strip {
  background: #f0f0ee;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 48px 48px;
}
.ct-map-content {
  max-width: 1200px; margin: 0 auto;
}
.ct-map-placeholder {
  display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap;
  justify-content: space-between;
  background: #fff; border: 1px solid #e0e0e0;
  padding: 28px 32px;
}
.ct-map-icon-wrap {
  width: 56px; height: 56px;
  background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); flex-shrink: 0;
}
.ct-map-text { flex: 1; }
.ct-map-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px; color: #0a0a0a;
  margin-bottom: 4px;
}
.ct-map-text span { font-size: 14px; color: #666; }
.ct-map-btn {
  display: inline-flex; align-items: center;
  padding: 12px 24px;
  background: #0a0a0a; color: #fff;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-decoration: none; border: 2px solid #0a0a0a;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.ct-map-btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #0a0a0a;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .ct-main-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 32px; }
  .ct-info-strip-inner { flex-wrap: wrap; padding: 0 32px; }
  .ct-info-card { min-width: 48%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ct-info-divider { display: none; }
}
@media (max-width: 768px) {
  .ct-hero { min-height: 480px; padding-bottom: 56px; }
  .ct-hero-content { padding: 40px 24px 0; }
  .ct-hero-chips { gap: 8px; }
  .ct-hero-chips span { font-size: 11px; padding: 6px 12px; }
  .ct-form-col { padding: 28px 20px; }
  .ct-form-row { grid-template-columns: 1fr; gap: 0; }
  .ct-info-strip-inner { padding: 0 20px; }
  .ct-info-card { min-width: 100%; }
  .ct-main { padding: 48px 0; }
  .ct-main-inner { padding: 0 20px; }
  .ct-map-strip { padding: 32px 24px; }
  .ct-map-placeholder { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  .ct-hero-title { font-size: 36px; }
}