/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00D1D1;
    --primary-dark: #00A8A8;
    --primary-light: #00F5F5;
    --dark-gray: #0F0F0F;
    --medium-gray: #1A1A1A;
    --light-gray: #2D2D2D;
    --text-light: #F5F5F5;
    --text-gray: #AAAAAA;
    --accent-color: #FF6B6B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-gray);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 209, 209, 0.05);
    animation: float 15s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-duration: 20s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: 5s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: 7s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 15%;
    animation-duration: 17s;
    animation-delay: 10s;
}

.shape-6 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 40%;
    animation-duration: 19s;
    animation-delay: 3s;
}

.shape-7 {
    width: 130px;
    height: 130px;
    top: 15%;
    right: 35%;
    animation-duration: 21s;
    animation-delay: 6s;
}

.shape-8 {
    width: 160px;
    height: 160px;
    bottom: 25%;
    left: 60%;
    animation-duration: 23s;
    animation-delay: 4s;
}

.shape-9 {
    width: 140px;
    height: 140px;
    top: 40%;
    left: 80%;
    animation-duration: 24s;
    animation-delay: 8s;
}

.shape-10 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: 30%;
    animation-duration: 26s;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 20px) rotate(90deg);
    }
    50% {
        transform: translate(0, 40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, 20px) rotate(270deg);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-gray);
    box-shadow: 0 5px 15px rgba(0, 209, 209, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 209, 209, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-gray);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 209, 209, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 209, 209, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 209, 209, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 209, 209, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 209, 209, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 209, 209, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s forwards;
}

.title-word-1 { animation-delay: 0.3s; }
.title-word-2 { animation-delay: 0.6s; }
.title-word-3 { animation-delay: 0.9s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px 20px;
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 209, 209, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 209, 209, 0.1), transparent);
    transition: left 0.6s;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 209, 209, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 209, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 209, 209, 0.3);
    transition: all 0.3s ease;
}

.stat:hover .stat-icon {
    background: var(--primary-color);
    color: var(--dark-gray);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.4;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 209, 209, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 209, 209, 0.3);
    animation: floatElement 8s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 40%;
    right: 25%;
    animation-delay: 3s;
}

.element-5 {
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(-5px, -25px) rotate(-5deg);
    }
    75% {
        transform: translate(-15px, -10px) rotate(5deg);
    }
}

/* Script Carousel */
.script-carousel {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 209, 209, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    padding: 25px;
    box-sizing: border-box;
    text-align: center;
}

.carousel-slide.active {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.carousel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.carousel-features span {
    background: rgba(0, 209, 209, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.carousel-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.carousel-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-actions .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.carousel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--dark-gray);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 209, 209, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.5);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 209, 209, 0.1);
    transition: all 0.4s ease;
    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, 209, 209, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 209, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--dark-gray);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Scripts Section */
.scripts {
    padding: 100px 0;
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.script-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 209, 209, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.script-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 209, 209, 0.1), transparent);
    transition: left 0.6s;
}

.script-card:hover::before {
    left: 100%;
}

.script-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.script-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 209, 209, 0.3);
}

.script-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.script-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.8));
}

.script-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.script-card:hover .script-image img {
    transform: scale(1.1);
}

.script-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.script-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.script-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.2;
}

.script-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.script-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.script-features span {
    background: rgba(0, 209, 209, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 209, 209, 0.2);
}

.script-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    gap: 15px;
    flex-shrink: 0;
}

.script-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 100px;
    text-align: left;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 209, 209, 0.3);
}

.script-card .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.script-actions {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.script-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    min-width: 130px;
    justify-content: center;
    height: 44px;
}

.script-actions .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.5s;
}

.script-actions .btn:hover::before {
    left: 100%;
}

.script-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-gray);
    box-shadow: 0 5px 15px rgba(0, 209, 209, 0.3);
}

.script-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 209, 209, 0.4);
}

.script-actions .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.script-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 209, 209, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.5);
}

.service-tabs {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 209, 209, 0.1);
}

.tab-header {
    display: flex;
    background: rgba(26, 26, 26, 0.8);
    border-bottom: 1px solid rgba(0, 209, 209, 0.1);
}

.tab-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    width: 100%;
}

.tab-button i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tab-button span {
    font-weight: 500;
}

.tab-content {
    padding: 40px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tab-panel p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.tab-panel ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tab-panel li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.tab-panel i {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 209, 209, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 209, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-gray);
}

.contact-form-container {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(0, 209, 209, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.form-group textarea + i {
    top: 25px;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: rgba(15, 15, 15, 0.9);
    padding: 70px 0 20px;
    border-top: 1px solid rgba(0, 209, 209, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 209, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-gray);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form .btn {
    padding: 12px 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--medium-gray);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 209, 209, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 209, 209, 0.2);
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color);
    background: rgba(255, 107, 107, 0.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--dark-gray);
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.image-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: rgba(15, 15, 15, 0.8);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-nav-btn:hover {
    background: var(--primary-color);
    color: var(--dark-gray);
}

.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 15, 15, 0.8);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-price-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.modal-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.modal-info p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-features span {
    background: rgba(0, 209, 209, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-specs h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.modal-specs ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.modal-specs li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.modal-actions .btn {
    flex: 1;
    justify-content: center;
}

.carousel-image {
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--dark-gray);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback für fehlende Bilder */
.script-image:empty::before,
.carousel-image:empty::before {
    content: "📷 No Image";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-gray);
    font-size: 0.9rem;
    background: var(--light-gray);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    background: rgba(0, 209, 209, 0.1);
    border: 1px solid rgba(0, 209, 209, 0.3);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: space-between;
}

.lang-btn:hover {
    background: rgba(0, 209, 209, 0.2);
    border-color: var(--primary-color);
}

.lang-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.lang-btn.active i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--medium-gray);
    border: 1px solid rgba(0, 209, 209, 0.2);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: none;
    margin-top: 5px;
}

.lang-dropdown.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.lang-option {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
}

.lang-option:hover {
    background: rgba(0, 209, 209, 0.1);
    color: var(--primary-color);
}

.lang-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    font-size: 1rem;
}

.lang-name {
    flex: 1;
    font-size: 0.9rem;
}

.lang-code {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Navigation with language selector */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-main {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* ==================== */
/* MOBILE OPTIMIZATIONS */
/* ==================== */

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .scripts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Base Layout */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation - COMPLETELY REDONE */
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: var(--dark-gray) !important;
        flex-direction: column !important;
        padding: 80px 30px 30px !important;
        transition: 0.4s ease !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.8) !important;
        z-index: 1001 !important;
        gap: 0 !important;
        margin: 0 !important;
        justify-content: flex-start !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-link {
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 100% !important;
        font-size: 1.1rem !important;
        display: block !important;
        text-align: left !important;
        margin: 0 !important;
    }
    
    .nav-link.nav-login-btn {
        margin-top: 20px !important;
        background: var(--primary-color) !important;
        color: var(--dark-gray) !important;
        padding: 12px 20px !important;
        border-radius: 25px !important;
        text-align: center !important;
        border: none !important;
        font-weight: 600 !important;
    }
    
    .nav-indicator {
        display: none !important;
    }
    
    /* Hamburger Animation */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: var(--primary-color);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: var(--primary-color);
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 30px !important;
        min-height: auto !important;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 15px;
        justify-content: center;
    }
    
    .stat {
        min-width: calc(50% - 15px);
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    /* Scripts Grid */
    .scripts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-top: 30px;
    }
    
    .script-card {
        margin: 0 5px;
    }
    
    .script-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .script-price {
        text-align: center;
        order: -1;
        font-size: 1.8rem;
    }
    
    .script-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .script-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* About Section */
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    /* Services Tabs */
    .tab-header {
        flex-direction: column;
    }
    
    .tab-button {
        flex: none;
        padding: 15px;
        flex-direction: row;
        gap: 15px;
        justify-content: flex-start;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .tab-panel ul {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Carousel */
    .script-carousel {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .carousel-slide {
        padding: 20px 15px;
    }
    
    .carousel-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .carousel-actions .btn {
        width: 100%;
    }
    
    /* Modal */
    .modal-body {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .modal-image img {
        height: 200px;
    }
    
    /* Language Selector Mobile */
    .language-selector {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    
    .lang-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lang-dropdown {
        width: 100%;
        right: auto;
        left: 0;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .stat {
        min-width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.7rem !important;
    }
    
    .script-price {
        font-size: 1.6rem;
    }
    
    .carousel-slide {
        padding: 15px 10px;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Touch Optimizations for Mobile */
@media (max-width: 768px) {
    .btn, 
    .nav-link,
    .lang-btn,
    .carousel-btn,
    .carousel-dot,
    .image-nav-btn,
    .modal-close {
        min-height: 44px;
        min-width: 44px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px 12px 12px 45px;
    }
}

/* Mobile Test Indicator - Remove this after testing */
.mobile-test {
    display: none;
}

@media (max-width: 768px) {
    .mobile-test {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        background: red;
        color: white;
        padding: 10px;
        z-index: 9999;
        font-size: 14px;
        border-radius: 5px;
    }
}

@media (max-width: 768px) {
    .language-selector select {
        display: none;
    }
}

@media (max-width: 768px) {
    .language-selector {
        position: relative;
        width: 100%;
        margin: 10px 0;
    }
    
    .lang-btn {
        width: 100%;
        justify-content: center;
        background: rgba(0, 209, 209, 0.1);
        border: 1px solid rgba(0, 209, 209, 0.3);
        color: var(--text-light);
        padding: 12px 20px;
        border-radius: 25px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        min-height: 44px;
    }
    
    .lang-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--medium-gray);
        border: 1px solid rgba(0, 209, 209, 0.2);
        border-radius: 10px;
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        z-index: 1001;
        display: none;
        margin-top: 5px;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .lang-dropdown.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .lang-option {
        padding: 12px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-light);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        min-height: 44px;
    }
    
    .lang-option:last-child {
        border-bottom: none;
    }
    
    .lang-option:hover {
        background: rgba(0, 209, 209, 0.1);
        color: var(--primary-color);
    }
    
    .current-lang-name {
        font-size: 0.9rem;
    }
    
    /* Im Mobile Menu */
    .nav-menu.active .language-selector {
        order: -1;
        margin-bottom: 20px;
    }
}

/* Desktop Language Selector */
@media (min-width: 769px) {
    .language-selector {
        position: relative;
    }
    
    .lang-btn {
        background: rgba(0, 209, 209, 0.1);
        border: 1px solid rgba(0, 209, 209, 0.3);
        color: var(--text-light);
        padding: 8px 15px;
        border-radius: 25px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
        min-width: 120px;
        justify-content: space-between;
        min-height: 44px;
    }
    
    .lang-btn:hover {
        background: rgba(0, 209, 209, 0.2);
        border-color: var(--primary-color);
    }
    
    .lang-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--medium-gray);
        border: 1px solid rgba(0, 209, 209, 0.2);
        border-radius: 10px;
        padding: 10px 0;
        min-width: 180px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        z-index: 1001;
        display: none;
        margin-top: 5px;
    }
    
    .lang-dropdown.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .lang-option {
        padding: 10px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-light);
        text-decoration: none;
        min-height: 44px;
    }
    
    .lang-option:hover {
        background: rgba(0, 209, 209, 0.1);
        color: var(--primary-color);
    }
}