:root {
    --color-primary: #11e0b6;
    --color-secondary: #0cbff0;
    --color-dark: #173251;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pattern-bg {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNiIgc3Ryb2tlPSIjMTFlMGI2IiBzdHJva2Utb3BhY2l0eT0iLjEiLz48L2c+PC9zdmc+");
}

.animate-pulse-slow {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.mobile-menu.open {
    max-height: 500px;
    opacity: 1;
}

.header-fade-in {
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-fade-in-right {
    animation: fadeInRight 0.8s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.floating-orb {
    animation: float 4s ease-in-out infinite;
}

.floating-orb-2 {
    animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.step-card {
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.screenshot-card {
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px);
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

/* Language Dropdown Styles */
#language-dropdown,
#mobile-language-dropdown {
    animation: fadeInDown 0.2s ease-out;
    display: block !important;
}

#language-dropdown.hidden,
#mobile-language-dropdown.hidden {
    display: none !important;
}

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

.language-option:hover,
.mobile-language-option:hover {
    background-color: rgba(17, 224, 182, 0.1);
}

/* Ensure dropdown container doesn't clip */
#language-dropdown-container,
#mobile-language-dropdown-container {
    position: relative;
    z-index: 50;
}

/* Rotate chevron when dropdown is open */
#language-toggle.active i.fa-chevron-down,
#mobile-language-toggle.active i.fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

