/* ── Contact Page — Reneuf Lab ───────────────────────────────── */

:root {
  --orange:      #fd5011;
  --navy:        #0f1f3d;
  --navy-light:  #152040;
  --white:       #ffffff;
  --gray-bg:     #f5f7fa;
  --gray-border: #e2e6ed;
  --radius:      16px;
  --max-width:   1200px;
  /* legacy aliases used by form elements */
  --rl-orange : #fd5011;
  --rl-navy   : #0f1f3d;
  --rl-gray-bg: #f5f7fa;
  --rl-gray-bd: #e2e6ed;
}

/* ── Base ─────────────────────────────────────────────────────── */
.rl-page { font-family: 'Baloo Thambi 2', sans-serif; color: var(--navy); }
.rl-container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Shared section labels (mirrors front-page.css) ──────────── */
.rl-section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}
.rl-eyebrow-light { color: rgba(255,255,255,.55); }

.rl-section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.rl-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 12px auto 0;
}

/* ── Buttons (mirrors front-page.css) ────────────────────────── */
.rl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.rl-btn-primary:hover { background: #e04610; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(253,80,17,.35); }
.rl-btn-primary svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

.rl-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--orange);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.rl-btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* ── Hero ─────────────────────────────────────────────────────── */
.rlc-hero {
  position: relative;
  background: var(--navy);
  padding: 100px 24px 88px;
  text-align: center;
  overflow: hidden;
}
.rlc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12; mix-blend-mode: multiply; pointer-events: none;
}
.rlc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,31,61,.6) 0%, rgba(15,31,61,.85) 100%);
  pointer-events: none;
}
.rlc-hero-inner {
  position: relative;
  z-index: 1;
}
.rlc-hero-title {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 18px;
  line-height: 1.05;
}
.rlc-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Stats band ───────────────────────────────────────────────── */
.rlc-stats-band {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rlc-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0 40px;
}
.rlc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 20px;
}
.rlc-stat-item + .rlc-stat-item {
  border-left: 1px solid rgba(255,255,255,.12);
}
.rlc-stat-num {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.rlc-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* ── Body section ─────────────────────────────────────────────── */
.rlc-body {
  background: var(--gray-bg);
  padding: 80px 24px 88px;
}
.rlc-body-header {
  margin-bottom: 52px;
}
.rlc-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

/* ── Info cards ───────────────────────────────────────────────── */
.rlc-info-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rlc-info-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  transition: box-shadow .18s, border-color .18s, transform .18s;
}
.rlc-info-card:hover {
  box-shadow: 0 8px 28px rgba(15,31,61,.10);
  border-left-color: var(--orange);
  transform: translateY(-2px);
}
.rlc-info-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(253,80,17,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: background .18s;
}
.rlc-info-card:hover .rlc-info-icon {
  background: rgba(253,80,17,.14);
}
.rlc-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rlc-info-icon i {
  font-size: 22px;
  line-height: 1;
}
.rlc-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.rlc-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
a.rlc-info-card:hover .rlc-info-value {
  color: var(--orange);
}

/* ── Form card ────────────────────────────────────────────────── */
.rlc-form-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 40px 36px 44px;
}
.rlc-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.rlc-form-sub {
  font-size: 13px;
  color: rgba(15,31,61,.45);
  margin: 0 0 32px;
}

/* notice banners */
.rlc-notice {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rlc-notice--success {
  background: #edfaf3;
  color: #1a7a47;
  border: 1px solid #b2e8cf;
}
.rlc-notice--error {
  background: #fff0ee;
  color: #c0392b;
  border: 1px solid #f5c0b8;
}

/* form rows */
.rlc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.rlc-form-row--full {
  grid-template-columns: 1fr;
}
.rlc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rlc-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(15,31,61,.5);
}
.rlc-field label span { color: var(--orange); }
.rlc-field input,
.rlc-field select,
.rlc-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--gray-bg);
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.rlc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f1f3d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.rlc-field textarea {
  resize: vertical;
  min-height: 130px;
}
.rlc-field input:focus,
.rlc-field select:focus,
.rlc-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(253,80,17,.1);
}
.rlc-field input::placeholder,
.rlc-field textarea::placeholder {
  color: rgba(15,31,61,.3);
}

.rlc-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.rlc-form-note {
  font-size: 11px;
  color: rgba(15,31,61,.35);
}
.rlc-submit-btn {
  /* inherits .rl-btn-primary; no extra overrides needed */
}

/* ── CTA final (mirrors front-page.css rl-cta-full) ──────────── */
.rl-cta-full {
  background: var(--orange);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.rl-cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15; mix-blend-mode: multiply; pointer-events: none;
}
.rl-cta-full-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.rl-cta-full-text h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.rl-cta-full-text p {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  max-width: 500px;
}
.rl-cta-full-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.rl-cta-tel {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  letter-spacing: 1px;
}
.rl-cta-tel:hover { color: #fff; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rlc-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .rlc-stat-item:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 28px;
    margin-top: 4px;
  }
  .rlc-stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 28px;
    margin-top: 4px;
  }
}
@media (max-width: 900px) {
  .rlc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rlc-info-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rl-cta-full-inner { flex-direction: column; text-align: center; }
  .rl-cta-full-text p { margin: 0 auto; }
}
@media (max-width: 640px) {
  .rlc-hero { padding: 72px 20px 60px; }
  .rlc-stats-inner {
    grid-template-columns: 1fr 1fr;
    padding: 28px 0 32px;
  }
  .rlc-stat-item:nth-child(2) { border-left: 1px solid rgba(255,255,255,.12); }
  .rlc-body { padding: 52px 20px 60px; }
  .rlc-body-header { margin-bottom: 36px; }
  .rlc-form-card { padding: 28px 20px 32px; }
  .rlc-form-row  { grid-template-columns: 1fr; }
  .rlc-info-group { grid-template-columns: 1fr; }
  .rlc-form-footer { flex-direction: column; align-items: stretch; }
  .rl-btn-primary.rlc-submit-btn { justify-content: center; }
  .rl-cta-full { padding: 48px 0; }
}
