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

:root {
    --primary-blue: #404F62;
    --primary-purple: #404F62;
    --primary-cyan: #404F62;
    --gradient-primary: #404F62;
    --gradient-secondary: #404F62;
    --gradient-tertiary: #404F62;
    --gradient-accent: #404F62;
    --dark-bg: #0f1419;
    --dark-card: #1a1f2e;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --blur-glass: blur(16px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #404F62;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: #404F62;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2500px;
    height: 2000px;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 1;
    opacity: 0.7;
   
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    backdrop-filter: var(--blur-glass);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #404F62;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: #404F62;
    font-weight: 700;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
}

.btn-primary {
    background: #404F62;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

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

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: var(--blur-glass);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

/* About Us Section */
.about {
    padding: 120px 0;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 16px;
    backdrop-filter: var(--blur-glass);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

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

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.about-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 400px;
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--blur-glass);
    box-shadow: var(--shadow-large);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 79, 98, 0.8), rgba(15, 20, 25, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    border-radius: 24px;
}

.about-badge-img {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--blur-glass);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-primary);
    animation: float-badge 3s ease-in-out infinite;
}

.about-badge-img span {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-img h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #404F62;
}

.about-badge-img p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.team-cards {
    display: none;
}

/* Application Steps Section - Flow Design */
.application-steps-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f29 100%);
    position: relative;
}

.application-steps {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #404F62;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.steps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.steps-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-flow-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 79, 98, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 220px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step-flow-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #404F62;
    box-shadow: 0 15px 30px rgba(64, 79, 98, 0.3);
}

.step-flow-icon {
    width: 60px;
    height: 60px;
    background: #404F62;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(64, 79, 98, 0.4);
}

.step-flow-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: #404F62;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.step-flow-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.step-flow-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.step-flow-arrow {
    font-size: 1.5rem;
    color: #404F62;
    font-weight: bold;
    margin: 0 10px;
    opacity: 0.7;
}

/* Remove old step card styles - keeping for backward compatibility */
.step-card, .step-header, .step-visual, .step-number-large, .step-icon, .step-arrow-icon, .step-icon-header {
    display: none;
}

/* Steps Apply Button */
.steps-apply-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.steps-apply-btn {
    background: #404F62;
    color: #fff;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(64, 79, 98, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.steps-apply-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(64, 79, 98, 0.5);
    background: #4a5a70;
}

.steps-apply-btn .btn-icon {
    transition: transform 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.steps-apply-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Services Section */
.services {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f29 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 28px;
    padding: 40px 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 79, 98, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 79, 98, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #404F62;
    box-shadow: 0 25px 50px rgba(64, 79, 98, 0.3);
}

.service-bullet {
    width: 12px;
    height: 12px;
    background: #404F62;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
    position: relative;
    box-shadow: 0 0 15px rgba(64, 79, 98, 0.6);
}

.service-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #404F62;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.service-text {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    flex: 1;
}

.services-action {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.services-btn {
    background: linear-gradient(135deg, #404F62, #4a5a70);
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(64, 79, 98, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

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

.services-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(64, 79, 98, 0.6);
    background: linear-gradient(135deg, #4a5a70, #404F62);
}

.services-btn .btn-icon {
    transition: transform 0.4s ease;
    font-size: 20px;
    font-weight: bold;
}

.services-btn:hover .btn-icon {
    transform: translateX(6px);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f29 100%);
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #404F62;
    box-shadow: 0 20px 40px rgba(64, 79, 98, 0.2);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.partner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.partner-item:hover .partner-logo {
    transform: scale(1.1);
}

.partner-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

/* Events Section */
.events {
    padding: 80px 0;
    background: #0f1419;
    position: relative;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(64, 79, 98, 0.4);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.event-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #404F62;
    box-shadow: 0 20px 40px rgba(64, 79, 98, 0.3);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 85px;
    height: 85px;
    background: #404F62;
    border-radius: 16px;
    margin-right: 24px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(64, 79, 98, 0.4);
}

.date-day {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.9;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.event-description {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 16px 0;
    line-height: 1.6;
    font-size: 1rem;
}

.event-location {
    color: #404F62;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(64, 79, 98, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
    width: fit-content;
}

/* Events Banner */
.events-banner {
    background: linear-gradient(rgba(64, 79, 98, 0.8), rgba(64, 79, 98, 0.9)), url('event-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 32px;
    margin: 40px 0 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(64, 79, 98, 0.3);
    min-height: 150px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.banner-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.banner-text p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 1.5;
}

.banner-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.banner-btn .btn-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
    font-weight: bold;
}

.banner-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.cta-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1991px;
    height: 1305px;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: rgba(15, 20, 25, 0.8);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: 24px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-image {
        height: 300px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .step-card {
        width: 100%;
        max-width: 400px;
        min-height: 180px;
    }
    
    .steps-title {
        font-size: 2rem;
    }
    
    .step-header h4 {
        font-size: 1rem;
        max-width: 250px;
    }
    
    .step-number-large {
        font-size: 3rem;
    }
    
    .step-icon {
        width: 70px;
        height: 50px;
    }
    
    .events-banner {
        padding: 24px;
        margin: 30px 0 40px 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-icon {
        font-size: 2.5rem;
    }
    
    .banner-text h3 {
        font-size: 1.3rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    .banner-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .services-list {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .service-text {
        font-size: 1rem;
    }
    
    .services-action {
        margin-top: 32px;
    }
    
    .services-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--dark-bg);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #404F62;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #404F62;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px 0;
}

.legal-section p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-section ul {
    margin: 16px 0 16px 30px;
    color: var(--text-secondary);
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section em {
    color: #404F62;
    font-style: italic;
}

.legal-section a {
    color: #404F62;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    border-bottom-color: #404F62;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
} 