/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Simple Image Styles */
.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
    margin-bottom: 5px;
}

.director-img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.highlight-img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-up:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-slide-up:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-slide-up:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 0.75rem;
    border: 1px solid rgba(71, 85, 105, 0.5);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-bg-1 {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(59, 130, 246, 0.1);
}

.hero-bg-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(139, 92, 246, 0.1);
    animation-delay: 1s;
}

.hero-bg-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32rem;
    height: 32rem;
    background: rgba(99, 102, 241, 0.05);
    animation: spin 20s linear infinite;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 9999px;
    margin-bottom: 2rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-badge svg {
    color: #3b82f6;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    border: 1px solid #475569;
    color: #cbd5e1;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: #64748b;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.section-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.section-bg-1 {
    top: 0;
    left: 33%;
    width: 18rem;
    height: 18rem;
    background: rgba(59, 130, 246, 0.05);
}

.section-bg-2 {
    bottom: 0;
    right: 33%;
    width: 24rem;
    height: 24rem;
    background: rgba(139, 92, 246, 0.05);
}

.section-bg-3 {
    top: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(139, 92, 246, 0.08);
    animation: pulse 4s ease-in-out infinite;
}

.section-bg-4 {
    bottom: 33%;
    left: 20%;
    width: 16rem;
    height: 16rem;
    background: rgba(59, 130, 246, 0.08);
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.section-bg-5 {
    top: 33%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.05);
}

.section-bg-6 {
    bottom: 25%;
    right: 33%;
    width: 20rem;
    height: 20rem;
    background: rgba(139, 92, 246, 0.05);
}

.section-bg-7 {
    top: 25%;
    left: 25%;
    width: 18rem;
    height: 18rem;
    background: rgba(59, 130, 246, 0.08);
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.section-bg-8 {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(139, 92, 246, 0.08);
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: 0.5s;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-title {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-title {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-title {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.vision-divider {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
}

.mission-divider {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.contact-divider {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #0f172a;
}

/* Director Section */
.director-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.director-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1.5rem;
}

.director-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.director-text p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(30, 41, 59, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    color: #3b82f6;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #8b5cf6;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #dbeafe;
}

.feature-description {
    color: #94a3b8;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #cbd5e1;
}

.about-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(71, 85, 105, 0.5));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(100, 116, 139, 0.5);
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-highlight.full-width {
    text-align: left;
    width: 100%;
    max-width: none;
    /* margin-left: calc(-50vw + 50%); */
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 3rem;
    align-items: center;
}

.highlight-text p {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.vision-card {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.4);
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.vision-card:hover {
    background: rgba(71, 85, 105, 0.4);
    border-color: rgba(100, 116, 139, 0.6);
    transform: scale(1.05);
}

.vision-icon {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
    display: inline-block;
}

.vision-card:hover .vision-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    color: #3b82f6;
}

.vision-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.vision-card:hover .vision-card-title {
    color: #e0e7ff;
}

.vision-card-description {
    color: #94a3b8;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.vision-card:hover .vision-card-description {
    color: #cbd5e1;
}

.vision-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(100, 116, 139, 0.3);
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.vision-highlight.full-width {
    text-align: left;
    width: 100%;
    max-width: none;
    /* margin-left: calc(-50vw + 50%); */
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.vision-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.vision-highlight p {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background: #0f172a;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.mission-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.mission-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 1.5rem;
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    background: rgba(30, 41, 59, 0.6);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
    position: relative;
    z-index: 10;
    display: inline-flex;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.blue-gradient {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(14, 165, 233, 0.2));
    color: #3b82f6;
}

.purple-gradient {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    color: #8b5cf6;
}

.green-gradient {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
    color: #22c55e;
}

.orange-gradient {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
    color: #f97316;
}

.mission-card-title {
    position: relative;
    z-index: 10;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.mission-card:hover .mission-card-title {
    color: #dbeafe;
}

.mission-card-description {
    position: relative;
    z-index: 10;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.mission-card:hover .mission-card-description {
    color: #cbd5e1;
}

.mission-card-link {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mission-card:hover .mission-card-link {
    color: #8b5cf6;
}

.mission-card-link svg {
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-card-link svg {
    transform: translateX(4px);
}

.mission-highlight {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(71, 85, 105, 0.5));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(100, 116, 139, 0.5);
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.mission-highlight.full-width {
    text-align: left;
    width: 100%;
    max-width: none;
    /* margin-left: calc(-50vw + 50%); */
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.mission-highlight h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.mission-highlight p {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mission-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mission-cta:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(30, 41, 59, 0.6);
    transform: translateY(-8px);
}

.contact-info-icon {
    display: inline-flex;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 1rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-info-content {
    font-size: 1.125rem;
    color: #60a5fa;
    margin-bottom: 0.25rem;
}

.contact-info-description {
    color: #94a3b8;
    font-size: 0.875rem;
}

.contact-form-container {
    max-width: 32rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-form {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1.5rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1.5rem;
}

.success-message svg {
    color: #22c55e;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #cbd5e1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(71, 85, 105, 0.5);
    border: 1px solid #475569;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
    color: #ef4444;
    font-size: 0.875rem;
}

.error-message::before {
    content: '⚠';
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    position: relative;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
}

.footer-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.footer-bg-1 {
    top: 0;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(59, 130, 246, 0.05);
}

.footer-bg-2 {
    bottom: 0;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(139, 92, 246, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 10;
}

.footer-brand {
    max-width: 24rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    padding: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
    color: white;
}

.footer-logo-text {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.75rem;
    font-size: 1.25rem;
    text-decoration: none;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(71, 85, 105, 0.5);
    border-color: rgba(100, 116, 139, 0.5);
    transform: scale(1.1);
    color: #3b82f6;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-item svg:nth-child(1) { color: #3b82f6; }
.footer-contact-item:nth-child(2) svg { color: #8b5cf6; }
.footer-contact-item:nth-child(3) svg { color: #6366f1; }

.contact-label {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    position: relative;
    z-index: 10;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-heart {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #64748b;
    font-size: 0.875rem;
}

.footer-heart svg {
    color: #ef4444;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        padding: 6rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .vision-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .director-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .director-img,
    .highlight-img {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .about-highlight.full-width,
    .vision-highlight.full-width,
    .mission-highlight.full-width {
        margin-left: 0;
        margin-right: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none; }
.visible { display: block; }

/* Focus States for Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .section-bg-element {
        display: none;
    }
    
    .hero-bg-element {
        display: none;
    }
    
    .footer-bg-element {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}