/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #4a90e2;
    --yellow: #f4c430;
    --green: #34c759;
    --coral: #ff6f61;
    --light: #e9ecef;
    --dark: #333;
    --white: #fff;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-banner {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo-small img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 0.8rem;
}

.auth-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.auth-btn.login {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.auth-btn.login:hover {
    background: var(--blue);
    color: var(--white);
}

.auth-btn.signup {
    background: var(--blue);
    color: var(--white);
}

.auth-btn.signup:hover {
    background: #3a7ac8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light);
    width: 100%;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-auth-btn {
    padding: 0.8rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.mobile-auth-btn.login {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.mobile-auth-btn.signup {
    background: var(--blue);
    color: var(--white);
}

/* Hero Section - Updated for Left Alignment */
.hero {
    padding: 7rem 1.5rem 4rem;
    background-image: url( ../img/bbg.jpg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    text-align: left; /* Changed from center to left */
    margin-top: 2rem; /* Added to push content down */
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left; /* Changed from center to left */
}

.highlight {
    color: var(--yellow);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
    text-align: left; /* Changed from center to left */
}

.sub-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
    text-align: left; /* Changed from center to left */
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #e6b620;
}

.discover-how {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.discover-how span {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.discover-how i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* Section Styles */
section {
    padding: 4rem 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Manifesto Section */
.manifesto-section {
    background: var(--gray);
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--blue);
    line-height: 1.6;
}

.manifesto-statement {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    border-left: 3px solid var(--light);
}

.manifesto-emphasis {
    font-weight: 700;
    color: var(--blue);
}

.manifesto-highlight {
    font-weight: 700;
    color: var(--coral);
}

.manifesto-conclusion {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    color: var(--blue);
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* How It Works Section */
.how-it-works {
    position: relative;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--blue);
    transition: var(--transition);
}

.step:hover::before {
    height: 100%;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.step p {
    color: var(--dark-gray);
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Plans Section */
.plans-section {
    background: var(--gray);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.premium {
    border: 2px solid var(--yellow);
    transform: scale(1.03);
}

.premium-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--yellow);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light);
}

.plan-name {
    font-size: 1.4rem;
    color: var(--dark);
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue);
    margin: 0.5rem 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--dark-gray);
}

.plan-sessions {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.feature-list li:before {
    content: "✓";
    color: var(--green);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.plan-button {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.plan-button:hover {
    background: #3a7ac8;
    transform: translateY(-2px);
}

.plan-button.premium {
    background: var(--yellow);
    color: var(--dark);
}

.plan-button.premium:hover {
    background: #e6b620;
}

.plan-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Legend Section */
.legend-section {
    background: var(--white);
}

.legend-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.legend-image {
    order: 1;
}

.legend-image-content {
    width: 100%;
    height: 90vh;
    background: var(--light);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark-gray);
    background-image: url( ../img/Arabile-T.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.legend-image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.crown-icon {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.legend-image-text {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.legend-content {
    order: 2;
}

.legend-name {
    font-size: 1.8rem;
    color: var(--blue);
}

.legend-subtitle {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.legend-story {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--dark);
}

.legend-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.legend-quote {
    font-style: italic;
    padding: 1.5rem;
    background: var(--light);
    border-left: 4px solid var(--blue);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    position: relative;
}

.legend-quote i:first-child {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--blue);
    font-size: 1.2rem;
}

.legend-quote i:last-child {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: var(--blue);
    font-size: 1.2rem;
}

.legend-quote p {
    margin: 0;
    padding: 0 1.5rem;
    line-height: 1.6;
}

.legend-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
}

.legend-cta:hover {
    background: #2cb34a;
    transform: translateY(-2px);
}

/* Crisis Section */
.crisis-section {
    background: linear-gradient(135deg, var(--blue) 0%, #2a6fc7 100%);
    color: var(--white);
}

.crisis-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.crisis-content {
    order: 2;
}

.crisis-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.crisis-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.crisis-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.parent-challenges {
    margin: 2.5rem 0;
}

.challenges-title {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.challenge-list {
    list-style: none;
}

.challenge-list li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge-list li:last-child {
    border-bottom: none;
}

.challenge-list li i {
    color: var(--coral);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.crisis-cta {
    order: 1;
}

.cta-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--dark);
    height: fit-content;
    box-shadow: var(--box-shadow);
}

.cta-title {
    color: var(--blue);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.cta-subtitle {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.crisis-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
}

.crisis-button:hover {
    background: #e86557;
    transform: translateY(-2px);
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guarantee {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.guarantee i {
    color: var(--green);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 1.5rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.8rem;
    color: var(--blue);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.footer-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.footer-btn:hover {
    background: #3a7ac8;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Responsive Design */
@media (min-width: 768px) {
    .legend-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .legend-image {
        order: 2;
    }
    
    .legend-content {
        order: 1;
    }
    
    .crisis-container {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .crisis-content {
        order: 1;
    }
    
    .crisis-cta {
        order: 2;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu, .auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .sub-tagline {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .nav-bar {
        padding: 1rem;
    }
    
    .process-steps, .plans-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .legend-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crisis-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .legend-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile menu animation */
.mobile-menu {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Improved focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}








/* Enrollment Page Styles */
.enrollment-section {
    padding: 8rem 2rem 4rem;
    background: var(--gray);
    min-height: 100vh;
}

.enrollment-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.enrollment-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.enrollment-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Progress Indicator */
.progress-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-bar {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--light);
    z-index: 1;
    border-radius: 3px;
}

.progress-fill {
    position: absolute;
    top: 25px;
    left: 0;
    height: 6px;
    background: var(--blue);
    z-index: 2;
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 0%;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid var(--light);
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.step-label {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-align: center;
}

.step.active .step-label {
    color: var(--blue);
    font-weight: 600;
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-subtitle {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Form Elements */
.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-col {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-input::placeholder {
    color: #aaa;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

/* Program Selection */
.program-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.program-option {
    display: block;
    cursor: pointer;
}

.program-radio {
    position: absolute;
    opacity: 0;
}

.program-card {
    border: 2px solid var(--light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.program-option:hover .program-card,
.program-option input:checked + .program-card {
    border-color: var(--blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.program-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.program-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
}

.program-price span {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    color: var(--green);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.program-select {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light);
}

.selection-indicator {
    margin-right: 0.8rem;
}

.outer-circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.inner-circle {
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: scale(0);
}

.program-option input:checked + .program-card .outer-circle {
    border-color: var(--blue);
}

.program-option input:checked + .program-card .inner-circle {
    background: var(--blue);
    transform: scale(1);
}

.select-text {
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
}

.program-option input:checked + .program-card .select-text {
    color: var(--blue);
    font-weight: 600;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--blue);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-prev {
    background: var(--light);
    color: var(--dark);
}

.btn-prev:hover {
    background: #d8dde0;
}

.btn-next, .btn-submit {
    background: var(--blue);
    color: var(--white);
}

.btn-next:hover, .btn-submit:hover {
    background: #3a7ac8;
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--green);
}

.btn-submit:hover {
    background: #2cb34a;
}

.btn i {
    margin: 0 0.3rem;
}

/* Responsive Design for Enrollment Page */
@media (max-width: 768px) {
    .enrollment-section {
        padding: 6rem 1rem 2rem;
    }
    
    .enrollment-title {
        font-size: 2rem;
    }
    
    .progress-container {
        margin-bottom: 2rem;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .program-options {
        grid-template-columns: 1fr;
    }
    
    .btn-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .enrollment-title {
        font-size: 1.8rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .program-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}