
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    color: #333;
    background: #000;
}

/* Advanced 3D Background */
.scene-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.ocean-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.3;
}

.ocean-wave:nth-child(1) {
    background: radial-gradient(ellipse at center, rgba(0, 183, 255, 0.3) 0%, transparent 50%);
    animation: wave1 25s ease-in-out infinite;
}

.ocean-wave:nth-child(2) {
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.2) 0%, transparent 60%);
    animation: wave2 20s ease-in-out infinite reverse;
}

.ocean-wave:nth-child(3) {
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    animation: wave3 30s ease-in-out infinite;
}

@keyframes wave1 {
    0%, 100% { transform: translate(-25%, -25%) rotate(0deg) scale(1); }
    25% { transform: translate(-30%, -20%) rotate(90deg) scale(1.1); }
    50% { transform: translate(-25%, -25%) rotate(180deg) scale(1); }
    75% { transform: translate(-20%, -30%) rotate(270deg) scale(0.9); }
}

@keyframes wave2 {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1.2); }
    33% { transform: translate(-45%, -55%) rotate(120deg) scale(1); }
    66% { transform: translate(-55%, -45%) rotate(240deg) scale(1.3); }
}

@keyframes wave3 {
    0%, 100% { transform: translate(-40%, -40%) rotate(0deg) scale(1.1); }
    50% { transform: translate(-60%, -60%) rotate(180deg) scale(0.9); }
}

/* Advanced Particle System */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(0,183,255,0.5) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(1px);
    animation: floatParticle 15s infinite;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(20px, -10vh) scale(1);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translate(100px, -110vh) scale(0.5);
        opacity: 0;
    }
}

/* Bubbles */
.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(0,183,255,0.3));
    border-radius: 50%;
    animation: floatBubble 12s infinite ease-in-out;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5), 0 0 20px rgba(0,183,255,0.3);
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
        transform: translateY(-10vh) translateX(10px) scale(1);
    }
    50% {
        transform: translateY(-60vh) translateX(-30px) scale(1.2);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-120vh) translateX(20px) scale(0.8);
        opacity: 0;
    }
}

/* Hero Section with 3D perspective */
.hero {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    perspective: 1000px;
}

.hero-content {
    z-index: 10;
    padding: 20px;
    transform-style: preserve-3d;
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00b7ff, #00fff7, #00b7ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, floatTitle 4s ease-in-out infinite;
    text-shadow: 0 0 80px rgba(0, 183, 255, 0.5);
    filter: drop-shadow(0 0 30px rgba(0, 255, 247, 0.7));
    letter-spacing: 5px;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes floatTitle {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.5s forwards;
    text-shadow: 0 0 20px rgba(0, 183, 255, 0.5);
    font-weight: 300;
    letter-spacing: 2px;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ultra Premium CTA Button */
.cta-button {
    display: inline-block;
    padding: 22px 55px;
    background: linear-gradient(135deg, #00b7ff 0%, #00fff7 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow:
            0 0 40px rgba(0, 183, 255, 0.6),
            0 10px 40px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 1s forwards;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 3px;
    background: linear-gradient(135deg, #00fff7, #00b7ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
            0 0 60px rgba(0, 255, 247, 0.8),
            0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-button:hover::after {
    opacity: 1;
}

/* Animated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    animation: mouseFloat 2s ease-in-out infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(0, 255, 247, 0.8);
    border-radius: 2px;
    animation: mouseScroll 2s ease-in-out infinite;
}

@keyframes mouseFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes mouseScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Features Section with Glass Morphism */
.features {
    padding: 120px 20px;
    background: rgba(10, 10, 30, 0.8);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00fff7, #00b7ff, #8a2be2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: bold;
    letter-spacing: 3px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 80px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    perspective: 2000px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(100px) rotateX(20deg) scale(0.9);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent,
    rgba(0, 255, 247, 0.1),
    transparent
    );
    transition: left 0.8s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 247, 0.1), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.feature-card:hover::after {
    width: 500px;
    height: 500px;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.05) rotateY(5deg);
    box-shadow:
            0 30px 80px rgba(0, 183, 255, 0.4),
            0 0 60px rgba(0, 255, 247, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 255, 247, 0.5);
}

.feature-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 255, 247, 0.5));
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.feature-card:hover .feature-icon {
    animation: iconSpin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 30px rgba(0, 255, 247, 0.8));
}

@keyframes iconSpin {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #00fff7;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 255, 247, 0.5);
    letter-spacing: 1px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Stats Section with Counter Animation */
.stats-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(0, 183, 255, 0.3));
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 100px,
                    rgba(255, 255, 255, 0.03) 100px,
                    rgba(255, 255, 255, 0.03) 101px
            );
    animation: slideGrid 20s linear infinite;
}

@keyframes slideGrid {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: scale(0) rotateY(180deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 247, 0.1), transparent 70%);
    animation: rotateStat 8s linear infinite;
}

@keyframes rotateStat {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-item.visible {
    opacity: 1;
    transform: scale(1) rotateY(0);
}

.stat-item:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 247, 0.3);
    border-color: rgba(0, 255, 247, 0.5);
}

.stat-number {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00fff7, #00b7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 255, 247, 0.5));
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

/* Benefits with Advanced 3D Cards */
.benefits {
    padding: 120px 20px;
    background: rgba(10, 10, 30, 0.9);
    backdrop-filter: blur(20px);
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(0, 183, 255, 0.2) 0%, transparent 50%);
    animation: rotateBackground 30s linear infinite;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(-150px) rotateY(-90deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

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

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

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 247, 0.15), rgba(0, 183, 255, 0.1));
    transform: translateX(15px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 247, 0.3);
    border-color: rgba(0, 255, 247, 0.5);
}

.benefit-item.visible {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 247, 0.5));
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.benefit-item:hover .benefit-icon {
    animation: iconRotate 0.6s ease-in-out;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.3); }
}

/* Final CTA with Holographic Effect */
.cta-section {
    padding: 150px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4), rgba(0, 183, 255, 0.4));
    backdrop-filter: blur(30px);
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 255, 247, 0.03) 2px,
                    rgba(0, 255, 247, 0.03) 4px
            );
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.cta-section h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #fff, #00fff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 255, 247, 0.5));
    animation: titlePulse 3s ease-in-out infinite;
    letter-spacing: 3px;
}

@keyframes titlePulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(0, 255, 247, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(0, 255, 247, 0.8)); }
}

.cta-section p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 183, 255, 0.5);
    letter-spacing: 1px;
}

.cta-button-final {
    display: inline-block;
    padding: 25px 60px;
    background: linear-gradient(135deg, #00fff7, #00b7ff, #8a2be2);
    background-size: 200% auto;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.5s ease;
    box-shadow:
            0 0 60px rgba(0, 255, 247, 0.6),
            0 15px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    animation: buttonFloat 4s ease-in-out infinite, shimmer 3s linear infinite;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes buttonFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.cta-button-final:hover {
    transform: translateY(-10px) scale(1.15) rotateZ(2deg);
    box-shadow:
            0 0 100px rgba(0, 255, 247, 1),
            0 25px 70px rgba(0, 0, 0, 0.5);
    animation: none;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .stat-number {
        font-size: 3.5rem;
    }
    .cta-section h2 {
        font-size: 2.5rem;
    }
    .features-grid, .stats-grid, .benefits-list {
        grid-template-columns: 1fr;
    }
}


/* Contact Form Section */
.contact-section {
    padding: 120px 20px;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(30px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 30% 30%, rgba(0, 255, 247, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    animation: rotateBackground 30s linear infinite;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-family: 'Source Sans 3', sans-serif;
    transition: all 0.4s ease;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: rgba(0, 255, 247, 0.5);
    background: rgba(0, 255, 247, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.2);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 15px;
    font-size: 0.9rem;
    color: #00fff7;
    background: rgba(10, 10, 30, 0.9);
    padding: 0 8px;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00fff7, #00b7ff);
    transition: width 0.4s ease;
}

.form-group input:focus ~ .input-border,
.form-group textarea:focus ~ .input-border {
    width: 100%;
}

.submit-button {
    grid-column: 1 / -1;
    padding: 20px 50px;
    background: linear-gradient(135deg, #00fff7, #00b7ff);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Source Sans 3', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow:
            0 0 40px rgba(0, 255, 247, 0.5),
            0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
            0 0 60px rgba(0, 255, 247, 0.8),
            0 20px 60px rgba(0, 0, 0, 0.4);
}

.submit-button:active {
    transform: translateY(-2px) scale(1.02);
}

.button-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(10px);
}

.form-message {
    grid-column: 1 / -1;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 20px;
    display: none;
    animation: slideDown 0.5s ease;
}

.form-message.success {
    background: rgba(0, 255, 150, 0.1);
    border: 1px solid rgba(0, 255, 150, 0.3);
    color: #00ff96;
    display: block;
}

.form-message.error {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    color: #ff6b6b;
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update Media Queries */
@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}


/* Screenshot Section */
.screenshots-section {
    padding: 120px 20px;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(30px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle at 30% 50%, rgba(0, 255, 247, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    animation: rotateBackground 40s linear infinite;
}

/*.screenshots-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));*/
/*    gap: 40px;*/
/*    margin-top: 80px;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 στήλες σταθερά */
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .screenshots-grid {
        grid-template-columns: 1fr; /* 1 στήλη σε μικρές οθόνες */
    }
}

.screenshot-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.screenshot-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.screenshot-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(0, 255, 247, 0.2);
    border: 2px solid rgba(0, 255, 247, 0.3);
    transition: all 0.5s ease;
    background: linear-gradient(135deg, rgba(0, 183, 255, 0.1), rgba(138, 43, 226, 0.1));
}

.screenshot-wrapper:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow:
            0 30px 80px rgba(0, 255, 247, 0.4),
            0 0 60px rgba(0, 255, 247, 0.4);
    border-color: rgba(0, 255, 247, 0.6);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.screenshot-wrapper:hover .screenshot-img {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            transparent 100%
    );
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.screenshot-wrapper:hover .screenshot-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    color: #00fff7;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 247, 0.6);
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Animation delays για staggered effect */
.screenshot-card:nth-child(1) { transition-delay: 0.1s; }
.screenshot-card:nth-child(2) { transition-delay: 0.2s; }
.screenshot-card:nth-child(3) { transition-delay: 0.3s; }
.screenshot-card:nth-child(4) { transition-delay: 0.4s; }
.screenshot-card:nth-child(5) { transition-delay: 0.5s; }
.screenshot-card:nth-child(6) { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .screenshot-overlay {
        transform: translateY(0);
        background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.7) 70%,
                transparent 100%
        );
    }
}


/* Video Section */
.video-section {
    padding: 120px 20px;
    background: rgba(10, 10, 30, 0.85);
    backdrop-filter: blur(25px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle at 25% 25%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(0, 183, 255, 0.2) 0%, transparent 50%);
    animation: rotateBackground 35s linear infinite;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.video-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.video-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.video-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow:
            0 30px 80px rgba(0, 255, 247, 0.4),
            0 0 60px rgba(0, 255, 247, 0.3);
    border-color: rgba(0, 255, 247, 0.5);
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    transition: transform 0.3s ease;
}

.video-card:hover .video-player {
    transform: scale(1.05);
}

.video-info {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(0, 183, 255, 0.1), rgba(138, 43, 226, 0.1));
}

.video-info h3 {
    font-size: 1.4rem;
    color: #00fff7;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 247, 0.5);
    font-weight: bold;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Video Card Animation Delays */
.video-card:nth-child(1) { transition-delay: 0.1s; }
.video-card:nth-child(2) { transition-delay: 0.2s; }
.video-card:nth-child(3) { transition-delay: 0.3s; }
.video-card:nth-child(4) { transition-delay: 0.4s; }
.video-card:nth-child(5) { transition-delay: 0.5s; }
.video-card:nth-child(6) { transition-delay: 0.6s; }

/* Custom Video Controls Styling */
.video-player::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.video-player::-webkit-media-controls-play-button,
.video-player::-webkit-media-controls-timeline {
    filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-info {
        padding: 20px;
    }

    .video-info h3 {
        font-size: 1.2rem;
    }
}