/* Homepage Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Custom Wildstripe Font */
@font-face {
    font-family: 'Wildstripe';
    src: url('Wildstripe.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Erickson Color Variables */
:root {
    --erickson-primary: #073F52;
    --erickson-secondary: #63B7D3;
    --erickson-accent: #EBBC34;
    --erickson-accent-secondary: #E88755;
    --erickson-white: #FFFFFF;
    --erickson-light-gray: #F5F5F5;
    --erickson-text: #333333;
    --erickson-text-light: #666666;
    --erickson-border: #E0E0E0;
    --erickson-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --erickson-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --erickson-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --erickson-radius: 12px;
    --erickson-radius-lg: 16px;
    --erickson-accent-shadow: 0 4px 15px rgba(235, 188, 52, 0.3);
    --erickson-accent-shadow-hover: 0 8px 25px rgba(235, 188, 52, 0.5);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--erickson-text);
}
.container {
    max-width: 1669px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

@keyframes pulse-slow {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Hero Carousel Section */

.hero-carousel-section {
    position: relative;
    height: 80vh;
    /* max-height: 100vh; */
    min-height: 500px;
    overflow: hidden;
    margin-top: 0px;
}

.hero-carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide[data-bg] {
    background-image: var(--bg-url);
}

/* Dynamic background setting via JavaScript */
.hero-slide:nth-child(1) {
    background-image: url('Marliyn3.jpg');
    background-size: cover;
    background-position: left top;
}
.hero-slide:nth-child(2) {
    background-image: url('celebrate.jpg');
    background-size: cover;
    background-position: center center;
}



.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 63, 82, 0.85) 0%, rgba(7, 63, 82, 0.7) 50%, rgba(99, 183, 211, 0.6) 100%);
    z-index: 1;
}

.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(235, 188, 52, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(232, 135, 85, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    color: var(--erickson-white);
    padding: 2rem;
}

.hero-left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    max-width: 95%;
    padding-right: 1rem;
}

.hero-right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.welcome-badge {
    display: inline-block;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.welcome-badge span {
    background: linear-gradient(135deg, var(--erickson-accent), var(--erickson-accent-secondary));
    color: var(--erickson-primary);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(235, 188, 52, 0.4);
    position: relative;
    overflow: hidden;
}

.welcome-badge span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.hero-main-title {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-main-title .accent {
    color: var(--erickson-accent);
    position: relative;
    display: inline-block;
}

.hero-main-title .accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-accent-secondary));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-style: italic;
    color: var(--erickson-secondary);
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 90%;
}

.hero-text strong {
    color: var(--erickson-accent);
    font-weight: 700;
}

.hero-quote {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border-left: 4px solid var(--erickson-accent);
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.hero-quote:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--erickson-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--erickson-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(235, 188, 52, 0.4);
}

.quote-text {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    color: var(--erickson-accent);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.achievement-highlights {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.achievement-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.achievement-number {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--erickson-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.achievement-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--erickson-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.indicator:hover::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--erickson-accent);
    box-shadow: 0 0 15px rgba(235, 188, 52, 0.6);
}

.indicator.active::before {
    border-color: var(--erickson-accent);
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--erickson-accent), var(--erickson-accent-secondary));
    color: var(--erickson-primary);
    box-shadow: 0 4px 20px rgba(235, 188, 52, 0.4);
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 188, 52, 0.6);
    background: linear-gradient(135deg, var(--erickson-accent-secondary), var(--erickson-accent));
}

.cta-button.secondary {
    background: transparent;
    color: var(--erickson-white);
    border: 2px solid var(--erickson-white);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--erickson-accent);
    border-color: var(--erickson-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}



/* Carousel Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Carousel Responsive Design */
@media (min-width: 768px) {
    .hero-main-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .achievement-highlights {
        gap: 4rem;
    }

    

}

@media (min-width: 1024px) {
.hero-main-title {
    font-size: 4.6rem;
    font-weight: 600;
}
    
    .hero-subtitle {
        font-size: 3.5rem;
    }
    
    .hero-content {
        padding-left: 4rem;
    }
}

@media (max-width: 968px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-left-column,
    .hero-right-column {
        text-align: center;
    }
}

@media (max-width: 768px) {
.hero-carousel-section {
    height: 810px !important;
    /* max-height: 100vh; */
    min-height: 500px;
}
    
    .hero-slide:nth-child(1),
    .hero-slide:nth-child(2) {
        background-size: cover !important;
    }
    
    .hero-content-grid {
        min-height: auto;
        height: auto;
        padding: 1.5rem 1rem;
        gap: 3rem;
        align-items: flex-start;
        justify-content: center;
    }
    
    .hero-left-column {
        order: 1;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .hero-right-column {
        order: 2;
        text-align: center;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
.hero-text {
    font-size: 1.05rem;
    text-align: center;
    margin: 0px auto;
}
    
    .hero-quote {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    .hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .achievement-highlights {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .achievement-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .carousel-indicators {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {

    .hero-slide:nth-child(1),
    .hero-slide:nth-child(2) {
        background-size: cover !important;
    }
    
    .hero-slide:nth-child(2) {
        background-position: top left !important;
    }
    
.hero-content-grid {
    min-height: auto;
    height: 100%;
    padding: 0.75rem 0.5rem;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}
    
    .hero-main-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-quote {
        padding: 0.75rem;
        margin-top: 0.75rem;
        gap: 0.75rem;
    }
    
    .quote-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .quote-text {
        font-size: 0.9rem;
    }
    
    .cta-button {
        min-width: 140px;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin: 0.2rem 0;
    }
    
    .hero-left-column {
        padding: 0 0.25rem;
    }
    
    .hero-right-column {
        gap: 0.75rem;
        margin-top: 0.5rem;
        padding: 0 0.25rem;
    }
    
    }
    
    .cta-button {
        min-width: 180px;
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
        margin: 0.5rem 0;
    }
    
    .hero-right-column {
        gap: 1.5rem;
    }
    
    .achievement-item {
        min-width: 90px;
        padding: 0.8rem;
        flex: 1;
        max-width: 120px;
    }
    
    .achievement-number {
        font-size: 1.8rem;
    }
    
    .achievement-label {
        font-size: 0.7rem;
    }
    
    .welcome-badge span {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }


/* Content wrapper fix for mobile */
@media (max-width: 480px) {
    .content-wrapper, .form-card {
        padding: 0rem !important;
    }
}

/* Brand Partners Section */
.brand-partners-section {
    padding: 5rem 0;
    background: var(--erickson-white);
    position: relative;
}

.brand-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--erickson-secondary), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--erickson-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--erickson-text);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Brand Infinite Carousel */
.brand-carousel-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.brand-carousel-row {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.brand-carousel-track {
    display: inline-flex;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    gap: 2rem;
    align-items: center;
}

/* Animation for right-moving carousel */
.brand-carousel-row[data-direction="right"] .brand-carousel-track {
    animation-name: scrollRight;
}

/* Animation for left-moving carousel */
.brand-carousel-row[data-direction="left"] .brand-carousel-track {
    animation-name: scrollLeft;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--erickson-white);
    border-radius: 12px;
    border: 1px solid rgba(7, 63, 82, 0.1);
    transition: all 0.3s ease;
    height: 100px;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 183, 211, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-logo-item:hover::before {
    left: 100%;
}

.brand-logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--erickson-secondary);
    box-shadow: 0 10px 30px rgba(7, 63, 82, 0.1);
}

.brand-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.brand-logo-item:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Pause animation on hover */
.brand-carousel-row:hover .brand-carousel-track {
    animation-play-state: paused;
}

/* Keyframes for animations */
@keyframes scrollRight {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .brand-partners-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .brand-carousel-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .brand-logo-item {
        padding: 1rem;
        height: 80px;
        min-width: 150px;
    }
    
    .brand-logo {
        max-width: 100px;
        max-height: 50px;
    }
    
    .brand-carousel-track {
        animation-duration: 35s;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .brand-carousel-container {
        gap: 1rem;
    }
    
    .brand-logo-item {
        height: 70px;
        padding: 0.8rem;
        min-width: 130px;
    }
    
    .brand-logo {
        max-width: 80px;
        max-height: 40px;
    }
    
    .brand-carousel-track {
        animation-duration: 30s;
    }
}

/* Who, What and Why Section */
.who-what-why-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--erickson-primary) 0%, var(--erickson-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.who-what-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-accent-secondary));
    z-index: 2;
}

.who-what-why-section .section-title {
    color: var(--erickson-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.who-what-why-section .section-subtitle {
    color: var(--erickson-white);
    opacity: 0.9;
}

.who-what-why-section .title-accent {
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-accent-secondary));
}

.info-card {
    background: var(--erickson-white);
    border-radius: var(--erickson-radius-lg);
    box-shadow: var(--erickson-shadow);
    overflow: hidden;
    transition: var(--erickson-transition);
    margin-top: 2rem;
    transform: translateY(0);
    animation: fadeScale 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation-delay: 0.3s;
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-accent-secondary));
    z-index: 1;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card-content {
    display: flex;
    padding: 3rem;
    gap: 3rem;
}

.info-card-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--erickson-accent) 0%, var(--erickson-accent-secondary) 100%);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 25px rgba(235, 188, 52, 0.3);
}

.info-card-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 70px;
    border: 2px solid rgba(235, 188, 52, 0.3);
    animation: pulse-slow 3s ease-in-out infinite;
}

.info-card-icon i {
    font-size: 3rem;
    color: var(--erickson-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-card-text {
    flex: 1;
}

.info-card-title {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--erickson-primary);
    margin: 0 0 1.5rem;
    position: relative;
    display: inline-block;
}

.info-card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--erickson-accent);
    border-radius: 2px;
}

.info-card-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--erickson-text);
    margin-bottom: 1.5rem;
}

.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.info-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(7, 63, 82, 0.05);
    border-radius: var(--erickson-radius);
    border-left: 4px solid var(--erickson-secondary);
    transition: var(--erickson-transition);
}

.info-highlight-item:hover {
    transform: translateX(5px);
    background: rgba(7, 63, 82, 0.08);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--erickson-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--erickson-white);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(99, 183, 211, 0.3);
}

.highlight-text h4 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--erickson-primary);
    margin: 0 0 0.3rem;
}

.highlight-text p {
    font-size: 0.9rem;
    color: var(--erickson-text-light);
    margin: 0;
    line-height: 1.4;
}

/* Responsive styles for Who, What and Why Section */
@media (max-width: 992px) {
    .who-what-why-section {
        padding: 4rem 0;
    }
    
    .info-card-content {
        padding: 2rem;
        gap: 2rem;
    }
    
    .info-card-icon {
        width: 100px;
        height: 100px;
    }
    
    .info-card-icon i {
        font-size: 2.5rem;
    }
    
    .info-card-title {
        font-size: 1.8rem;
    }
    
    .info-card-description {
        font-size: 1rem;
    }
    
    .info-highlights {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .who-what-why-section {
        padding: 3rem 0;
    }
    
    .info-card-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .info-card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .info-card-icon i {
        font-size: 2rem;
    }
    
    .info-card-title {
        font-size: 1.6rem;
    }
    
    .info-card-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .info-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-highlight-item {
        padding: 0.8rem;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .who-what-why-section {
        padding: 2.5rem 0;
    }
    
    .info-card-content {
        padding: 1.5rem 1rem;
    }
    
    .info-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .info-card-icon i {
        font-size: 1.7rem;
    }
    
    .info-card-title {
        font-size: 1.4rem;
    }
    
    .info-card-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .info-highlight-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .highlight-icon {
        margin-bottom: 0.5rem;
    }
    
    .highlight-text h4 {
        font-size: 0.95rem;
    }
    
    .highlight-text p {
        font-size: 0.85rem;
    }
}

/* New Impact Showcase Responsive Styles */
@media (max-width: 768px) {
    .impact-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .primary-metric {
        padding: 2rem;
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .metric-circle {
        width: 120px;
        height: 120px;
    }

    .primary-metric .metric-number {
        font-size: 2rem;
    }

    .metric-description h3 {
        font-size: 1.5rem;
    }

    .achievement-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .metric-card {
        padding: 1.5rem;
    }
}

/* Old Statistics Section Backup */
.old-statistics-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #edf3f5 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-primary));
    z-index: 2;
    box-shadow: 0 2px 10px rgba(99, 183, 211, 0.3);
}

.statistics-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 183, 211, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 183, 211, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(7, 63, 82, 0.03) 0%, transparent 60%);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: var(--erickson-white);
    border-radius: var(--erickson-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--erickson-transition);
    border: 1px solid rgba(99, 183, 211, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeScale 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-primary));
    z-index: 1;
    box-shadow: 0 2px 10px rgba(99, 183, 211, 0.2);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 183, 211, 0.03) 0%, rgba(7, 63, 82, 0.01) 100%);
    z-index: 0;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--erickson-secondary);
}

.stat-item:hover::before {
    background: linear-gradient(90deg, var(--erickson-primary), var(--erickson-secondary));
}

.stat-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--erickson-primary) 0%, var(--erickson-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(7, 63, 82, 0.25);
    transition: var(--erickson-transition);
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(99, 183, 211, 0.4);
    animation: pulse-slow 3s ease-in-out infinite;
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: 1px dashed rgba(99, 183, 211, 0.3);
    animation: spin 30s linear infinite;
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--erickson-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    animation: iconPulse 2s ease-in-out infinite;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(7, 63, 82, 0.4);
}

.stat-content {
    position: relative;
    z-index: 1;
    padding-top: 0.5rem;
}


.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--erickson-text);
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--erickson-secondary);
    border-radius: 1px;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive styles for Statistics Section */
@media (max-width: 992px) {
    .statistics-section {
        padding: 6rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2.5rem 1.5rem;
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .stat-icon::after {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.2rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .stat-icon::after {
        display: none;
    }
    
    .stat-icon i {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .stat-label::after {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 4rem 0;
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-icon::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #edf3f5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-primary));
    z-index: 2;
    box-shadow: 0 2px 10px rgba(99, 183, 211, 0.3);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 183, 211, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 183, 211, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(7, 63, 82, 0.02) 0%, transparent 60%);
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--erickson-white);
    border-radius: var(--erickson-radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--erickson-transition);
    border: 1px solid rgba(99, 183, 211, 0.1);
    position: relative;
    animation: fadeScale 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-primary));
    z-index: 1;
    box-shadow: 0 2px 10px rgba(99, 183, 211, 0.2);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 183, 211, 0.02) 0%, rgba(7, 63, 82, 0.01) 100%);
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--erickson-secondary);
}

.testimonial-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--erickson-accent);
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(235, 188, 52, 0.3);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--erickson-text);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    text-align: center;
    opacity: 0.9;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 4rem;
    color: var(--erickson-secondary);
    opacity: 0.2;
    font-family: 'Georgia', serif;
}

.testimonial-quote::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 4rem;
    color: var(--erickson-secondary);
    opacity: 0.2;
    font-family: 'Georgia', serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(99, 183, 211, 0.2);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--erickson-secondary);
    box-shadow: 0 5px 15px rgba(99, 183, 211, 0.3);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--erickson-transition);
}

.author-image:hover img {
    transform: scale(1.1);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--erickson-primary);
    margin: 0 0 0.3rem;
    line-height: 1.2;
}

.author-designation {
    font-size: 0.9rem;
    color: var(--erickson-text-light);
    margin: 0;
    opacity: 0.8;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    background: var(--erickson-secondary);
    color: var(--erickson-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--erickson-transition);
    box-shadow: 0 4px 15px rgba(99, 183, 211, 0.4);
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonials-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.testimonials-btn:hover::before {
    left: 100%;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 183, 211, 0.5);
}

.testimonials-btn i {
    font-size: 1rem;
}

/* Responsive styles for Testimonials Section */
@media (max-width: 1200px) {
    .testimonials-section {
        padding: 6rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-designation {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 5rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonial-content {
        padding: 1.8rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 3rem;
    }
    
    .testimonial-author {
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding-top: 1.2rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-designation {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-rating {
        margin-bottom: 1.2rem;
    }
    
    .testimonial-rating i {
        font-size: 1rem;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 2.5rem;
        top: -8px;
        left: -15px;
        bottom: -25px;
        right: -15px;
    }
    
    .testimonial-author {
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-designation {
        font-size: 0.8rem;
    }
    
    .testimonials-cta {
        margin-top: 2rem;
    }
    
    .testimonials-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
        padding: 0 0.3rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.2rem;
    }
    
    .testimonial-rating {
        margin-bottom: 1rem;
    }
    
    .testimonial-rating i {
        font-size: 0.9rem;
    }
    
    .testimonial-quote {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .testimonial-quote::before,
    .testimonial-quote::after {
        display: none;
    }
    
    .testimonial-author {
        margin-top: 1.2rem;
        padding-top: 0.8rem;
    }
    
    .author-image {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 0.85rem;
    }
    
    .author-designation {
        font-size: 0.75rem;
    }
    
    .testimonials-cta {
        margin-top: 1.5rem;
    }
    
    .testimonials-btn {
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
        min-width: 160px;
    }
    
    .testimonials-btn i {
        font-size: 0.85rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #073F52 0%, #064251 100%);
    position: relative;
    overflow: hidden;
    color: var(--erickson-white);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-secondary));
    z-index: 2;
    box-shadow: 0 2px 10px rgba(235, 188, 52, 0.3);
}

.faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 183, 211, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(235, 188, 52, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    min-height: 800px;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--erickson-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Only animate cheap properties to keep interactions snappy */
    transition: transform 0.18s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.18s cubic-bezier(0.2, 0, 0, 1), border-color 0.18s ease;
    animation: fadeScale 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    flex-shrink: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }

.faq-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--erickson-accent), var(--erickson-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--erickson-accent);
    background: rgba(255, 255, 255, 0.15);
}

.faq-item:hover:before {
    opacity: 1;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--erickson-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(235, 188, 52, 0.2);
}

.faq-item.active:before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--erickson-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

.faq-question:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

.faq-question-text {
    flex: 1;
    margin-right: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--erickson-accent);
    color: var(--erickson-primary);
    transition: all 0.2s ease-out;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(235, 188, 52, 0.5);
}

.faq-item.active .faq-icon {
    background: var(--erickson-secondary);
    color: var(--erickson-primary);
    transform: rotate(0deg);
    box-shadow: 0 0 15px rgba(99, 183, 211, 0.6);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    /* Use a snappy custom easing and slightly longer duration for perceived responsiveness */
    transition: max-height 220ms cubic-bezier(0.2, 0, 0, 1);
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, var(--erickson-accent), var(--erickson-secondary)) 1;
    /* Hint the browser this property will change for better rendering performance */
    will-change: max-height;
}

/* NOTE: max-height for open state is set dynamically by JS using element.scrollHeight for accurate, snappy transitions */
.faq-item.active .faq-answer {
    border-image: linear-gradient(to bottom, var(--erickson-accent), var(--erickson-secondary)) 1;
}

.faq-answer-content {
    padding: 1rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-6px);
    /* animate only opacity/transform (cheap) for snappy feel */
    transition: opacity 160ms cubic-bezier(0.2, 0, 0, 1) 40ms, transform 160ms cubic-bezier(0.2, 0, 0, 1) 40ms;
    will-change: opacity, transform;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blob animation */
.faq-section .blob-1,
.faq-section .blob-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.faq-section .blob-1 {
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: var(--erickson-accent);
    filter: blur(100px);
    animation: float-slow 25s infinite alternate ease-in-out;
}

.faq-section .blob-2 {
    bottom: -100px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: var(--erickson-secondary);
    filter: blur(120px);
    animation: float-slow 30s infinite alternate-reverse ease-in-out;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(50px, 30px) rotate(5deg) scale(1.05);
    }
    66% {
        transform: translate(-30px, 50px) rotate(-5deg) scale(0.95);
    }
    100% {
        transform: translate(30px, -30px) rotate(0deg) scale(1);
    }
}

/* Responsive FAQ Container Height */
@media (max-width: 1200px) {
    .faq-container {
        min-height: 850px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        min-height: 900px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        min-height: 950px;
    }
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 5;
}

.faq-section .section-title {
    color: var(--erickson-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.faq-section .section-badge {
    background: var(--erickson-accent);
    color: var(--erickson-primary);
    box-shadow: 0 8px 20px rgba(235, 188, 52, 0.3);
}

.faq-section .title-accent {
    background: var(--erickson-accent);
    box-shadow: 0 4px 12px rgba(235, 188, 52, 0.3);
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    background: var(--erickson-accent);
    color: var(--erickson-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 4px 15px rgba(235, 188, 52, 0.4);
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.faq-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.faq-btn:hover::before {
    left: 100%;
}

.faq-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(235, 188, 52, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-btn:active {
    transform: translateY(0) scale(0.98);
}

.faq-btn i {
    font-size: 1.1rem;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive styles for FAQ Section */
@media (max-width: 1200px) {
    .faq-section {
        padding: 6rem 0;
    }
    
    .faq-container {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 5rem 0;
    }
    
    .faq-container {
        max-width: 800px;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-answer-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-question-text {
        margin-right: 0.8rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-answer-content {
        font-size: 0.9rem;
        padding-top: 0.8rem;
    }
    
    .faq-cta {
        margin-top: 2rem;
    }
    
    .faq-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .faq-container {
        padding: 0 0.3rem;
    }
    
    .faq-item {
        margin-bottom: 0.8rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-question-text {
        margin-right: 0.6rem;
        line-height: 1.3;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faq-answer-content {
        font-size: 0.85rem;
        padding-top: 0.6rem;
        line-height: 1.5;
    }
    
    .faq-cta {
        margin-top: 1.5rem;
    }
    
    .faq-btn {
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
        min-width: 160px;
    }
    
    .faq-btn i {
        font-size: 0.85rem;
    }
}

/* Want to Know More Section */
.want-to-know-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9fa 100%);
    position: relative;
    overflow: hidden;
    color: var(--erickson-primary);
}

.want-to-know-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(99, 183, 211, 0.08);
    top: -100px;
    left: 10%;
    animation: floatAnimation 15s infinite alternate ease-in-out;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(235, 188, 52, 0.05);
    bottom: -200px;
    right: 5%;
    animation: floatAnimation 20s infinite alternate-reverse ease-in-out;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(99, 183, 211, 0.1);
    top: 30%;
    right: 15%;
    animation: floatAnimation 18s infinite alternate ease-in-out;
}

.shape-4 {
    width: 400px;
    height: 400px;
    background: rgba(7, 63, 82, 0.05);
    bottom: 20%;
    left: 0;
    animation: floatAnimation 25s infinite alternate-reverse ease-in-out;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 30px) rotate(15deg);
    }
}

.want-to-know-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-accent));
    z-index: 2;
    box-shadow: 0 5px 20px rgba(99, 183, 211, 0.3);
}

.want-to-know-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 5rem;
}

.want-to-know-section .section-title {
    color: var(--erickson-primary);
    font-size: 3.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.want-to-know-section .section-subtitle {
    color: var(--erickson-text);
    opacity: 0.9;
    max-width: 700px;
    font-size: 1.3rem;
    line-height: 1.8;
}

.want-to-know-section .section-badge {
    background: var(--erickson-secondary);
    color: var(--erickson-primary);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(99, 183, 211, 0.3);
    padding: 0.5rem 1.5rem;
}

.certification-grid {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
    background: var(--erickson-white);
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px rgba(7, 63, 82, 0.1);
    overflow: hidden;
}

/* Content Column */
.certification-content-column {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    background: var(--erickson-white);
}

.content-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.content-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--erickson-secondary), var(--erickson-accent));
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 15px rgba(99, 183, 211, 0.3);
    position: relative;
}

.content-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, var(--erickson-secondary), transparent);
    opacity: 0.3;
    z-index: -1;
}

.content-icon i {
    font-size: 2rem;
    color: var(--erickson-white);
}

.content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--erickson-primary);
    margin-bottom: 1.8rem;
    line-height: 1.3;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-accent), transparent);
    border-radius: 4px;
}

.certification-points {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.certification-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 0;
    transition: all 0.3s ease;
}

.certification-points li:hover {
    transform: translateX(5px);
}

.point-number {
    font-size: 1.4rem;
    font-weight: 700;
    margin-right: 1rem;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    color: var(--erickson-secondary);
}

.point-content {
    flex: 1;
}

.point-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--erickson-primary);
    margin-bottom: 0.25rem;
}

.point-content p {
    font-size: 0.95rem;
    color: var(--erickson-text);
    line-height: 1.5;
    margin: 0;
}

.certification-points li:last-child {
    margin-bottom: 0;
}

.learn-more-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-accent));
    color: var(--erickson-white);
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(99, 183, 211, 0.3);
    margin-top: auto;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(99, 183, 211, 0.4);
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-secondary));
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Form Column */
.certification-form-column {
    position: relative;
    width: 45%;
    padding: 2.5rem 3rem 2.5rem 2.5rem;
    background: var(--erickson-primary);
    color: var(--erickson-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.certification-form-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-accent));
    box-shadow: 0 5px 15px rgba(99, 183, 211, 0.3);
}

.form-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--erickson-secondary), var(--erickson-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 20px rgba(99, 183, 211, 0.4);
    position: relative;
}

.form-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--erickson-accent), transparent);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.form-icon i {
    font-size: 2rem;
    color: var(--erickson-white);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--erickson-white);
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-secondary));
    border-radius: 2px;
}

.form-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-top: 1.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.enrollment-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.2rem;
    position: relative;
}

.important-form {
    height: 543px;
    width: 100%;
    border: none;
    border-radius: 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.97);
    transition: var(--erickson-transition);
}

.important-form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for Want to Know More Section */
@media (max-width: 1200px) {
    .want-to-know-section {
        padding: 8rem 0;
    }
    
    .certification-grid {
        gap: 3rem;
    }
    
    .content-wrapper, .form-card {
        padding: 2.5rem;
    }
    
    .certification-points {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .want-to-know-section {
        padding: 5rem 0;
    }
    
    .certification-title {
        font-size: 2.2rem;
    }
    
    .certification-subtitle {
        font-size: 1rem;
    }
    
    .certification-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .want-to-know-section {
        padding: 4rem 0;
    }
    
    .certification-header {
        margin-bottom: 3rem;
    }
    
    .certification-title {
        font-size: 2rem;
    }
    
    .certification-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .certification-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .important-form {
        width: 100%;
        max-width: 543px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .want-to-know-section {
        padding: 3rem 0;
    }
    
    .certification-header {
        margin-bottom: 2.5rem;
    }
    
    .certification-title {
        font-size: 1.8rem;
    }
    
    .certification-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .certification-features {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
    
    .enrollment-form-container {
        margin-top: 2rem;
    }
    
.important-form {
    width: 100%;
    max-width: 350px;
    height: 543px;
}
}

/* Revolutionary CTA Section */
.cta-revolutionary {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Split Layout Container */
.cta-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Left Panel - Content */
.cta-left-panel {
    display: flex;
    align-items: center;
    padding: 2rem 1rem 4rem 4rem;
    background: linear-gradient(135deg, var(--erickson-primary) 0%, #0A4D65 100%);
    position: relative;
}

.cta-content-wrapper {
    max-width: 600px;
    width: 100%;
    animation: slideInLeft 1s ease-out;
}

/* Badge */
.cta-badge-container {
    position: relative;
    margin-bottom: 2rem;
}

.cta-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--erickson-white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

/* Headline Stack */
.cta-headline-stack {
    margin-bottom: 3rem;
}

.cta-main-title {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--erickson-white);
    position: relative;
    overflow: hidden;
    animation: titleReveal 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.9s; }

.title-line.highlight {
    color: var(--erickson-secondary);
    text-shadow: 0 0 30px rgba(99, 183, 211, 0.5);
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, var(--erickson-secondary), var(--erickson-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite alternate;
    opacity: 0;
}

.title-line.highlight::before {
    opacity: 1;
}

.title-accent-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-accent));
    border-radius: 2px;
    margin-top: 1.5rem;
    animation: accentGrow 1s ease-out 1.2s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

/* Description */
.cta-description {
    margin-bottom: 3rem;
}

.desc-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.desc-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--erickson-secondary);
    font-weight: 500;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.highlight-item:nth-child(1) { animation-delay: 1.8s; }
.highlight-item:nth-child(2) { animation-delay: 2.1s; }
.highlight-item:nth-child(3) { animation-delay: 2.4s; }

.highlight-item i {
    font-size: 1.1rem;
}

/* Action Zone */
.cta-action-zone {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--erickson-secondary) 0%, var(--erickson-accent) 100%);
    color: var(--erickson-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 183, 211, 0.3);
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 1s ease-out 2.7s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 183, 211, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary-btn:hover .btn-glow {
    left: 100%;
}

.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    color: var(--erickson-white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    animation: fadeInUp 1s ease-out 3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.cta-secondary-btn:hover {
    border-color: var(--erickson-secondary);
    color: var(--erickson-secondary);
    background: rgba(99, 183, 211, 0.1);
    transform: translateY(-2px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Trust Indicators */
.cta-trust-indicators {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 3.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.trust-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--erickson-secondary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Panel - Visual */
.cta-right-panel {
    background: linear-gradient(135deg, #0F2B38 0%, var(--erickson-primary) 50%, #0A233D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Geometric Patterns */
.geometric-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.pattern-layer {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(99, 183, 211, 0.2);
}

.pattern-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 15%;
    animation: rotate 20s linear infinite;
}

.pattern-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation: rotate 15s linear infinite reverse;
    border-color: rgba(235, 188, 52, 0.3);
}

.pattern-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 30%;
    animation: rotate 25s linear infinite;
    border-style: dashed;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--erickson-secondary);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.element-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 30%;
    right: 25%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 20%;
    left: 25%;
    animation-delay: 3s;
}

/* Blogs Grid */
.blogs-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

/* Blogs Section Header */
.blogs-section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem 0;
    position: relative;
    z-index: 10;
}

.blogs-section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-accent));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(99, 183, 211, 0.4);
}

.blogs-section-title {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--erickson-white);
    margin: 1rem 0 0.5rem 0;
    position: relative;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blogs-section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--erickson-accent);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(235, 188, 52, 0.4);
}

.blogs-section-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    max-width: 350px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
/* Blogs Section Footer */
.blogs-section-footer {
    text-align: center;
    /* margin-top: 2.5rem; */
    padding: 1rem 1rem;
    position: relative;
    z-index: 10;
}

.blogs-view-all-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--erickson-primary), var(--erickson-secondary), var(--erickson-accent));
    background-size: 200% 200%;
    color: var(--erickson-white);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(7, 63, 82, 0.25),
        0 4px 12px rgba(99, 183, 211, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.blogs-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.blogs-view-all-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, var(--erickson-accent), var(--erickson-secondary), var(--erickson-primary));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blogs-view-all-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(7, 63, 82, 0.35),
        0 8px 20px rgba(99, 183, 211, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 100%;
}

.blogs-view-all-btn:hover::before {
    left: 100%;
}

.blogs-view-all-btn:hover::after {
    opacity: 1;
}

.blogs-view-all-btn span {
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.blogs-view-all-btn i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.blogs-view-all-btn:hover i {
    transform: translateX(5px) rotate(5deg);
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0.9;
    transform: translateY(10px);
    animation: blogCardSlideIn 0.6s ease-out forwards;
    max-width: 341px;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--erickson-accent);
    background: rgba(255, 255, 255, 0.98);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    background: var(--erickson-accent);
    color: var(--erickson-primary);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(235, 188, 52, 0.3);
}

.blog-content {
    padding: 1.2rem;
}

.blog-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--erickson-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.8rem;
    color: var(--erickson-text-light);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--erickson-text-light);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-date i,
.blog-read-time i {
    color: var(--erickson-secondary);
}

/* Blogs Grid Responsive Styles */
@media (max-width: 768px) {
    .blogs-grid {
        padding: 1rem;
        gap: 1rem;
        max-width: 400px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }

    .blog-card {
        padding: 0;
    }

    .blog-image {
        height: 100px;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-title {
        font-size: 0.85rem;
    }

    .blog-excerpt {
        font-size: 0.75rem;
    }

    .blog-meta {
        font-size: 0.7rem;
    }
    
    .blogs-section-header {
        margin-bottom: 1.5rem;
    }

.blogs-section-title {
    font-size: 3rem;
}

    .blogs-section-subtitle {
        font-size: 0.9rem;
    }

    .blogs-section-footer {
        margin-top: 1.5rem;
    }

    .blogs-view-all-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blogs-grid {
        padding: 0.5rem;
        gap: 0.8rem;
        max-width: 320px;
    }

    .blog-card {
        border-radius: 12px;
    }

    .blog-image {
        height: 90px;
    }

    .blog-content {
        padding: 0.8rem;
    }

    .blog-title {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    .blog-excerpt {
        font-size: 0.7rem;
        -webkit-line-clamp: 2;
    }

    .blog-category {
        padding: 0.2rem 0.6rem;
        font-size: 0.6rem;
    }
}

/* Blog Card Animations */
@keyframes blogCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blogCardGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(235, 188, 52, 0.1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(235, 188, 52, 0.2);
    }
}

/* Central Visual */
.central-visual {
    position: relative;
    z-index: 2;
}

.visual-orbit {
    position: relative;
    width: 250px;
    height: 250px;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: rotate 30s linear infinite;
    border-color: var(--erickson-secondary);
    opacity: 0.6;
}

.ring-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation: rotate 20s linear infinite reverse;
    border-color: var(--erickson-accent);
    opacity: 0.4;
}

.ring-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation: rotate 15s linear infinite;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.3);
}

.central-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--erickson-secondary), var(--erickson-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--erickson-primary);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(99, 183, 211, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

/* Background Effects */
.cta-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(99, 183, 211, 0.1) 0%, transparent 70%);
    animation: breathe 4s ease-in-out infinite;
}

.particle-field {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(99, 183, 211, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(235, 188, 52, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particleMove 20s linear infinite;
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(99, 183, 211, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(235, 188, 52, 0.03) 50%, transparent 70%);
    animation: meshShift 15s ease-in-out infinite;
}

/* Revolutionary Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeGlow {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 10px 30px rgba(99, 183, 211, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 15px 40px rgba(99, 183, 211, 0.6);
    }
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes particleMove {
    to { transform: translate(-20px, -20px); }
}

@keyframes meshShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

/* Revolutionary CTA Responsive Styles */
@media (max-width: 1200px) {
    .cta-left-panel {
        padding: 3rem 4rem;
    }
    
    .title-line {
        font-size: 4rem;
    }
    
    .desc-highlights {
        gap: 1.5rem;
    }
    
    .cta-trust-indicators {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .cta-split-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .cta-left-panel {
        padding: 4rem 3rem 2rem;
        order: 1;
    }
    
    .cta-right-panel {
        min-height: 60vh;
        order: 2;
    }
    
    .title-line {
        font-size: 3.5rem;
    }
    
    .desc-text {
        font-size: 1.2rem;
    }
    
    .cta-action-zone {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .cta-trust-indicators {
        justify-content: center;
    }
    
    .visual-container {
        padding: 2rem;
    }
    
    .pattern-1 {
        width: 250px;
        height: 250px;
    }
    
    .pattern-2 {
        width: 180px;
        height: 180px;
    }
    
    .visual-orbit {
        width: 200px;
        height: 200px;
    }
    
    .central-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .cta-left-panel {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .cta-right-panel {
        min-height: 50vh;
    }
    
    .title-line {
        font-size: 2.8rem;
    }
    
    .title-line::before {
        display: none !important;
    }
    
    .desc-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .desc-highlights {
        justify-content: center;
        gap: 1rem;
    }
    
    .cta-action-zone {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-trust-indicators {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .pattern-1 {
        width: 200px;
        height: 200px;
    }
    
    .pattern-2 {
        width: 150px;
        height: 150px;
    }
    
    .pattern-3 {
        width: 120px;
        height: 120px;
    }
    
    .float-element {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .visual-orbit {
        width: 180px;
        height: 180px;
    }
    
    .central-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-revolutionary {
        min-height: auto;
    }
    
    .cta-left-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-right-panel {
        min-height: 40vh;
    }
    
    .cta-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }
    
    .title-line {
        font-size: 2.2rem;
    }
    
    .title-line::before {
        display: none !important;
    }
    
.title-accent-line {
    width: 80px;
    height: 3px;
    text-align: center;
    margin: 10px auto;
}
    
    .desc-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .desc-highlights {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-trust-indicators {
        flex-direction: row;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-stat {
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .pattern-1 {
        width: 150px;
        height: 150px;
    }
    
    .pattern-2 {
        width: 120px;
        height: 120px;
    }
    
    .pattern-3 {
        width: 100px;
        height: 100px;
    }
    
    .float-element {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    .visual-orbit {
        width: 150px;
        height: 150px;
    }
    
    .central-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 15px;
    }
}

/* Program Outline Section */
.program-outline-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 183, 211, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 30%, rgba(235, 188, 52, 0.07) 0%, transparent 25%),
        radial-gradient(circle at 30% 70%, rgba(232, 135, 85, 0.03) 0%, transparent 15%),
        radial-gradient(circle at 80% 80%, rgba(7, 63, 82, 0.05) 0%, transparent 20%);
    z-index: 0;
}

.program-outline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-accent), var(--erickson-primary));
    z-index: 2;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--erickson-secondary);
    color: var(--erickson-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(99, 183, 211, 0.3);
}

.section-title {
    position: relative;
    z-index: 1;
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--erickson-primary);
    margin: 0 0 0.5rem;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.title-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-primary));
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(99, 183, 211, 0.2);
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--erickson-text);
    text-align: center;
    opacity: 0.85;
}

.program-journey {
    position: relative;
    margin: 2rem 0 3rem;
    padding: 2rem 0;
}

/* Journey Progress Square */
.journey-progress-square {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 20;
    pointer-events: none;
}

.square-grid {
    position: relative;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(99, 183, 211, 0.3);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 12px 40px rgba(7, 63, 82, 0.15),
        0 4px 12px rgba(99, 183, 211, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.square-part {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* border-radius: 8px; */
    overflow: hidden;
}
.part-text {
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}
/* Individual Part Colors */
.square-part.part-1 {
    background: linear-gradient(135deg, rgb(223 176 41 / 70%), rgb(255 255 255 / 19%));
    border: 1px solid rgba(235, 188, 52, 0.25);
}

.square-part.part-1 .part-text {
    color: #D4A017;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.square-part.part-2 {
    background: linear-gradient(135deg, rgba(99, 183, 211, 0.2), rgba(99, 183, 211, 0.08));
    border: 1px solid rgba(99, 183, 211, 0.25);
}

.square-part.part-2 .part-text {
    color: #1E7B99;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.square-part.part-3 {
    background: linear-gradient(135deg, rgba(232, 135, 85, 0.2), rgba(232, 135, 85, 0.08));
    border: 1px solid rgba(232, 135, 85, 0.25);
}

.square-part.part-3 .part-text {
    color: #B85A2B;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.square-part.part-4 {
    background: linear-gradient(135deg, rgb(255 255 255 / 67%), rgb(55 160 195 / 76%));
    border: 1px solid rgba(7, 63, 82, 0.25);
}

.square-part.part-4 .part-text {
    color: #0A4D65;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Glow Effect Overlays */
.square-part::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0px;
}

.square-part::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
}

/* Individual Glow Colors */
.square-part.part-1::before {
    background: linear-gradient(135deg, var(--erickson-accent), #F5D76E);
}

.square-part.part-2::before {
    background: linear-gradient(135deg, var(--erickson-secondary), #87D4F0);
}

.square-part.part-3::before {
    background: linear-gradient(135deg, var(--erickson-accent-secondary), #F0A177);
}

.square-part.part-4::before {
    background: linear-gradient(135deg, var(--erickson-primary), #0A5269);
}

/* Glow States */
.square-part.glow::before {
    opacity: 0.8;
}

.square-part.glow::after {
    opacity: 1;
}

.square-part.glow {
    transform: scale(1.03);
}

.square-part.glow .part-text {
    color: var(--erickson-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 5;
}

.program-card {
    background: var(--erickson-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    opacity: 1;
}

/* Improved hover effect */
.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Force immediate loading of card contents */

/* New Impact Showcase Styles */
.impact-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
    align-items: center;
}

.primary-metric {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--erickson-primary) 0%, var(--erickson-secondary) 100%);
    padding: 3rem;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 40px rgba(7, 63, 82, 0.2);
}

.metric-visual {
    flex-shrink: 0;
}

.metric-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.metric-inner {
    text-align: center;
}

.primary-metric .metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    color: var(--erickson-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.primary-metric .metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.metric-description p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.supporting-metrics {
    display: grid;
    gap: 1.5rem;
}

.metric-card {
    background: var(--erickson-white);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--erickson-accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-left-color: var(--erickson-secondary);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-card .metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--erickson-accent), var(--erickson-accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--erickson-primary);
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
}

.metric-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--erickson-primary);
    margin-bottom: 0.3rem;
}

.metric-info p {
    font-size: 0.9rem;
    color: var(--erickson-text-light);
    margin: 0;
}

.achievement-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(7, 63, 82, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--erickson-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item .highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--erickson-secondary), var(--erickson-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.highlight-text strong {
    font-weight: 700;
    color: var(--erickson-primary);
    font-size: 0.95rem;
}

.highlight-text span {
    font-size: 0.85rem;
    color: var(--erickson-text-light);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-secondary));
    z-index: 1;
}

.program-card.part-i::before {
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-secondary));
}

.program-card.part-ii::before {
    background: linear-gradient(90deg, var(--erickson-secondary), var(--erickson-accent-secondary));
}

.program-card.part-i {
    background: linear-gradient(135deg, #fff 0%, rgba(99, 183, 211, 0.05) 100%);
}

.program-card.part-ii {
    background: linear-gradient(135deg, #fff 0%, rgba(232, 135, 85, 0.05) 100%);
}

.card-label {
    position: absolute;
    top: 57px;
    right: -58px;
    background: var(--erickson-accent);
    color: var(--erickson-primary);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-card.part-ii .card-label {
    background: var(--erickson-accent-secondary);
    color: #fff;
}

.card-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--erickson-primary) 0%, var(--erickson-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.program-card.part-ii .card-header {
    background: linear-gradient(135deg, var(--erickson-primary) 0%, var(--erickson-accent-secondary) 100%);
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    transform-origin: center;
    animation: rotateBackground 60s linear infinite;
}

.card-icon {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--erickson-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

.card-icon i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: var(--erickson-primary);
}

.program-card.part-i .card-icon i {
    color: var(--erickson-primary);
}

.program-card.part-ii .card-icon i {
    color: var(--erickson-accent-secondary);
}

.card-header-content {
    flex: 1;
}

.card-title {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--erickson-white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.card-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--erickson-white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-content {
    padding: 2rem;
    position: relative;
}

.card-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--erickson-text);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.program-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(7, 63, 82, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--erickson-secondary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--erickson-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: var(--erickson-white);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(7, 63, 82, 0.2);
}

.program-card.part-i .feature-icon {
    background: var(--erickson-secondary);
}

.program-card.part-ii .feature-icon {
    background: var(--erickson-accent-secondary);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--erickson-primary);
    margin: 0 0 0.3rem;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--erickson-text-light);
    margin: 0;
    opacity: 0.8;
}

.card-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.card-tag {
    padding: 0.4rem 1rem;
    background: rgba(7, 63, 82, 0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--erickson-primary);
    transition: var(--erickson-transition);
}

.program-card.part-i .card-tag {
    background: rgba(99, 183, 211, 0.1);
    color: var(--erickson-primary);
}

.program-card.part-ii .card-tag {
    background: rgba(232, 135, 85, 0.1);
    color: var(--erickson-primary);
}

.card-tag:hover {
    background: rgba(99, 183, 211, 0.2);
    transform: translateY(-2px);
}

.program-card.part-ii .card-tag:hover {
    background: rgba(232, 135, 85, 0.2);
}

.card-footer {
    padding: 2rem;
    background: rgba(7, 63, 82, 0.03);
    border-top: 1px solid rgba(7, 63, 82, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.focus-question {
    padding: 1.5rem;
    background: var(--erickson-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(7, 63, 82, 0.1);
    position: relative;
    transition: var(--erickson-transition);
}

.focus-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(7, 63, 82, 0.15);
}

.program-card.part-i .focus-question {
    border-left: 4px solid var(--erickson-accent);
}

.program-card.part-ii .focus-question {
    border-left: 4px solid var(--erickson-accent-secondary);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--erickson-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--erickson-white);
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(235, 188, 52, 0.3);
}

.program-card.part-ii .quote-icon {
    background: var(--erickson-accent-secondary);
    box-shadow: 0 3px 10px rgba(232, 135, 85, 0.3);
}

.quote-text {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: var(--erickson-accent);
    margin: 0;
    text-align: center;
}

.card-btn {
    display: inline-block;
    text-align: center;
    padding: 1rem;
    background: var(--erickson-primary);
    color: var(--erickson-white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--erickson-transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(7, 63, 82, 0.2);
}

.card-btn:hover {
    background: var(--erickson-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 63, 82, 0.3);
}

.program-card.part-i .card-btn {
    background: var(--erickson-accent);
    color: var(--erickson-primary);
    box-shadow: 0 4px 15px rgba(235, 188, 52, 0.3);
}

.program-card.part-i .card-btn:hover {
    background: var(--erickson-accent-secondary);
    color: var(--erickson-white);
    box-shadow: 0 8px 20px rgba(235, 188, 52, 0.4);
}

.program-card.part-ii .card-btn {
    background: var(--erickson-accent-secondary);
    color: var(--erickson-white);
    box-shadow: 0 4px 15px rgba(232, 135, 85, 0.3);
}

.program-card.part-ii .card-btn:hover {
    background: var(--erickson-primary);
    box-shadow: 0 8px 20px rgba(232, 135, 85, 0.4);
}

.program-pathway {
    text-align: center;
    margin-top: 2rem;
}

.pathway-arrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(7, 63, 82, 0.03);
    border-radius: 50px;
    font-weight: 600;
    color: var(--erickson-primary);
    box-shadow: 0 5px 15px rgba(7, 63, 82, 0.05);
    animation: floatUpDown 3s ease-in-out infinite;
}

.pathway-arrow i {
    font-size: 1.5rem;
    color: var(--erickson-secondary);
    animation: arrowRight 1.5s ease-in-out infinite;
}

/* New Animations */
@keyframes fadeScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 183, 211, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(99, 183, 211, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 183, 211, 0);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes arrowRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Responsive Design for Program Outline */
@media (max-width: 1200px) {
    .program-cards {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .program-outline-section {
        padding: 4rem 0;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 3rem;
    }
    
    .journey-line {
        display: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .card-header {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-right: 1.2rem;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .program-outline-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .program-features-grid {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem 0.6rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    .card-tag-container {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .card-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .card-footer {
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .focus-question {
        padding: 1.2rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .program-outline-section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .card-label {
        font-size: 0.7rem;
        padding: 4px 30px;
        right: -35px;
    }
    
    .card-header {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .card-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .program-features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        padding: 0.8rem;
        gap: 0.8rem;
        align-items: center;
    }
    
    .feature-icon {
        margin-bottom: 0;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .card-footer {
        padding: 1.2rem;
    }
    
    .focus-question {
        padding: 1rem;
    }
    
    .quote-icon {
        top: -12px;
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .card-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .pathway-arrow {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.8rem;
    }
    
    .pathway-arrow i {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design - More Compact */
@media (max-width: 1024px) {
    /* Hide journey progress square on smaller screens */
    .journey-progress-square {
        display: none;
    }
    
    .program-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        max-width: 900px;
    }
    
    .program-journey {
        padding: 2rem 0 4rem;
    }
    
    .card-content {
        padding: 1.5rem 1.2rem;
    }
    
    .card-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .program-features-grid {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .program-outline-section {
        padding: 3rem 0;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .card-header {
        padding: 1.2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .card-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        margin-top: 0.6rem;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .program-details {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .detail-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .detail-item i {
        font-size: 0.9rem;
        width: 16px;
    }
    
    .detail-item span {
        font-size: 0.85rem;
    }
    
    .card-footer {
        padding: 1.2rem;
    }
    
    .focus-question {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .focus-question i {
        font-size: 1rem;
    }
    
    .focus-question span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .program-outline-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .program-cards {
        gap: 1rem;
        padding: 0 0.3rem;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        margin-top: 0.5rem;
    }
    
    .card-content {
        padding: 1rem 0.8rem;
    }
    
    .card-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .program-details {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .detail-item {
        padding: 0.5rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .detail-item i {
        font-size: 1rem;
        width: auto;
        margin-bottom: 0.2rem;
    }
    
    .detail-item span {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .card-footer {
        padding: 1rem 0.8rem;
    }
    
    .focus-question {
        padding: 0.6rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .focus-question i {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .focus-question span {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

/* Upcoming TASC Dates Section */
.tasc-dates-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--erickson-white) 0%, rgba(99, 183, 211, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.tasc-dates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--erickson-accent), var(--erickson-secondary), var(--erickson-primary));
}

.tasc-dates-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tasc-part-card {
    background: var(--erickson-white);
    border-radius: var(--erickson-radius-lg);
    box-shadow: var(--erickson-shadow);
    overflow: hidden;
    transition: var(--erickson-transition);
    position: relative;
    border: 2px solid transparent;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.tasc-part-card:nth-child(1) {
    animation-delay: 0.2s;
}

.tasc-part-card:nth-child(2) {
    animation-delay: 0.4s;
}

.tasc-part-card:nth-child(3) {
    animation-delay: 0.6s;
}

.tasc-part-card:nth-child(4) {
    animation-delay: 0.8s;
}

.tasc-part-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--erickson-shadow-hover);
    border-color: var(--erickson-secondary);
}

.tasc-part-card.part-i-dates {
    background: linear-gradient(135deg, rgba(235, 188, 52, 0.05) 0%, rgba(99, 183, 211, 0.05) 100%);
}

.tasc-part-card.part-i-dates:hover {
    border-color: var(--erickson-accent);
}

.tasc-part-card.part-ii-dates {
    background: linear-gradient(135deg, rgba(232, 135, 85, 0.05) 0%, rgba(7, 63, 82, 0.05) 100%);
}

.tasc-part-card.part-ii-dates:hover {
    border-color: var(--erickson-accent-secondary);
}

.tasc-part-header {
    background: linear-gradient(135deg, var(--erickson-primary) 0%, var(--erickson-secondary) 100%);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tasc-part-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.tasc-part-icon {
    width: 60px;
    height: 60px;
    background: var(--erickson-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.5rem;
    color: var(--erickson-primary);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: pulse-slow 3s ease-in-out infinite;
}

.tasc-part-title {
    font-family: 'Wildstripe', 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--erickson-white);
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tasc-part-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--erickson-accent);
    color: var(--erickson-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.8rem;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tasc-dates-list {
    padding: 1.5rem;
}

.tasc-date-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(7, 63, 82, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--erickson-secondary);
    transition: var(--erickson-transition);
}

.tasc-date-item:hover {
    background: rgba(99, 183, 211, 0.1);
    border-left-color: var(--erickson-accent);
    transform: translateX(3px);
}

.tasc-date-item:last-child {
    margin-bottom: 0;
}

.date-icon {
    width: 40px;
    height: 40px;
    background: var(--erickson-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--erickson-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.date-range {
    font-weight: 600;
    color: var(--erickson-text);
    font-size: 1rem;
}

.date-duration {
    font-size: 0.85rem;
    color: var(--erickson-text-light);
    opacity: 0.8;
}

.tasc-part-footer {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(7, 63, 82, 0.05) 0%, rgba(99, 183, 211, 0.05) 100%);
    text-align: center;
}

.tasc-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--erickson-accent);
    color: var(--erickson-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--erickson-transition);
    box-shadow: 0 4px 15px rgba(235, 188, 52, 0.3);
}

.tasc-register-btn:hover {
    background: var(--erickson-accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 188, 52, 0.4);
}

.tasc-register-btn i {
    font-size: 0.9rem;
}

.tasc-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(7, 63, 82, 0.05);
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--erickson-accent);
}

.note-icon {
    width: 40px;
    height: 40px;
    background: var(--erickson-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--erickson-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.tasc-note p {
    margin: 0;
    color: var(--erickson-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design for TASC Dates */
@media (max-width: 1024px) {
    .tasc-dates-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tasc-dates-section {
        padding: 3rem 0;
    }
    
    .tasc-dates-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .tasc-part-header {
        padding: 1.2rem;
    }
    
    .tasc-part-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .tasc-part-title {
        font-size: 1.5rem;
    }
    
    .tasc-part-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        margin-top: 0.6rem;
    }
    
    .tasc-dates-list {
        padding: 1.2rem;
    }
    
    .tasc-date-item {
        padding: 0.8rem;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .date-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .date-range {
        font-size: 0.95rem;
    }
    
    .date-duration {
        font-size: 0.8rem;
    }
    
    .tasc-part-footer {
        padding: 1.2rem;
    }
    
    .tasc-register-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .tasc-note {
        padding: 1.2rem;
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
    
    .note-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .tasc-note p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tasc-dates-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .tasc-dates-container {
        gap: 1rem;
        padding: 0 0.3rem;
    }
    
    .tasc-part-header {
        padding: 1rem;
    }
    
    .tasc-part-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .tasc-part-title {
        font-size: 1.3rem;
    }
    
    .tasc-part-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        margin-top: 0.5rem;
    }
    
    .tasc-dates-list {
        padding: 1rem 0.8rem;
    }
    
    .tasc-date-item {
        padding: 0.6rem;
        gap: 0.6rem;
        margin-bottom: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .date-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .date-range {
        font-size: 0.9rem;
    }
    
    .date-duration {
        font-size: 0.75rem;
    }
    
    .tasc-part-footer {
        padding: 1rem 0.8rem;
    }
    
    .tasc-register-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .tasc-register-btn i {
        font-size: 0.8rem;
    }
    
    .tasc-note {
        padding: 1rem 0.8rem;
        margin-top: 1rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .note-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .tasc-note p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* TASC Dates Section - Premium Design */
.tasc-dates-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.tasc-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 183, 211, 0.1), rgba(235, 188, 52, 0.1));
    animation: floatShape 8s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -80px;
    animation-delay: -3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Enhanced Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--erickson-secondary), var(--erickson-primary));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(99, 183, 211, 0.3);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(99, 183, 211, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(99, 183, 211, 0.5); }
}

.section-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--erickson-primary), var(--erickson-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.title-sub {
    display: block;
    font-size: 1.4rem;
    color: var(--erickson-text-muted);
    font-weight: 500;
}

/* Programs Showcase */
.programs-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Premium TASC Program Cards */
.tasc-dates-section .program-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Card Glow Effect */
.tasc-dates-section .card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--erickson-secondary), 
        var(--erickson-primary), 
        var(--erickson-accent));
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.tasc-dates-section .program-card:hover .card-glow {
    opacity: 1;
    animation: rotateGlow 3s linear infinite;
}

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

/* Card Background */
.tasc-dates-section .card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    overflow: hidden;
}

.tasc-dates-section .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(135deg, 
        rgba(99, 183, 211, 0.1) 0%, 
        rgba(235, 188, 52, 0.05) 100%);
}

.tasc-dates-section .program-card.advanced .gradient-overlay {
    background: linear-gradient(135deg, 
        rgba(235, 188, 52, 0.1) 0%, 
        rgba(232, 135, 85, 0.05) 100%);
}

.tasc-dates-section .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.03) 0%, transparent 50%);
}

/* Card Content Structure */
.tasc-dates-section .card-header {
    padding: 2rem 2rem 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tasc-dates-section .program-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--erickson-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tasc-dates-section .level-indicator {
    display: flex;
    gap: 0.3rem;
}

.tasc-dates-section .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.tasc-dates-section .dot.active {
    background: var(--erickson-secondary);
}

.tasc-dates-section .program-card.advanced .dot.active {
    background: var(--erickson-accent);
}

/* Card Content */
.tasc-dates-section .card-content {
    padding: 0 2rem 1rem;
    position: relative;
    z-index: 2;
}

.tasc-dates-section .program-title {
    margin-bottom: 1.5rem;
}

.tasc-dates-section .title-highlight {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--erickson-primary), var(--erickson-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.tasc-dates-section .program-card.advanced .title-highlight {
    background: linear-gradient(135deg, var(--erickson-primary), var(--erickson-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tasc-dates-section .title-desc {
    display: block;
    font-size: 1rem;
    color: var(--erickson-text-muted);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Program Features */
.tasc-dates-section .program-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tasc-dates-section .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tasc-dates-section .feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.tasc-dates-section .feature-item i {
    color: var(--erickson-secondary);
    font-size: 1.1rem;
}

.tasc-dates-section .program-card.advanced .feature-item i {
    color: var(--erickson-accent);
}

/* Dates Carousel */
.tasc-dates-section .dates-carousel {
    margin-bottom: 2rem;
}

.tasc-dates-section .carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tasc-dates-section .carousel-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--erickson-primary);
    margin: 0;
}

.tasc-dates-section .carousel-nav {
    display: flex;
    gap: 0.5rem;
}

.tasc-dates-section .nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(99, 183, 211, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--erickson-primary);
}

.tasc-dates-section .nav-btn:hover {
    background: var(--erickson-secondary);
    color: white;
    transform: scale(1.1);
}

.tasc-dates-section .program-card.advanced .nav-btn {
    background: rgba(235, 188, 52, 0.1);
}

.tasc-dates-section .program-card.advanced .nav-btn:hover {
    background: var(--erickson-accent);
}

/* Date Cards */
.tasc-dates-section .dates-container {
    display: flex;
    gap: 1rem;
    overflow: hidden;
}

.tasc-dates-section .date-card {
    min-width: 120px;
    padding: 1rem;
    background: linear-gradient(135deg, 
        rgba(99, 183, 211, 0.1), 
        rgba(99, 183, 211, 0.05));
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tasc-dates-section .program-card.advanced .date-card {
    background: linear-gradient(135deg, 
        rgba(235, 188, 52, 0.1), 
        rgba(235, 188, 52, 0.05));
}

.tasc-dates-section .date-card.active,
.tasc-dates-section .date-card:hover {
    border-color: var(--erickson-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 183, 211, 0.2);
}

.tasc-dates-section .program-card.advanced .date-card.active,
.tasc-dates-section .program-card.advanced .date-card:hover {
    border-color: var(--erickson-accent);
    box-shadow: 0 8px 25px rgba(235, 188, 52, 0.2);
}

.tasc-dates-section .date-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--erickson-primary);
    line-height: 1;
}

.tasc-dates-section .date-details {
    display: flex;
    flex-direction: column;
    margin: 0.5rem 0;
}

.tasc-dates-section .month {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--erickson-primary);
}

.tasc-dates-section .year {
    font-size: 0.8rem;
    color: var(--erickson-text-muted);
}

.tasc-dates-section .seats-available {
    font-size: 0.75rem;
    color: #059669;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    display: inline-block;
}

/* Card Footer */
.tasc-dates-section .card-footer {
    padding: 2rem;
    background: rgba(248, 250, 252, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tasc-dates-section .pricing-info {
    display: flex;
    flex-direction: column;
}

.tasc-dates-section .price-label {
    font-size: 0.8rem;
    color: var(--erickson-text-muted);
    margin-bottom: 0.2rem;
}

.tasc-dates-section .price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--erickson-primary);
}

/* CTA Buttons */
.tasc-dates-section .cta-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tasc-dates-section .essentials-cta {
    background: linear-gradient(135deg, var(--erickson-secondary), var(--erickson-primary));
    color: white;
    box-shadow: 0 8px 25px rgba(99, 183, 211, 0.4);
}

.tasc-dates-section .advanced-cta {
    background: linear-gradient(135deg, var(--erickson-accent), var(--erickson-primary));
    color: white;
    box-shadow: 0 8px 25px rgba(235, 188, 52, 0.4);
}

.tasc-dates-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.tasc-dates-section .btn-text {
    position: relative;
    z-index: 2;
}

.tasc-dates-section .btn-icon {
    transition: transform 0.3s ease;
}

.tasc-dates-section .cta-button:hover .btn-icon {
    transform: translateX(3px);
}

.tasc-dates-section .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.tasc-dates-section .cta-button:hover .btn-glow {
    transform: scale(1);
}

/* Program Benefits */
.tasc-dates-section .program-benefits {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tasc-dates-section .benefits-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--erickson-primary);
    margin-bottom: 2rem;
}

.tasc-dates-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tasc-dates-section .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tasc-dates-section .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tasc-dates-section .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--erickson-secondary), var(--erickson-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tasc-dates-section .benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--erickson-primary);
    margin-bottom: 0.3rem;
}

.tasc-dates-section .benefit-content p {
    font-size: 0.9rem;
    color: var(--erickson-text-muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .programs-showcase {
        gap: 2rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
.tasc-dates-section {
    padding: 4rem 0;
    height: 1406px;
}
    
    .tasc-dates-section .programs-showcase {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2rem;
    }
    
    .tasc-dates-section .title-main {
        font-size: 2.5rem;
    }
    
    .tasc-dates-section .title-sub {
        font-size: 1.2rem;
    }
    
    .tasc-dates-section .program-card {
        margin: 0 1rem;
    }
    
    .tasc-dates-section .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tasc-dates-section .floating-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .tasc-dates-section .card-header,
    .tasc-dates-section .card-content,
    .tasc-dates-section .card-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .tasc-dates-section .title-highlight {
        font-size: 1.8rem;
    }
    
    .tasc-dates-section .dates-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .tasc-dates-section .date-card {
        min-width: auto;
    }
    
    .tasc-dates-section .card-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
