/* ===============================================
   TRAUMA THERAPY - COMPLETE CUSTOM STYLING
   =============================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --trm-purple: #8B5CF6;
  --trm-purple-dark: #6D28D9;
  --trm-indigo: #6366F1;
  --trm-dark: #1D3557;
  --trm-text: #457B9D;
  --trm-light: #A8DADC;
  --trm-bg: #F1FAEE;
  --trm-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--trm-text);
  background-color: var(--trm-white);
  line-height: 1.6;
}

.trm-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BREADCRUMB */
.trm-nav-breadcrumb {
  background: linear-gradient(135deg, var(--trm-bg) 0%, rgba(139, 92, 246, 0.05) 100%);
  padding: 20px 0;
  border-bottom: 3px solid rgba(139, 92, 246, 0.15);
}

.trm-breadcrumb-path {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.trm-breadcrumb-path li {
  font-size: 14px;
  font-weight: 500;
}

.trm-breadcrumb-path a {
  color: var(--trm-purple);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.trm-breadcrumb-path a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--trm-purple);
  transition: width 0.3s ease;
}

.trm-breadcrumb-path a:hover::after {
  width: 100%;
}

.trm-breadcrumb-path a:hover {
  color: var(--trm-indigo);
}

.trm-path-divider {
  color: var(--trm-light);
  margin: 0 5px;
}

.trm-path-current {
  color: var(--trm-dark);
  font-weight: 600;
}

/* HERO */
.trm-hero-wrapper {
  background: linear-gradient(135deg, var(--trm-purple) 0%, var(--trm-indigo) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(139, 92, 246, 0.35);
}

.trm-hero-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent);
  border-radius: 50%;
  animation: floatTrm 8s ease-in-out infinite;
}

@keyframes floatTrm {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

.trm-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trm-hero-graphic-box {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trm-white);
  font-size: 90px;
  margin-bottom: 30px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.trm-hero-wrapper:hover .trm-hero-graphic-box {
  transform: scale(1.15) translateY(-10px);
}

.trm-hero-title {
  color: var(--trm-white);
  font-size: 65px;
  font-weight: 900;
  margin: 20px 0;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.trm-hero-tagline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 35px;
  max-width: 750px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.trm-hero-link {
  background: var(--trm-white);
  color: var(--trm-purple);
  padding: 18px 65px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  display: inline-block;
  transition: all 0.5s ease;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--trm-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.trm-hero-link:hover {
  transform: translateY(-8px);
  background: var(--trm-indigo);
  color: var(--trm-white);
  border-color: var(--trm-indigo);
}

/* CONTENT */
.trm-content-wrapper {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--trm-bg) 0%, rgba(139, 92, 246, 0.02) 100%);
}

/* FLEX SECTION */
.trm-flex-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  padding: 50px;
  background: var(--trm-white);
  border-radius: 20px;
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.12);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.trm-flex-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--trm-purple), var(--trm-indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.trm-flex-section:hover::before {
  transform: scaleX(1);
}

.trm-flex-section:hover {
  border-color: var(--trm-purple);
  box-shadow: 0 15px 55px rgba(139, 92, 246, 0.2);
  transform: translateY(-5px);
}

.trm-flex-reverse {
  direction: rtl;
}

.trm-flex-text {
  direction: ltr;
}

.trm-flex-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  min-height: 400px;
  border: 2px dashed rgba(139, 92, 246, 0.15);
  transition: all 0.4s ease;
}

.trm-flex-visual:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.15) 100%);
  border-color: var(--trm-purple);
  box-shadow: inset 0 0 35px rgba(139, 92, 246, 0.15);
}

.trm-visual-placeholder {
  font-size: 100px;
  color: var(--trm-purple);
  margin-bottom: 25px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 5px 18px rgba(139, 92, 246, 0.25));
}

.trm-flex-visual:hover .trm-visual-placeholder {
  transform: scale(1.3) translateY(-15px);
}

.trm-visual-text {
  color: var(--trm-dark);
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  text-align: center;
}

/* HEADINGS */
.trm-section-header {
  color: var(--trm-dark);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 4px solid var(--trm-purple);
  display: inline-block;
  letter-spacing: -0.5px;
}

.trm-header-centered {
  display: block;
  text-align: center;
  border: none;
  padding: 0;
  margin-bottom: 15px;
}

.trm-section-subtitle {
  text-align: center;
  color: var(--trm-text);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.trm-body-text {
  color: var(--trm-text);
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 500;
}

/* GRIDS */
.trm-section-block {
  margin-bottom: 100px;
}

.trm-cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.trm-cards-grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

/* CAUSE CARDS */
.trm-cause-card {
  background: linear-gradient(135deg, var(--trm-white) 0%, rgba(139, 92, 246, 0.03) 100%);
  padding: 45px 35px;
  border-radius: 20px;
  border: 2px solid rgba(139, 92, 246, 0.15);
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 8px 28px rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.trm-cause-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--trm-purple), var(--trm-indigo));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.trm-cause-card:hover::before {
  transform: scaleX(1);
}

.trm-cause-card:hover {
  border-color: var(--trm-purple);
  transform: translateY(-15px);
  box-shadow: 0 20px 55px rgba(139, 92, 246, 0.25);
}

.trm-card-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--trm-purple) 0%, var(--trm-indigo) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trm-white);
  font-size: 50px;
  margin: 0 auto 25px;
  transition: all 0.5s ease;
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.3);
}

.trm-cause-card:hover .trm-card-icon {
  transform: scale(1.2) rotateY(360deg);
}

.trm-card-title {
  color: var(--trm-dark);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.trm-card-text {
  color: var(--trm-text);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

/* PROCESS CARDS */
.trm-process-card {
  background: var(--trm-white);
  padding: 40px 35px;
  border-radius: 18px;
  border: 2px solid rgba(139, 92, 246, 0.15);
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  box-shadow: 0 8px 28px rgba(139, 92, 246, 0.08);
}

.trm-process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--trm-purple), var(--trm-indigo));
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.trm-process-card:hover::after {
  transform: scaleX(1);
}

.trm-process-card:hover {
  border-color: var(--trm-purple);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 55px rgba(139, 92, 246, 0.2);
}

.trm-step-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--trm-purple) 0%, var(--trm-indigo) 100%);
  color: var(--trm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 25px;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.35);
  transition: all 0.5s ease;
}

.trm-process-card:hover .trm-step-badge {
  transform: scale(1.25) rotate(360deg);
}

/* BENEFIT CARDS */
.trm-benefit-card {
  background: linear-gradient(135deg, var(--trm-purple) 0%, var(--trm-indigo) 100%);
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  color: var(--trm-white);
  transition: all 0.5s ease;
  box-shadow: 0 12px 45px rgba(139, 92, 246, 0.35);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.trm-benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
  animation: pulseTrm 3s ease-in-out infinite;
}

@keyframes pulseTrm {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.trm-benefit-card:hover {
  transform: translateY(-18px) scale(1.05);
  box-shadow: 0 25px 65px rgba(139, 92, 246, 0.45);
}

.trm-benefit-icon {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.25));
}

.trm-benefit-card:hover .trm-benefit-icon {
  transform: scale(1.4) translateY(-10px) rotateY(360deg);
}

.trm-benefit-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.trm-benefit-card p {
  font-size: 15px;
  margin: 0;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* REASON ITEMS */
.trm-reason-item {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  padding: 35px;
  border-radius: 16px;
  border-left: 5px solid var(--trm-purple);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 6px 22px rgba(139, 92, 246, 0.1);
}

.trm-reason-item:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(99, 102, 241, 0.12) 100%);
  transform: translateX(12px);
  border-left-color: var(--trm-indigo);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.trm-reason-icon {
  color: var(--trm-purple);
  font-size: 32px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 3px 10px rgba(139, 92, 246, 0.25));
}

.trm-reason-item:hover .trm-reason-icon {
  transform: scale(1.3);
  color: var(--trm-indigo);
}

.trm-reason-item h3 {
  color: var(--trm-dark);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}

/* FAQ */
.trm-faq-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  padding: 70px 50px;
  border-radius: 20px;
  border: 2px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.1);
}

.trm-faq-item {
  background: var(--trm-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.trm-faq-item:hover {
  border-color: var(--trm-purple);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
  transform: translateY(-5px);
}

.trm-faq-question {
  padding: 22px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.trm-faq-question:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
  border-bottom-color: var(--trm-purple);
}

.trm-faq-question h3 {
  color: var(--trm-dark);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.trm-faq-question i {
  color: var(--trm-purple);
  font-size: 20px;
  transition: all 0.3s ease;
}

.trm-faq-answer {
  padding: 25px;
  color: var(--trm-text);
  font-size: 15px;
  line-height: 1.9;
  background: var(--trm-white);
  font-weight: 500;
  display: none;
}

.trm-faq-answer p {
  margin: 0;
}

.trm-faq-open .trm-faq-answer {
  display: block;
}

/* JOURNEY GRID */
.trm-journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trm-journey-step {
  background: linear-gradient(135deg, var(--trm-white) 0%, rgba(139, 92, 246, 0.03) 100%);
  padding: 40px 30px;
  border-radius: 18px;
  border: 2px solid rgba(139, 92, 246, 0.15);
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
}

.trm-journey-step:hover {
  border-color: var(--trm-indigo);
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(139, 92, 246, 0.2);
}

.trm-journey-icon {
  font-size: 60px;
  color: var(--trm-indigo);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.trm-journey-step:hover .trm-journey-icon {
  transform: scale(1.3);
}

.trm-journey-step h3 {
  color: var(--trm-dark);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.trm-journey-step p {
  color: var(--trm-text);
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

/* INFO BOXES */
.trm-info-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 100px;
  border: 2px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.1);
}

.trm-info-card {
  background: var(--trm-white);
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.trm-info-card:hover {
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
  transform: translateY(-5px);
}

.trm-info-heading {
  color: var(--trm-dark);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--trm-purple);
  padding-bottom: 15px;
}

.trm-info-list {
  list-style: none;
}

.trm-info-list li {
  color: var(--trm-text);
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 2px solid rgba(139, 92, 246, 0.1);
  line-height: 1.7;
  transition: all 0.3s ease;
  font-weight: 500;
}

.trm-info-list li:last-child {
  border-bottom: none;
}

.trm-info-list li:hover {
  padding-left: 10px;
  color: var(--trm-purple);
}

/* CTA */
.trm-cta-section {
  background: linear-gradient(135deg, var(--trm-purple) 0%, var(--trm-indigo) 100%);
  color: var(--trm-white);
  padding: 70px 50px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 100px;
  box-shadow: 0 20px 65px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.trm-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmerTrm 4s ease-in-out infinite;
}

@keyframes shimmerTrm {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.5); }
}

.trm-cta-section h2 {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.trm-cta-section p {
  font-size: 19px;
  margin-bottom: 35px;
  opacity: 0.98;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
  font-weight: 500;
}

.trm-cta-link {
  background: var(--trm-white);
  color: var(--trm-purple);
  padding: 18px 70px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  display: inline-block;
  transition: all 0.5s ease;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  border: 3px solid var(--trm-white);
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.trm-cta-link:hover {
  transform: translateY(-8px);
  background: var(--trm-indigo);
  color: var(--trm-white);
  border-color: var(--trm-indigo);
}

/* RELATED */
.trm-related-services {
  background: var(--trm-bg);
  padding: 80px 20px;
  border-top: 4px solid var(--trm-purple);
}

.trm-service-box {
  background: var(--trm-white);
  padding: 45px 35px;
  border-radius: 18px;
  border: 2px solid rgba(139, 92, 246, 0.15);
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 8px 28px rgba(139, 92, 246, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.trm-service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--trm-purple), var(--trm-indigo));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.trm-service-box:hover::before {
  transform: scaleX(1);
}

.trm-service-box:hover {
  border-color: var(--trm-purple);
  transform: translateY(-18px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}

.trm-service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--trm-purple) 0%, var(--trm-indigo) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trm-white);
  font-size: 45px;
  margin: 0 auto 25px;
  transition: all 0.5s ease;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

.trm-service-box:hover .trm-service-icon {
  transform: scale(1.2) rotate(15deg);
}

.trm-service-box h3 {
  color: var(--trm-dark);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.trm-service-box p {
  color: var(--trm-text);
  font-size: 15px;
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.8;
  font-weight: 500;
}

.trm-service-box a {
  color: var(--trm-purple);
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.trm-service-box a:hover {
  color: var(--trm-indigo);
  transform: translateX(8px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .trm-hero-title {
    font-size: 52px;
  }

  .trm-section-header {
    font-size: 36px;
  }

  .trm-flex-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trm-info-duo {
    grid-template-columns: 1fr;
  }

  .trm-faq-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .trm-hero-wrapper {
    padding: 70px 20px;
  }

  .trm-hero-title {
    font-size: 40px;
  }

  .trm-hero-graphic-box {
    width: 130px;
    height: 130px;
    font-size: 70px;
  }

  .trm-section-header {
    font-size: 32px;
  }

  .trm-content-wrapper {
    padding: 50px 20px;
  }

  .trm-flex-section {
    padding: 35px 25px;
    gap: 30px;
    margin-bottom: 60px;
  }

  .trm-flex-visual {
    min-height: 350px;
    padding: 40px 20px;
  }

  .trm-info-duo,
  .trm-cta-section {
    padding: 50px 30px;
  }

  .trm-related-services {
    padding: 60px 20px;
  }
}

@media (max-width: 576px) {
  .trm-hero-wrapper {
    padding: 50px 20px;
  }

  .trm-hero-title {
    font-size: 32px;
  }

  .trm-hero-graphic-box {
    width: 100px;
    height: 100px;
    font-size: 50px;
  }

  .trm-section-header {
    font-size: 26px;
  }

  .trm-hero-link,
  .trm-cta-link {
    padding: 14px 35px;
    font-size: 13px;
  }

  .trm-cta-section h2 {
    font-size: 36px;
  }

  .trm-cta-section p {
    font-size: 16px;
  }

  .trm-cause-card,
  .trm-process-card {
    padding: 30px 20px;
  }

  .trm-visual-placeholder {
    font-size: 70px;
  }

  .trm-benefit-icon {
    font-size: 50px;
  }

  .trm-faq-wrapper {
    padding: 40px 20px;
  }

  .trm-info-card {
    padding: 20px 15px;
  }

  .trm-info-heading {
    font-size: 22px;
  }

  .trm-section-subtitle {
    font-size: 18px;
  }
}
/* BENEFIT CARDS - FIXED */
.trm-benefit-card {
  background: linear-gradient(135deg, var(--trm-purple) 0%, var(--trm-indigo) 100%);
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  color: var(--trm-white);
  transition: all 0.5s ease;
  box-shadow: 0 12px 45px rgba(139, 92, 246, 0.35);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.trm-benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
  animation: pulseTrm 3s ease-in-out infinite;
}

@keyframes pulseTrm {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.trm-benefit-card:hover {
  transform: translateY(-18px) scale(1.05);
  box-shadow: 0 25px 65px rgba(139, 92, 246, 0.45);
}

.trm-benefit-icon {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.25));
  color: #ffffff; /* Explicitly set white */
}

.trm-benefit-card:hover .trm-benefit-icon {
  transform: scale(1.4) translateY(-10px) rotateY(360deg);
}

.trm-benefit-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  color: #ffffff; /* Explicitly set white */
}

.trm-benefit-card p {
  font-size: 15px;
  margin: 0;
  position: relative;
  z-index: 1;
  color: #ffffff; /* Changed from opacity to explicit color */
  line-height: 1.6;
}

/* CTA SECTION - FIXED */
.trm-cta-section {
  background: linear-gradient(135deg, var(--trm-purple) 0%, var(--trm-indigo) 100%);
  color: var(--trm-white);
  padding: 70px 50px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 100px;
  box-shadow: 0 20px 65px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.trm-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmerTrm 4s ease-in-out infinite;
}

@keyframes shimmerTrm {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.trm-cta-section h2 {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  color: #ffffff; /* Explicitly set white */
}

.trm-cta-section p {
  font-size: 19px;
  margin-bottom: 35px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
  font-weight: 500;
  color: #ffffff; /* Changed from opacity to explicit color */
}

.trm-cta-link {
  background: var(--trm-white);
  color: var(--trm-purple);
  padding: 18px 70px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  display: inline-block;
  transition: all 0.5s ease;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  border: 3px solid var(--trm-white);
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.trm-cta-link:hover {
  transform: translateY(-8px);
  background: var(--trm-indigo);
  color: var(--trm-white);
  border-color: var(--trm-indigo);
}
