/* ============================================
   CRYSTAL FACILITY SOLUTIONS - ABOUT
   Cinematic Theater Mode: Story, Stats, Timeline
   Lightened to match services section tone
   ============================================ */

.why-crystal-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #1e2332 0%, #232837 50%, #1e2b1e 100%);
    min-height: 100vh;
}

/* Animated Background Mesh — LIGHTENED */
.why-crystal-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(124, 179, 66, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(156, 204, 101, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(2%, -2%) scale(1.05); }
    50% { transform: translate(-1%, 2%) scale(1); }
    75% { transform: translate(2%, 1%) scale(1.02); }
}

/* Noise Texture — LIGHTENED opacity */
.why-crystal-section::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: noiseShift 0.5s steps(10) infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes noiseShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(5%, 5%); }
    30% { transform: translate(-5%, 5%); }
    40% { transform: translate(5%, -5%); }
    50% { transform: translate(-5%, 0); }
    60% { transform: translate(5%, 0); }
    70% { transform: translate(0, 5%); }
    80% { transform: translate(0, -5%); }
    90% { transform: translate(5%, 5%); }
}

/* Floating Shapes — LIGHTENED opacity */
.about-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.about-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: float-shape 20s infinite ease-in-out;
}

.about-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--cfs-green);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.about-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--cfs-light-green);
    bottom: -5%;
    left: -5%;
    animation-delay: -7s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.why-crystal-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.why-crystal-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cfs-green);
    background: rgba(124, 179, 66, 0.08);
    border: 1px solid rgba(124, 179, 66, 0.25);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.why-crystal-section .section-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(124, 179, 66, 0.25), transparent);
    transform: translateX(-100%);
    animation: tagShine 3s ease-in-out infinite;
}

@keyframes tagShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.why-crystal-section .section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.why-crystal-section .gradient-text {
    background: linear-gradient(135deg, var(--cfs-green) 0%, var(--cfs-light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.why-crystal-section .gradient-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 1s ease-out 0.5s forwards;
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.4);
}

@keyframes lineGrow {
    to { transform: scaleX(1); }
}

.why-crystal-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CONTENT GRID
   ============================================ */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
    perspective: 1000px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* ============================================
   STORY CARD — LIGHTENED
   ============================================ */
.story-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s var(--ease-in-out);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backdrop-filter: blur(12px) saturate(1.2);
}

.story-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cfs-green), var(--cfs-light-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.story-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(124, 179, 66, 0.1);
}

.story-card:hover h3,
.story-card:hover p,
.story-card:hover .feature-item {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover::after {
    transform: scaleX(1);
}

.story-icon {
    width: 72px;
    height: 72px;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.story-card:hover .story-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(124, 179, 66, 0.2);
    border-color: rgba(124, 179, 66, 0.4);
    box-shadow: 0 0 30px rgba(124, 179, 66, 0.2);
}

.story-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--cfs-green);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(124, 179, 66, 0.3));
}

.story-card:hover .story-icon svg {
    stroke: var(--cfs-light-green);
    transform: scale(1.1);
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.story-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.story-highlight {
    font-weight: var(--font-weight-semibold);
    color: var(--cfs-green) !important;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--cfs-green);
    text-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
}

.story-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.feature-item:hover {
    background: rgba(124, 179, 66, 0.1);
    transform: translateX(8px);
}

.feature-item i {
    color: var(--cfs-green);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(124, 179, 66, 0.3));
}

.feature-item:hover i {
    transform: scale(1.2);
}

/* ============================================
   STATS CONTAINER — LIGHTENED
   ============================================ */
.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s var(--ease-in-out);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backdrop-filter: blur(12px) saturate(1.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cfs-green), var(--cfs-light-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(124, 179, 66, 0.1);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card.highlight {
    background: linear-gradient(135deg, var(--cfs-green) 0%, var(--cfs-light-green) 100%);
    color: var(--white);
    border-color: transparent;
}

.stat-card.highlight:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(124, 179, 66, 0.35),
        0 0 40px rgba(124, 179, 66, 0.25);
}

.stat-card .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-card .stat-icon svg {
    stroke: var(--white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.stat-card .stat-number {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(124, 179, 66, 0.2);
    border-color: rgba(124, 179, 66, 0.4);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--cfs-green);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(124, 179, 66, 0.3));
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
}

.counter {
    display: inline-block;
    min-width: 3ch;
    text-align: right;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Progress Ring */
.stat-progress-ring {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.stat-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s var(--ease-in-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(124, 179, 66, 0.3);
}

.stat-progress::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-card .stat-progress {
    background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   EXCELLENCE CARD — LIGHTENED
   ============================================ */
.excellence-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transition: all 0.5s var(--ease-in-out);
    backdrop-filter: blur(12px) saturate(1.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.excellence-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
    animation: excellenceGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes excellenceGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.excellence-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.3);
}

.excellence-card:hover h3,
.excellence-card:hover p,
.excellence-card:hover .metric-value,
.excellence-card:hover .metric-desc {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.excellence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 179, 66, 0.12);
    border: 1px solid rgba(124, 179, 66, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--cfs-green);
    width: fit-content;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.excellence-card:hover .excellence-badge {
    background: rgba(124, 179, 66, 0.25);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
}

.excellence-badge i {
    font-size: 1rem;
    animation: badgePulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(124, 179, 66, 0.3));
}

.excellence-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.excellence-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.excellence-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(124, 179, 66, 0.1);
    border-color: rgba(124, 179, 66, 0.3);
    transform: translateY(-4px);
}

.metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cfs-green);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(124, 179, 66, 0.3);
}

.metric:hover .metric-value {
    transform: scale(1.1);
    color: var(--cfs-light-green);
}

.metric-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.certifications {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cert-badge {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--cfs-green);
    transition: all 0.3s var(--ease-in-out);
    cursor: pointer;
    position: relative;
}

.cert-badge:hover {
    background: rgba(124, 179, 66, 0.2);
    border-color: rgba(124, 179, 66, 0.5);
    color: var(--cfs-light-green);
    transform: translateY(-5px) scale(1.1);
    box-shadow:
        0 10px 20px rgba(124, 179, 66, 0.2),
        0 0 20px rgba(124, 179, 66, 0.1);
}

/* ============================================
   FACILITY TYPES HEADER
   ============================================ */
.facility-types-header {
    text-align: center;
    margin: 6rem 0 2rem;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.facility-types-header::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cfs-green), transparent);
    border-radius: 2px;
    opacity: 0.5;
}

.facility-types-header .header-eyebrow {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.3);
    border-radius: 50px;
    color: var(--cfs-green);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.facility-types-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(124, 179, 66, 0.2);
}

.facility-types-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================
   CLIENT LOGOS MARQUEE
   ============================================ */
.clients-marquee-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
    padding: 0 3rem;
    z-index: 2;
}

.marquee-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.marquee-nav-btn:hover {
    background: rgba(124, 179, 66, 0.2);
    border-color: var(--cfs-green);
    color: var(--cfs-green);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
}

.clients-marquee {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 0;
    flex: 1;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

/* Fade masks hide the duplicate seam */
.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #1e2332, transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #1e2332, transparent);
}

.marquee-track {
    display: flex;
    width: fit-content;
    will-change: transform;
}

.marquee-content {
    display: flex;
    gap: 3.75rem;
    padding: 0 1.875rem;
    flex-shrink: 0;
}

.client-logo {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: transparent;
    border: none;
    font-family: inherit;
}

.client-logo:hover,
.client-logo:focus {
    color: var(--cfs-light-green);
    background: rgba(124, 179, 66, 0.1);
    text-shadow: 0 0 20px rgba(124, 179, 66, 0.3);
    transform: translateY(-2px);
    outline: none;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.timeline-section h3::before,
.timeline-section h3::after {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cfs-green));
}

.timeline-section h3::after {
    background: linear-gradient(90deg, var(--cfs-green), transparent);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 2px;
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
}

.timeline-progress {
    position: absolute;
    top: 24px;
    left: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 2px;
    width: 0;
    transition: width 1s ease;
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.4);
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0 1rem;
}

.timeline-item:hover {
    transform: translateY(-8px);
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(124, 179, 66, 0.5);
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    transition: all 0.4s var(--ease-in-out);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--cfs-green);
    border-right-color: var(--cfs-green);
    opacity: 0;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot,
.timeline-item.active .timeline-dot {
    background: var(--cfs-green);
    transform: scale(1.2);
    box-shadow:
        0 8px 25px rgba(124, 179, 66, 0.4),
        0 0 20px rgba(124, 179, 66, 0.3);
    border-color: var(--cfs-green);
}

.timeline-item:hover .timeline-dot::before,
.timeline-item.active .timeline-dot::before {
    opacity: 1;
    animation: dotRotate 2s linear infinite;
}

@keyframes dotRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.timeline-content {
    opacity: 0.7;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content,
.timeline-item.active .timeline-content {
    opacity: 1;
}

.timeline-content .year {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cfs-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
}

.timeline-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 120px;
    margin: 0 auto;
    line-height: 1.5;
}

.timeline-item.active .timeline-content .year {
    transform: scale(1.1);
    color: var(--cfs-light-green);
}

/* ============================================
   FACILITY TYPE TOOLTIPS
   ============================================ */
.facility-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    width: 520px;
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 40px);
    background: linear-gradient(135deg, #1e2332 0%, #252b3a 100%);
    border: 1px solid rgba(124, 179, 66, 0.4);
    border-radius: 16px;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.96);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 179, 66, 0.08);
    z-index: 99999;
    display: none;
    overflow: hidden;
}

.facility-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    display: flex;
    flex-direction: column;
}

.facility-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(124, 179, 66, 0.4);
}

.facility-tooltip.position-above::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: rgba(124, 179, 66, 0.4);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem 0.875rem;
    border-bottom: 1px solid rgba(124, 179, 66, 0.15);
    flex-shrink: 0;
}

.tooltip-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--cfs-green, #7cb342), var(--cfs-light-green, #9ccc65));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tooltip-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.tooltip-description {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    margin: 0;
    flex-shrink: 0;
}

/* 2×2 grid layout */
.tooltip-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1.25rem 0.75rem;
    flex: 1;
    min-height: 0;
}

.tooltip-service-col {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.625rem;
    display: flex;
    flex-direction: column;
}

/* Remove full-width override — force 2×2 always */
.tooltip-service-col.full-width {
    grid-column: auto;
}

.service-col-header {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cfs-green, #7cb342);
    margin-bottom: 0.4rem;
    flex-shrink: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.3;
}

.service-list li::before {
    content: '✓';
    color: var(--cfs-green, #7cb342);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.65rem;
    margin-top: 1px;
}

.tooltip-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.625rem 1rem;
    margin: 0 1.25rem 1rem;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cfs-green, #7cb342);
    flex-shrink: 0;
}

/* ============================================
   FACILITY TOOLTIP MOBILE FIX
   ============================================ */
@media (max-width: 768px) {
    .facility-tooltip {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0.96) !important;
        width: calc(100vw - 32px) !important;
        max-width: 400px !important;
        max-height: 80vh !important;
        z-index: 999999 !important;
    }

    .facility-tooltip.visible {
        transform: translate(-50%, -50%) scale(1) !important;
    }

    .facility-tooltip::after,
    .facility-tooltip.position-above::after {
        display: none !important;
    }

    .tooltip-services {
        grid-template-columns: 1fr 1fr;
        gap: 0.35rem;
        padding: 0 0.75rem 0.5rem;
    }

    .tooltip-service-col {
        padding: 0.5rem;
    }

    .service-list li {
        font-size: 0.7rem;
        line-height: 1.25;
    }

    .tooltip-header {
        padding: 0.75rem 1rem 0.625rem;
    }

    .tooltip-description {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .tooltip-highlight {
        margin: 0 1rem 0.75rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tooltip-services {
        grid-template-columns: 1fr;
    }
    
    .facility-tooltip {
        max-height: 85vh !important;
        width: calc(100vw - 16px) !important;
    }
}

/* ============================================
   COMPANY DETAILS - EXPANDABLE SECTION
   ============================================ */

.company-details-section {
    margin: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

/* Toggle Button */
.details-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.12), rgba(124, 179, 66, 0.05));
    border: 1px solid rgba(124, 179, 66, 0.25);
    border-radius: 50px;
    color: var(--cfs-green);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.4s var(--ease-in-out);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.details-toggle:hover {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.2), rgba(124, 179, 66, 0.08));
    border-color: var(--cfs-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.15);
}

.details-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-dark-green));
    color: var(--white);
    border-color: transparent;
}

.details-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

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

.toggle-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.4s var(--ease-in-out);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.toggle-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
                rgba(124, 179, 66, 0.3) 0%,
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.details-toggle:hover .toggle-glow {
    opacity: 1;
}

/* Expandable Content */
.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                padding 0.4s ease;
    opacity: 0;
    padding: 0 1rem;
}

.details-content[aria-hidden="false"] {
    max-height: 2000px;
    opacity: 1;
    padding: 3rem 1rem 1rem;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Detail Card — LIGHTENED */
.detail-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.4s var(--ease-in-out);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px) saturate(1.2);
    cursor: pointer;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cfs-green), var(--cfs-light-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.detail-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(124, 179, 66, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(124, 179, 66, 0.08);
}

.detail-card:hover::before {
    transform: scaleX(1);
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 179, 66, 0.15);
    border: 1px solid rgba(124, 179, 66, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--cfs-green);
    transition: all 0.3s ease;
}

.detail-card:hover .detail-icon {
    transform: scale(1.1);
    background: rgba(124, 179, 66, 0.25);
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
}

.detail-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.detail-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.detail-card p strong {
    color: var(--cfs-light-green);
    font-weight: 600;
}

/* Tags */
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cfs-green);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(124, 179, 66, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   EXCELLENCE CARD ENHANCED CONTENT
   ============================================ */

.excellence-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.excellence-highlight {
    font-weight: var(--font-weight-semibold);
    color: var(--cfs-green) !important;
    font-size: 1rem !important;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--cfs-green);
    text-shadow: 0 0 20px rgba(124, 179, 66, 0.2);
    margin: 1rem 0 !important;
}

.excellence-features {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.excellence-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
}

.excellence-feature-item:last-child {
    margin-bottom: 0;
}

.excellence-feature-item:hover {
    background: rgba(124, 179, 66, 0.1);
    transform: translateX(8px);
}

.excellence-feature-item i {
    color: var(--cfs-green);
    font-size: 1rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(124, 179, 66, 0.3));
    flex-shrink: 0;
}

.excellence-feature-item:hover i {
    transform: scale(1.2);
}

/* Adjust metric spacing when more content above */
.excellence-card .excellence-metrics {
    margin-top: 1.5rem;
}

/* Mobile adjustments for expanded content */
@media (max-width: 768px) {
    .excellence-card p {
        font-size: 0.9rem;
    }

    .excellence-feature-item {
        font-size: 0.85rem;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .about-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .excellence-card {
        grid-column: span 2;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-crystal-section {
        padding: 4rem 0;
    }

    .why-crystal-section .section-header h2 {
        font-size: 1.75rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .excellence-card {
        grid-column: span 1;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
        gap: 0.4rem;
    }

    /* Timeline Mobile - Centered Card Layout */
    .timeline {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
        align-items: center;
    }

    .timeline::before,
    .timeline-progress {
        display: none;
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .timeline-dot {
        margin: 0 auto 1rem;
    }

    .timeline-content {
        opacity: 1;
        text-align: center;
        width: 100%;
    }

    .timeline-content p {
        max-width: none;
        text-align: center;
    }

    .clients-marquee-container {
        padding: 0 2.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .details-toggle {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .details-content[aria-hidden="false"] {
        padding: 2rem 0.5rem 0.5rem;
    }

    /* Mobile: Same toggle behavior as desktop */
    .details-content[aria-hidden="true"] {
        max-height: 0;
        opacity: 0;
        padding: 0 0.5rem;
        overflow: hidden;
    }

    .details-content[aria-hidden="false"] {
        max-height: 4000px;
        opacity: 1;
        padding: 2rem 0.5rem 2rem;
    }

    /* Facility Tooltip Mobile */
    .facility-tooltip {
        width: calc(100vw - 32px);
        max-width: 400px;
        left: 50% !important;
        transform: translateX(-50%) translateY(10px) scale(0.96);
        max-height: 70vh;
    }

    .facility-tooltip.visible {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .tooltip-services {
        grid-template-columns: 1fr 1fr;
        gap: 0.35rem;
        padding: 0 0.75rem 0.5rem;
    }

    .tooltip-service-col {
        padding: 0.5rem;
    }

    .service-list li {
        font-size: 0.7rem;
        line-height: 1.25;
    }

    .tooltip-header {
        padding: 0.75rem 1rem 0.625rem;
    }

    .tooltip-description {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .tooltip-highlight {
        margin: 0 1rem 0.75rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-card.highlight {
        transform: scale(1);
    }

    .story-card,
    .excellence-card {
        padding: 1.75rem;
    }

    .clients-marquee-container {
        padding: 0 2rem;
    }

    .marquee-content {
        gap: 2rem;
    }

    .client-logo {
        font-size: 0.95rem;
    }

    .detail-card h4 {
        font-size: 1.05rem;
    }

    .detail-card p {
        font-size: 0.85rem;
    }

    .tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .tooltip-services {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   REDUCED MOTION & HIGH CONTRAST
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .why-crystal-section::before,
    .why-crystal-section::after,
    .about-shapes .shape,
    .stat-progress::after,
    .excellence-card::before,
    .timeline-dot::before,
    .story-card,
    .stat-card,
    .excellence-card {
        animation: none;
        transition: opacity 0.3s ease;
    }

    .details-content {
        transition: none;
    }

    .detail-card,
    .details-toggle {
        transition: opacity 0.3s ease;
    }
}

@media (prefers-contrast: high) {
    .story-card,
    .stat-card,
    .excellence-card,
    .timeline-item,
    .detail-card {
        border-width: 2px;
    }
}

/* ============================================
   SEO SAFETY — Ensure content is always visible
   even if JavaScript fails or is disabled
   ============================================ */

/* Stat cards, story cards, excellence cards always visible */
.stat-card,
.story-card,
.excellence-card,
.timeline-item {
    opacity: 1 !important;
    transform: none !important;
}

/* When JS is enabled, allow the slide-up animation */
.js-enabled .stat-card,
.js-enabled .story-card,
.js-enabled .excellence-card,
.js-enabled .timeline-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Counter values always visible */
.counter {
    opacity: 1 !important;
}