/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Status Messages */
.status-message {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    z-index: 1000;
    max-width: 400px;
    box-shadow: var(--elevation-2);
    animation: slideIn 0.3s ease-out;
}

.status-success {
    background: var(--secondary);
}

.status-error {
    background: #ef4444;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--on-surface);
    min-height: 100vh;
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-content {
    max-width: 1152px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.header .logo-image {
    height: 70px;
    width: auto;
    filter: invert(1);
    transition: filter 0.3s ease;
    /* Remove white/light backgrounds */
    background: transparent;
    /* Alternative: Use mix-blend-mode to remove backgrounds */
    mix-blend-mode: multiply;
    /* Ensure transparency is preserved */
    image-rendering: -webkit-optimize-contrast;
}

.header .logo-image:hover {
    filter: invert(0.8);
}

/* Alternative background removal methods - uncomment the one that works best for your logo */

/* Method 1: For white backgrounds - use this if the above doesn't work */
/*
.logo-image {
    filter: invert(1) brightness(1.2) contrast(1.2);
    background: transparent;
}
*/

/* Method 2: For solid color backgrounds - replace #ffffff with your background color */
/*
.logo-image {
    filter: invert(1) drop-shadow(0 0 0 transparent);
    background: transparent;
    mix-blend-mode: screen;
}
*/

/* Method 3: For complex backgrounds - more aggressive approach */
/*
.logo-image {
    filter: invert(1) saturate(0) brightness(1.5) contrast(2);
    background: transparent;
    mix-blend-mode: difference;
}
*/

.logo-text {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #1a1a1a;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(139, 92, 246, 0.1);
}

.menu-icon {
    width: 20px;
    height: 20px;
}

.nav-mobile {
    display: none;
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 1rem 1rem;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-link-mobile {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.nav-link-mobile:hover {
    color: #1a1a1a;
    background: rgba(139, 92, 246, 0.1);
}

.nav-link-mobile.link-cta {
    background: #1a1a1a;
    color: white;
    text-align: center;
    font-weight: 600;
}

.nav-link-mobile.link-cta:hover {
    background: #2a2a2a;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #fef7ed 0%,
        #fdf2f8 50%,
        #fef3c7 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, rgba(57, 73, 171, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 64rem;
    padding: 2rem 0;
}

.hero-badge {
    margin-bottom: 2rem;
}

.badge-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero .logo-image {
    width: 16rem;
    height: 16rem;
    margin: 0 auto;
    object-fit: contain;
}

.hero-title {
    font-size: 4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-social-proof {
    margin-top: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.rating-icon {
    font-size: 1rem;
    color: #fbbf24;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 1.75rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.08s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    box-shadow: 0 4px 14px rgba(26, 26, 26, 0.15);
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

.btn-primary:hover {
    background: #2a2a2a;
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.2);
    transform: translateY(-1px);
}

.btn-tonal {
    background: color-mix(in srgb, var(--primary) 12%, white);
    color: var(--on-surface);
    box-shadow: var(--elevation-1);
}

.btn-tonal:hover {
    background: color-mix(in srgb, var(--primary) 16%, white);
}

.btn-outline {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    font-weight: 500;
}

.btn-outline:hover {
    background: #f9fafb;
    color: #374151;
    border-color: #9ca3af;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.link-cta {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.link-cta:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

/* Surfaces */
.card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.tonal-card {
    background: color-mix(in srgb, var(--primary) 8%, white);
    border: 1px solid var(--outline);
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        #faf8f5 0%,
        #f5f3f0 50%,
        #f0ede8 100%
    );
    position: relative;
    margin-top: 80px; /* Account for fixed header */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.05) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.stat-circle::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%,
        rgba(139, 92, 246, 0.08) 100%
    );
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(57, 73, 171, 0.05) 0%,
        var(--background) 30%,
        rgba(0, 150, 136, 0.03) 70%,
        var(--background) 100%
    );
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--outline), transparent);
}

.about::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, 
        rgba(255, 193, 7, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.mission-card {
    background: white;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.mission-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.vision-card {
    background: white;
    border: 1px solid rgba(236, 72, 153, 0.1);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.vision-card::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        rgba(236, 72, 153, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.mission-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

.vision-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.2);
}

.card-content {
    padding: 0;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.025em;
}

.card-icon {
    color: #8b5cf6;
    flex-shrink: 0;
}

.vision-card .card-icon {
    color: #ec4899;
}

.card-title::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: #8b5cf6;
    border-radius: 2px;
}

.vision-card .card-title::before {
    background: #ec4899;
}

.card-text {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.04) 0%,
        white 100%
    );
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.04) 0%,
        white 100%
    );
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.04) 0%,
        white 100%
    );
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tertiary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
    color: #8b5cf6;
}

.feature-card:nth-child(2) .feature-icon svg {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.feature-card:nth-child(3) .feature-icon svg {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.feature-card:nth-child(4) .feature-icon svg {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    background: #8b5cf6;
    color: white;
}

.feature-card:nth-child(2):hover .feature-icon svg {
    background: #ec4899;
    color: white;
}

.feature-card:nth-child(3):hover .feature-icon svg {
    background: #22c55e;
    color: white;
}

.feature-card:nth-child(4):hover .feature-icon svg {
    background: #fbbf24;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.feature-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: #fafafa;
}

.events-section {
    margin-bottom: 4rem;
}

.events-section:last-child {
    margin-bottom: 0;
}

.events-section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.events-grid {
    display: grid;
    gap: 1.5rem;
}

.event-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.event-image {
    position: relative;
    aspect-ratio: 16/9;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-content {
    padding: 2rem;
}

.event-title {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.event-details {
    margin-bottom: 1rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.event-detail svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.event-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.btn-event {
    width: 100%;
    background: #1a1a1a;
    color: white;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-event:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.past-events-grid {
    display: grid;
    gap: 1.5rem;
}

.past-event-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.past-event-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.past-event-content {
    padding: 0;
}

.past-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.past-event-title {
    font-size: 1.125rem;
    color: #000;
    font-weight: 700;
}

.past-event-badge {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.past-event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.past-event-date svg {
    width: 16px;
    height: 16px;
}

.past-event-description {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.team-member {
    background: white;
    border-radius: 0.625rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--elevation-1);
    border: 1px solid var(--outline);
    transition: box-shadow 0.2s ease;
}

.team-member:hover {
    box-shadow: var(--elevation-2);
}

.member-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
}

.member-name {
    font-size: 1.125rem;
    color: #000;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.member-role {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.member-email {
    color: var(--primary);
    font-size: 0.875rem;
    text-decoration: none;
}

.member-email:hover {
    text-decoration: underline;
}

.member-bio {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    border-radius: 0.625rem;
    padding: 2rem;
    box-shadow: var(--elevation-1);
    border: 1px solid var(--outline);
}

.form-title {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: #f9fafb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
}

/* Form Page Styles */
.form-page {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
    background: linear-gradient(135deg, 
        #fef7ed 0%,
        #fdf2f8 50%,
        #fef3c7 100%
    );
}

@media (max-width: 767px) {
    .form-page {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }
}

@media (max-width: 360px) {
    .form-page {
        margin-top: 65px;
        min-height: calc(100vh - 65px);
    }
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .form-container {
        padding: 0 0.5rem;
    }
}

/* Form Alerts */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
}

.form-alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #ef4444;
}

.alert-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-alert-success .alert-icon {
    background: #10b981;
    color: white;
}

.form-alert-error .alert-icon {
    background: #ef4444;
    color: white;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.alert-message {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* WhatsApp Join Section */
.whatsapp-join-section {
    margin: 1.5rem 0;
}

.whatsapp-join-card {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.1) 0%,
        rgba(37, 211, 102, 0.05) 100%
    );
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-join-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-content {
    flex: 1;
}

.whatsapp-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.whatsapp-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20c55a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
}

.success-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Form Info Card */
.form-info-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: none;
}

@media (max-width: 767px) {
    .form-info-card {
        padding: 1.5rem;
        border-radius: 1rem;
        margin-bottom: 1.5rem;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-main-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (max-width: 767px) {
    .form-main-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

.form-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.benefit-card {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.05) 0%,
        rgba(139, 92, 246, 0.02) 100%
    );
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #8b5cf6;
}

.benefit-title {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 600;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: none;
}

@media (max-width: 767px) {
    .form-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

.form-title {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (max-width: 767px) {
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Mobile form layout - single column */
@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.2s ease;
    color: #1a1a1a;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1rem;
}

@media (max-width: 767px) {
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Event Details */
.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 0.75rem;
}

.event-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    flex-shrink: 0;
}

.event-detail-content {
    flex: 1;
}

.event-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.event-detail-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.event-notices {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.event-notice-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: #92400e;
}

.event-notice-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.event-notice-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

.btn-submit:hover {
    background: var(--primary-hover);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 0.625rem;
    padding: 1.5rem;
    box-shadow: var(--elevation-1);
    border: 1px solid var(--outline);
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon svg {
    width: 1rem;
    height: 1rem;
}

.contact-card-title {
    font-size: 1.125rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-card-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-card-info {
    color: #000;
    margin-bottom: 0.25rem;
}

.contact-card-description {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Dark CTA Section */
.dark-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        #1a1a1a 0%,
        #2a2a2a 50%,
        #1a1a1a 100%
    );
    position: relative;
    overflow: hidden;
}

.dark-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, 
        rgba(57, 73, 171, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.dark-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dark-cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dark-cta-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.dark-cta-btn {
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.dark-cta-btn:hover {
    background: #f9fafb;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.dark-cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dark-cta-feature {
    text-align: center;
}

.dark-cta-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.dark-cta-feature-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dark-cta-feature-desc {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #0b1020;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 20rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .header .logo-image {
        height: 80px;
    }
}

@media (max-width: 767px) {
    .header .logo-image {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .header .logo-image {
        height: 50px;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
}

@media (max-width: 360px) {
    .header .logo-image {
        height: 45px;
    }
    
    .hero {
        padding-top: 65px; /* Even smaller header on very small screens */
    }
    
    .stats-section {
        margin-top: 65px; /* Even smaller header on very small screens */
    }
}

/* Mobile-first responsive design - ensure single column on mobile */
@media (max-width: 767px) {
    .hero {
        padding-top: 70px; /* Smaller header on mobile */
    }
    
    .stats-section {
        margin-top: 70px; /* Smaller header on mobile */
    }
    
    .nav-mobile {
        margin-top: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .nav-mobile-content {
        gap: 0.5rem;
    }
    
    .nav-link-mobile {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .whatsapp-join-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-title {
        font-size: 1.125rem;
    }
    
    .whatsapp-description {
        font-size: 0.9rem;
    }
    
    .btn-whatsapp {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Tablet breakpoint */
@media (min-width: 768px) and (max-width: 1023px) {
    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }
}