/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #faf9f7, #ffffff, #f5f3f0);
    position: relative;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(5deg);
    }
    66% {
        transform: translateY(15px) rotate(-5deg);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

@keyframes progress-bar {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Animated Background Elements */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: #1e3a8a;
    top: -10%;
    left: -5%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: #ff6b35;
    top: 60%;
    left: 80%;
    animation: float 25s ease-in-out infinite;
    animation-delay: 3s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background-color: #1e3a8a;
    top: 40%;
    left: 70%;
    animation: float 22s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background-color: #ff6b35;
    top: 80%;
    left: 10%;
    animation: float 18s ease-in-out infinite;
    animation-delay: 2s;
}

/* Gradient Orb */
.gradient-orb {
    pointer-events: none;
    position: fixed;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
    background: radial-gradient(circle, rgba(255,107,53,0.4) 0%, rgba(30,58,138,0.2) 50%, transparent 70%);
    transition: transform 0.3s ease-out;
    z-index: 1;
}

/* Geometric Decorations */
.geometric-decoration {
    position: absolute;
    pointer-events: none;
}

.deco-1 {
    top: 80px;
    right: 80px;
    width: 128px;
    height: 128px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    animation: spin-slow 20s linear infinite;
}

.deco-2 {
    bottom: 160px;
    left: 80px;
    width: 96px;
    height: 96px;
    border: 4px solid rgba(30, 58, 138, 0.2);
    border-radius: 50%;
    animation: pulse-animation 3s ease-in-out infinite;
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    gap: 8px;
    z-index: 50;
}

.lang-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #1e3a8a;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.lang-btn:hover {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.lang-btn.active {
    background: linear-gradient(to right, #1e3a8a, #2563eb);
    color: white;
    box-shadow: 0 10px 15px rgba(30, 58, 138, 0.3);
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.logo-wrapper {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ff6b35, #1e3a8a);
    border-radius: 24px;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse-animation 4s ease-in-out infinite;
    transition: opacity 0.5s;
}

.logo-wrapper:hover .logo-glow {
    opacity: 0.5;
}

.logo-container {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.logo-wrapper:hover .logo-container {
    transform: scale(1.05);
}

.logo {
    height: 96px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
}

/* Hero Section */
.hero-section {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto 80px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, rgba(255, 107, 53, 0.1), rgba(30, 58, 138, 0.1));
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 9999px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.sparkle-icon {
    color: #ff6b35;
    animation: sparkle 2s ease-in-out infinite;
}

.coming-soon-badge span {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(to right, #ff6b35, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, #1e3a8a, #2563eb, #1e3a8a);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 8s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 300;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.subtitle-underline {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, transparent, #ff6b35, transparent);
    border-radius: 9999px;
}

/* Progress Section */
.progress-section {
    max-width: 672px;
    margin: 0 auto 80px;
}

.progress-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    position: relative;
    height: 12px;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1e3a8a, #ff6b35, #1e3a8a);
    animation: progress-bar 2s ease-in-out infinite;
}

.progress-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

/* Features Grid */
.features-grid {
    max-width: 1280px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.feature-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(to bottom right, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 0 0 0 100%;
    transform: translate(32px, -32px);
    transition: transform 0.5s;
}

.feature-bg-accent.accent-blue {
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.2), transparent);
}

.feature-card:hover .feature-bg-accent {
    transform: translate(32px, -32px) scale(1.5);
}

.feature-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.icon-blue {
    background: linear-gradient(to bottom right, #1e3a8a, #2563eb);
}

.icon-orange {
    background: linear-gradient(to bottom right, #ff6b35, #ff8c5a);
}

.feature-icon svg {
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(6deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 4px;
}

.title-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 48px;
    height: 4px;
    background: #ff6b35;
    border-radius: 9999px;
}

.feature-desc {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Contact Section */
.contact-section {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}

.contact-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.05), rgba(255, 107, 53, 0.05), rgba(30, 58, 138, 0.05));
    border-radius: 24px;
    filter: blur(40px);
}

.contact-container {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.contact-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1e3a8a, #ff6b35, #1e3a8a);
    border-radius: 9999px;
    margin: 0 auto 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, white, #f9fafb);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.05), rgba(255, 107, 53, 0.05));
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon svg {
    color: white;
}

.contact-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-value {
    color: #1e3a8a;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value:hover {
    color: #ff6b35;
}

/* Social Section */
.social-section {
    text-align: center;
}

.social-title {
    color: #4b5563;
    margin-bottom: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.social-blue {
    background: linear-gradient(to bottom right, #1e3a8a, #2563eb);
}

.social-orange {
    background: linear-gradient(to bottom right, #ff6b35, #ff8c5a);
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.social-link:hover.social-blue {
    background: linear-gradient(to bottom right, #ff6b35, #ff8c5a);
}

.social-link:hover.social-orange {
    background: linear-gradient(to bottom right, #1e3a8a, #2563eb);
}

.social-link svg {
    position: relative;
    z-index: 10;
    color: white;
}

.social-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-link:hover .social-overlay {
    opacity: 0.2;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 64px;
}

.footer-text {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Animation Classes */
.animate-fade-in-down {
    animation: fade-in-down 1.2s ease-out;
}

.animate-slide-up {
    animation: slide-up 1s ease-out 0.3s both;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #1e3a8a, #ff6b35);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff6b35, #1e3a8a);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .container {
        padding: 32px 16px;
    }

    .language-switcher {
        top: 16px;
        right: 16px;
        gap: 4px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .logo {
        height: 64px;
    }

    .logo-container {
        padding: 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .coming-soon-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-desc {
        font-size: 1rem;
    }

    .contact-container {
        padding: 24px;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-item {
        padding: 16px;
    }

    .deco-1,
    .deco-2 {
        display: none;
    }

    .floating-shape {
        filter: blur(60px);
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
    }

    .shape-4 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}