/* Color Palette Mapping Variables */
:root {
    --trauma-bg-mint: #e2f7f3;
    --trauma-brand-green: #00a877;
    --trauma-dark-teal: #005643;
    --trauma-text-gold: #f2aa24;
    --trauma-wave-green: #00a676;
}

/* Base Utility Layout Extensions */
.text-brand-green {
    color: var(--trauma-brand-green) !important;
}

.text-teal-heading {
    color: var(--trauma-dark-teal) !important;
}

.btn-dark-teal {
    background-color: var(--trauma-dark-teal) !important;
    border-color: var(--trauma-dark-teal) !important;
}

.btn-dark-teal:hover {
    background-color: #003e30 !important;
    border-color: #003e30 !important;
}

.py-2-5 {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   SECTION 1: MINT HERO CONTAINER (image 1 style)
   ========================================================================== */
.trauma-hero-section {
    background-color: var(--trauma-bg-mint);
}

.trauma-hero-title {
    font-size: 2.7rem;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.trauma-hero-desc {
    font-size: 1.02rem;
    line-height: 1.65;
    text-align: justify;
}

.trauma-circle-frame {
    width: 380px;
    height: 380px;
    border-radius: 50% !important;
    overflow: hidden;
}

/* ==========================================================================
   SECTION 2: LEFT-CURVED ASYMMETRIC CONTENT BLOCK (image 2 style)
   ========================================================================== */
.trauma-section-heading {
    font-size: 1.85rem;
}

.trauma-section-text {
    font-size: 0.98rem;
    line-height: 1.6;
}

.bullet-dot-lead {
    color: #000000;
    font-size: 1.4rem;
    line-height: 1;
}

.trauma-bullet-list p {
    font-size: 0.96rem;
    line-height: 1.6;
    text-align: justify;
}

/* Replicates the left-facing structural leaf mask on the secondary layout image */
.trauma-asymmetric-mask {
    width: 100%;
    max-width: 420px;
    height: 390px;
    overflow: hidden;
    border-top-left-radius: 7rem !important;
    border-bottom-left-radius: 7rem !important;
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   SECTION 3: SYMPTOMS CONTAINER W/ BACKDROP WAVE (image 3 style)
   ========================================================================== */
.trauma-symptoms-section {
    background-color: var(--trauma-wave-green);
    z-index: 1;
}

.symptoms-mint-top-deck {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 52%;
    /* Covers top portion just below mid-level cards */
    background-color: var(--trauma-bg-mint);
    z-index: 1;
}

.symptoms-main-title {
    font-size: 1.95rem;
}

.symptoms-sub-title {
    font-size: 1rem;
    max-width: 750px;
}

.symptom-item-card {
    background-color: #ffffff !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.symptom-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06) !important;
}

.card-title-gold {
    color: var(--trauma-text-gold);
    font-size: 1.15rem;
}

.symptom-item-card p {
    font-size: 0.96rem;
    line-height: 1.6;
}

/* Generates the custom smooth, organic wave vector path matching your section frame transition */
.symptoms-wave-bottom-deck {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.symptoms-wave-bottom-deck svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 68px;
}

.symptoms-wave-bottom-deck .shape-fill {
    fill: var(--trauma-bg-mint);
}