/* ══════════════════════════════════════════
   TRC® WEBSITE — GLOBAL STYLES
══════════════════════════════════════════ */
:root {
  --trc-teal:   #6dcad6;
  --trc-dark:   #4aaebb;
  --trc-light:  #a8e0e8;
  --trc-bg:     #f4f9fa;
  --trc-text:   #1a2a2e;
  --trc-gray:   #6b7c80;
  --font-main: 'Myriad Pro', 'Myriad', -apple-system, 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--trc-text);
  overflow-x: hidden;
}

sup { font-size: 0.55em; vertical-align: super; }

/* ══════════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #03080f;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay-grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(3,8,15,0.85) 0%,
    rgba(3,8,15,0.60) 40%,
    rgba(3,8,15,0.10) 75%,
    transparent 100%
  );
}

.hero-logo {
  position: absolute;
  top: 26px;
  left: 36px;
  z-index: 10;
  opacity: 0;
  animation: fadeDown 0.6s 0.2s ease forwards;
}

.hero-logo img {
  height: 120px;
  width: auto;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-left: 80px;
  padding-right: 40px;
  max-width: 90vw;
}

.hero-sub { display: none; }

/* ── TYPEWRITER ── */
.typewriter-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.tw-text {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
}

.tw-hide { display: none; }

.tw-cursor {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 0;
  width: 3px;
  background-color: #1ec8e6;
}

/* ── HERO SUBTITLE ── */
.tw-sub-wrap {
  margin-top: 20px;
  max-width: 700px;
}
.tw-sub-wrap-2 {
  margin-top: 6px;
}
.tw-sub {
  font-family: var(--font-main);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  white-space: normal;
  clip-path: inset(0 100% 0 0);
}
.tw-sub-cursor, .tw-sub-cursor-2 {
  top: 2px; bottom: 2px;
  width: 2px;
}

@keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { to { opacity: 1; } }
@keyframes fadeIn   { to { opacity: 1; } }

@media (max-width: 768px) {
  .hero-content { padding-left: 24px; padding-right: 24px; max-width: 100vw; }
  .hero-logo {
    left: 50% !important;
    transform: translateX(-50%);
    top: 24px;
  }
  .hero-logo img { height: 80px; }
  .tw-text { font-size: clamp(1.4rem, 6vw, 2.2rem); white-space: normal; }
  .typewriter-wrap { overflow: visible; }
  .tw-sub-wrap { max-width: 100%; margin-top: 14px; }
  .tw-sub { font-size: clamp(0.78rem, 3.5vw, 0.9rem); }
}


/* ══════════════════════════════════════════
   SECTION 2 — HOW IT WORKS
══════════════════════════════════════════ */
.trc-how-section {
  background: #fff;
  padding: 90px 0;
}

.trc-section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--trc-text);
  letter-spacing: -0.02em;
}

.trc-section-title span {
  color: var(--trc-dark);
}

.trc-title-divider {
  width: 50px;
  height: 3px;
  background: var(--trc-teal);
  border-radius: 3px;
  margin-top: 14px;
}

.trc-step-card {
  background: #f7fcfd;
  border: 1px solid rgba(109,202,214,0.18);
  border-radius: 18px;
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.trc-step-card.visible {
  animation: fadeUp 0.7s ease forwards;
}

.trc-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(109,202,214,0.18);
}

.trc-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trc-teal), var(--trc-dark));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(109,202,214,0.35);
}

.trc-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--trc-text);
  margin-bottom: 10px;
}

.trc-step-desc {
  font-size: 0.9rem;
  color: var(--trc-gray);
  line-height: 1.7;
}


/* ══════════════════════════════════════════
   SECTION 3 — CHOOSE HOW YOU EARN
══════════════════════════════════════════ */
.trc-earn-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.earn-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.earn-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.earn-blob-1 { width: 500px; height: 500px; background: var(--trc-teal); top: -120px; right: -100px; }
.earn-blob-2 { width: 350px; height: 350px; background: var(--trc-dark); bottom: -80px; left: -80px; }
.earn-blob-3 { width: 250px; height: 250px; background: var(--trc-light); top: 40%; left: 50%; transform: translateX(-50%); }

.earn-dot-field { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.earn-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--trc-teal);
  opacity: 0.4;
  animation: dotFloat 4s ease-in-out infinite alternate;
}

@keyframes dotFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

.earn-title { position: relative; z-index: 1; }
.earn-title h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--trc-text); letter-spacing: -0.02em; }
.earn-title h2 strong { font-weight: 800; }
.earn-title h2 span { color: var(--trc-dark); font-weight: 800; }

.earn-item {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}
.earn-item.visible { animation: fadeUp 0.7s ease forwards; }
.earn-item:not(.earn-featured):hover { background: rgba(109,202,214,0.06); transform: translateY(-4px); }

.earn-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(109,202,214,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--trc-dark);
  transition: background 0.3s, transform 0.3s;
}
.earn-icon svg { width: 22px; height: 22px; }
.earn-item:not(.earn-featured):hover .earn-icon { background: var(--trc-teal); color: #fff; transform: rotate(8deg); }

.earn-featured {
  background: linear-gradient(135deg, var(--trc-teal) 0%, var(--trc-dark) 100%) !important;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(74,174,187,0.3);
  position: relative;
  overflow: hidden;
}
.earn-featured .earn-text h3 { color: #fff !important; }
.earn-featured .earn-text ul li { color: rgba(255,255,255,0.88) !important; }
.earn-featured::before { display: none; }

.earn-featured-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.earn-featured-icon svg { width: 28px; height: 28px; }

.earn-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--trc-text);
  margin-bottom: 10px;
}
.earn-text ul { list-style: none; padding: 0; margin: 0; }
.earn-text ul li {
  font-size: 0.88rem;
  color: var(--trc-gray);
  line-height: 1.8;
  padding-left: 14px;
  position: relative;
}
.earn-text ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--trc-teal);
}


/* ══════════════════════════════════════════
   SECTION 4 — WHY TRC®
══════════════════════════════════════════ */
.trc-why-section {
  position: relative;
  padding: 100px 0;
  background: #eef5f7;
  overflow: hidden;
}

/* Subtle floating dots (like screenshot background) */
.trc-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(74,174,187,0.18) 1.5px, transparent 1.5px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
}

.why-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--trc-dark);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.why-title sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--trc-dark);
}

.why-img-wrap { position: relative; z-index: 1; }

.why-img-placeholder {
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(160deg, #4aaebb 0%, #1e6b78 100%);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(74,174,187,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-img-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.why-qmark {
  font-size: 9rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 2.5px rgba(109,202,214,0.85);
  line-height: 1;
  position: relative;
  filter: drop-shadow(0 0 18px rgba(109,202,214,0.7)) drop-shadow(0 0 40px rgba(109,202,214,0.4));
  animation: qmarkPulse 3s ease-in-out infinite;
  user-select: none;
}

@keyframes qmarkPulse {
  0%, 100% {
    filter: drop-shadow(0 0 14px rgba(109,202,214,0.65)) drop-shadow(0 0 35px rgba(109,202,214,0.3));
    -webkit-text-stroke: 2.5px rgba(109,202,214,0.85);
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(109,202,214,0.9)) drop-shadow(0 0 55px rgba(109,202,214,0.55));
    -webkit-text-stroke: 2.5px rgba(160,230,240,0.95);
  }
}

.why-features {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 16px;
  border-radius: 12px;
  cursor: default;
  transition: background 0.22s ease;
  opacity: 0;
  transform: translateX(20px);
}
.why-feature-item.visible { animation: slideInRight 0.55s ease forwards; }
.why-feature-item:hover { background: rgba(255,255,255,0.7); }

@keyframes slideInRight { to { opacity: 1; transform: translateX(0); } }

.why-feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(109,202,214,0.12);
  color: var(--trc-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.why-feature-icon svg { width: 20px; height: 20px; }
.why-feature-item:hover .why-feature-icon {
  background: rgba(109,202,214,0.22);
  transform: scale(1.08);
}

.why-feature-text {
  font-size: 0.98rem;
  font-weight: 400;
  color: #2a3a40;
  line-height: 1.5;
}

.why-anim { opacity: 0; transform: translateY(18px); }
.why-anim.visible { animation: fadeUp 0.65s ease forwards; }


/* ══════════════════════════════════════════
   SECTION 5 — BENTO (WHO IS TRC® FOR?)
══════════════════════════════════════════ */
.trc-bento-section {
  padding: 90px 24px;
  background: #e8f4f7;
  overflow-x: hidden;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.bcard {
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}
.bcard.visible { animation: fadeUp 0.65s ease forwards; }
.bcard:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

/* Card: Main */
.card-main {
  grid-column: 1; grid-row: 1;
  background: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.card-tag { display: flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--trc-dark); margin-bottom: 14px; }
.card-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--trc-teal); flex-shrink: 0; }
.card-main-title { font-size: 1.4rem; font-weight: 800; color: var(--trc-text); line-height: 1.25; margin-bottom: 10px; }
.card-main-desc { font-size: 0.85rem; color: var(--trc-gray); line-height: 1.65; }
.card-arrow { font-size: 1.4rem; color: var(--trc-teal); align-self: flex-end; margin-top: 12px; transition: transform 0.3s; }
.bcard:hover .card-arrow { transform: translate(4px, -4px); }

/* Card: Highlight */
.card-highlight {
  grid-column: 1; grid-row: 2;
  background: linear-gradient(135deg, var(--trc-teal), var(--trc-dark));
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
}
.card-highlight-icon { font-size: 2rem; margin-bottom: 10px; }
.card-highlight-text { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.4; }

/* Card: Image */
.card-image {
  grid-column: 2; grid-row: 1;
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, #c8e8ee 0%, #8fcdd8 100%);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 16px;
}
.card-image-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.card-image-bg img { width: 100%; height: 100%; object-fit: cover; }
.card-float-icon { font-size: 4rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Card: Promo */
.card-promo {
  grid-column: 2; grid-row: 2;
  background: #fff;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-promo-tag { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--trc-dark); margin-bottom: 10px; }
.card-promo-title { font-size: 1rem; font-weight: 700; color: var(--trc-text); line-height: 1.4; margin-bottom: 8px; }
.card-promo-desc { font-size: 0.8rem; color: var(--trc-gray); line-height: 1.6; flex-grow: 1; }

/* Card: Tags */
.card-tags {
  grid-column: 3; grid-row: 1 / span 2;
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tags-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--trc-gray); margin-bottom: 6px; }
.tag-pill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-radius: 50px;
  background: #f4f9fa;
  border: 1px solid rgba(109,202,214,0.2);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.tag-pill:hover { background: rgba(109,202,214,0.12); border-color: var(--trc-teal); transform: translateX(4px); }
.tag-text { font-size: 0.88rem; font-weight: 500; color: var(--trc-text); }
.tag-arrow { font-size: 1rem; color: var(--trc-teal); transition: transform 0.25s; }
.tag-pill:hover .tag-arrow { transform: translateX(4px); }
.tag-pill-featured { background: linear-gradient(135deg, var(--trc-teal), var(--trc-dark)); border-color: transparent; }
.tag-pill-featured .tag-text { color: #fff; font-weight: 600; }
.tag-pill-featured .tag-arrow { color: rgba(255,255,255,0.8); }
.tag-pill-featured:hover { background: linear-gradient(135deg, var(--trc-dark), #3a9dac); }

.bento-anim { opacity: 0; transform: translateY(22px); }
.bento-anim.visible { animation: fadeUp 0.65s ease forwards; }

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .card-main    { grid-column: 1 / span 2; grid-row: auto; }
  .card-image   { grid-column: 1; grid-row: auto; min-height: 200px; }
  .card-promo   { grid-column: 2; grid-row: auto; }
  .card-highlight { grid-column: 1; grid-row: auto; }
  .card-tags    { grid-column: 2; grid-row: auto; }
}

/* ── EARN SECTION MOBILE ── */
@media (max-width: 767px) {
  .trc-earn-section { padding: 60px 0; }
  .trc-earn-section .container-fluid { padding-left: 16px !important; padding-right: 16px !important; }

  /* Stack each item as a full-width card */
  .trc-earn-section .row { flex-direction: column; gap: 16px; }
  .trc-earn-section .col-12 { width: 100% !important; max-width: 100% !important; }

  .earn-item {
    padding: 24px 20px;
    border-radius: 16px;
    background: #f4f9fa;
  }
  .earn-item.earn-featured {
    background: linear-gradient(135deg, var(--trc-teal) 0%, var(--trc-dark) 100%) !important;
  }

  /* Horizontal layout inside each card: icon left, text right */
  .earn-item.d-flex { flex-direction: row !important; align-items: center !important; }

  .earn-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
  }
  .earn-featured-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
  }

  .earn-text h3 { font-size: 0.95rem; margin-bottom: 6px; }
  .earn-text ul li { font-size: 0.82rem; }

  /* Title */
  .earn-title h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}


@media (max-width: 767px) {
  .trc-bento-section { padding: 60px 16px; }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .card-main    { grid-column: 1; min-height: auto; padding: 28px 24px; }
  .card-highlight { grid-column: 1; min-height: 140px; }
  .card-image   { grid-column: 1; min-height: 180px; }
  .card-promo   { grid-column: 1; }
  .card-tags    { grid-column: 1; padding: 24px 20px; }
  .tag-pill     { padding: 12px 16px; }
  .tag-text     { font-size: 0.82rem; }
  .card-main-title { font-size: 1.2rem; }
}


/* ══════════════════════════════════════════
   SECTION 6 — REFERRAL STEPS
══════════════════════════════════════════ */
.trc-steps-section {
  position: relative;
  padding: 90px 24px;
  background: var(--trc-teal);
  overflow: hidden;
}

.ref-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.ref-bg-c1 { width: 500px; height: 500px; top: -150px; left: -100px; }
.ref-bg-c2 { width: 350px; height: 350px; bottom: -100px; right: -60px; }
.ref-bg-c3 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.ref-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
}
.ref-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
.ref-active { background: #fff !important; transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

.ref-card-step {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.ref-active .ref-card-step { color: var(--trc-gray); }

.ref-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.ref-card-icon svg {
  width: 24px; height: 24px;
  stroke: #fff;
  stroke-width: 1.7;
}
.ref-active .ref-card-icon { background: var(--trc-teal); }
.ref-active .ref-card-icon svg { stroke: #fff; }

.ref-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.ref-active .ref-card-title { color: var(--trc-text); }

.ref-card-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: none;
  align-items: center; justify-content: center;
  margin-top: auto;
}
.ref-card-arrow svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2; }
.ref-active .ref-card-arrow { display: flex; background: var(--trc-teal); }
.ref-active .ref-card-arrow svg { stroke: #fff; }

.ref-connector {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
@media (max-width: 991px) { .ref-connector { display: none; } }
.ref-connector-dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.ref-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.ref-dot.ref-active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}


/* ══════════════════════════════════════════
   SECTION 7 — CONTACT / JOIN FORM
══════════════════════════════════════════ */
.trc-contact-section {
  position: relative;
  background: #ffffff;
  padding: 90px 24px;
  overflow: hidden;
}
.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.contact-orb-1 { width: 420px; height: 420px; background: rgba(109,202,214,0.1); top: -120px; right: -80px; }
.contact-orb-2 { width: 300px; height: 300px; background: rgba(42,157,181,0.07); bottom: -80px; left: 5%; }

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 44px;
}

.contact-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6dcad6;
  margin-bottom: 12px;
}

.contact-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #6dcad6;
  margin-bottom: 12px;
  line-height: 1.15;
}

.contact-title sup {
  font-size: 0.45em;
  vertical-align: super;
  line-height: 0;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f5f0e8;
  border: none;
  border-radius: 24px;
  padding: 40px 44px;
}

.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-trc { display: flex; flex-direction: column; gap: 7px; }
.form-group-trc label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
}

.form-group-trc input,
.form-group-trc textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(109,202,214,0.25);
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.form-group-trc input::placeholder { color: #aaa; }
.form-group-trc textarea::placeholder { color: #aaa; }
.form-group-trc input:focus,
.form-group-trc textarea:focus {
  border-color: #6dcad6;
  box-shadow: 0 0 0 3px rgba(109,202,214,0.15);
}

.btn-send {
  align-self: center;
  background: linear-gradient(135deg, #6dcad6, #4aaebb);
  color: #fff;
  border: none;
  padding: 15px 52px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  box-shadow: 0 8px 24px rgba(109,202,214,0.35);
  letter-spacing: 0.03em;
  margin-top: 6px;
}
.btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(109,202,214,0.5);
  opacity: 0.92;
}
.btn-send:disabled { opacity: 0.65; cursor: default; transform: none; }

@media (max-width: 600px) {
  .contact-form { padding: 28px 22px; }
  .form-row-two { grid-template-columns: 1fr; }
  .trc-contact-section { padding: 70px 16px; }
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.trc-footer {
  background: var(--trc-teal);
  text-align: center;
  padding: 22px 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.trc-footer p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin: 0;
}