/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Çok koyu gradient tema */
    --primary-color: #434190;
    --primary-dark: #2d3748;
    --primary-light: #4c51bf;
    --secondary-color: #2d3748;
    --secondary-dark: #1a202c;
    --accent-color: #553c9a;
    --accent-dark: #44337a;
    --text-color: #0f1419;
    --light-text: #2d3748;
    --bg-light: #cbd5e0;
    --bg-dark: #a0aec0;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 12px rgba(67, 65, 144, 0.35);
    --shadow-hover: 0 8px 24px rgba(67, 65, 144, 0.45);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Roboto', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(to bottom, #cbd5e0 0%, #a0aec0 30%, #718096 100%);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Selector */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    grid-column: 3;
    justify-self: end;
    flex-shrink: 0;
}

.language-selector {
    display: flex;
    gap: 3px;
    background: var(--bg-light);
    padding: 3px;
    border-radius: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--white);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(67, 65, 144, 0.5);
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
    width: 100%;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    overflow: visible;
    width: auto;
    position: relative;
    grid-column: 1;
    justify-self: start;
}

.logo a {
    display: flex;
    align-items: center;
    overflow: visible;
    position: relative;
    width: 100%;
    height: 100%;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transition: var(--transition);
    display: block;
    transform: translateX(0);
    max-width: 100%;
    flex-shrink: 0;
}

.logo img:hover {
    transform: translateX(0) scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    grid-column: 2;
    justify-self: center;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }
}

.nav-menu li {
    animation: fadeInDown 0.5s ease both;
    opacity: 0;
}

.nav-menu li.animated {
    opacity: 1;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #2d3070 0%, #3a3e85 20%, #474c9a 40%, #545aaf 50%, #474c9a 70%, #3a3e85 85%, #2d3070 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(84, 90, 175, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(71, 76, 154, 0.15) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1s ease;
    padding: 40px 20px;
    text-align: center;
}


.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease 0.3s both;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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 slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.5s both;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease 0.7s both;
    letter-spacing: 4px;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease 0.9s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-buttons .btn {
    animation: scaleIn 0.6s ease 1.2s both;
    opacity: 0;
}

.hero-buttons .btn.animated {
    opacity: 1;
}

.hero-buttons .btn:nth-child(1) { animation-delay: 1.2s; }
.hero-buttons .btn:nth-child(2) { animation-delay: 1.4s; }

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(67, 65, 144, 0.5);
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 8px 30px rgba(67, 65, 144, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    animation: fadeInUp 1s ease 1.3s both;
}

.stat-box {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease both;
    opacity: 0;
}

.section-title.animated {
    opacity: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
    opacity: 1;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    opacity: 0;
}

.section-subtitle.animated {
    opacity: 1;
}

/* Hero Video Section */
.hero-video {
    background: linear-gradient(to bottom, #cbd5e0 0%, #a0aec0 50%, #718096 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(67, 65, 144, 0.3);
    animation: fadeInUp 0.8s ease both;
    opacity: 0;
    border: 2px solid rgba(67, 65, 144, 0.2);
}

.hero-video-wrapper.animated {
    opacity: 1;
}

.hero-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, #cbd5e0 0%, #a0aec0 50%, #718096 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background:         radial-gradient(circle, rgba(67, 65, 144, 0.18) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(85, 60, 154, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.about-content {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.about-text {
    width: 100%;
    max-width: 900px;
    animation: fadeInLeft 0.8s ease both;
    opacity: 0;
}

.about-text.animated {
    opacity: 1;
}

.about-card {
    background: var(--white);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 6px 20px rgba(67, 65, 144, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(67, 65, 144, 0.3);
    animation: fadeInUp 0.8s ease 0.3s both;
    opacity: 0;
}

.about-card.animated {
    opacity: 1;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(67, 65, 144, 0.5);
    animation: iconPulse 3s ease-in-out infinite;
}

.about-icon svg {
    width: 40px;
    height: 40px;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 20px rgba(67, 65, 144, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(67, 65, 144, 0.6); }
}

.about-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    animation: fadeInUp 0.6s ease 0.4s both;
    opacity: 0;
}

.about-card-title.animated {
    opacity: 1;
}

.about-card-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--light-text);
    margin-bottom: 40px;
    text-align: center;
    animation: fadeInUp 0.6s ease 0.5s both;
    opacity: 0;
}

.about-description.animated {
    opacity: 1;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    animation: fadeInRight 0.6s ease both;
    opacity: 0;
}

.feature-item.animated {
    opacity: 1;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

.feature-item:hover {
    background: linear-gradient(to right, rgba(67, 65, 144, 0.15) 0%, transparent 100%);
    border-left-color: var(--secondary-dark);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(67, 65, 144, 0.35);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(67, 65, 144, 0.4);
}

.feature-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    flex: 1;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-color);
    font-weight: 500;
}


.production-info {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.production-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.production-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.production-items li {
    padding: 15px;
    background: var(--white);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
    text-align: center;
}

.production-items li:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Products Section */
.products {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.featured-product {
    border: 2px solid var(--primary-color);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.seo-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.seo-highlight p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.seo-highlight strong {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
    animation: fadeInUp 0.5s ease both;
    opacity: 0;
}

.product-content.animated h3 {
    opacity: 1;
}

.product-content p {
    color: var(--light-text);
    line-height: 1.6;
    animation: fadeInUp 0.5s ease 0.2s both;
    opacity: 0;
}

.product-content.animated p {
    opacity: 1;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(to bottom, #a0aec0 0%, #718096 50%, #4a5568 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    pointer-events: none;
}

.gallery .section-title {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery .section-title::after {
    background: linear-gradient(to right, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    opacity: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(67, 65, 144, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(67, 65, 144, 0.4);
    background: var(--white);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 65, 144, 0.2) 0%, rgba(85, 60, 154, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(67, 65, 144, 0.45);
    border-color: var(--secondary-dark);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.05);
}

.load-more {
    display: block;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.load-more:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Videos Section */
.videos {
    background: linear-gradient(to bottom, #cbd5e0 0%, #a0aec0 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.video-item {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: var(--black);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #a0aec0 0%, #718096 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(67, 65, 144, 0.3);
    animation: fadeInLeft 0.6s ease both;
    opacity: 0;
}

.contact-item.animated {
    opacity: 1;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.3s; }
.contact-item:nth-child(3) { animation-delay: 0.5s; }

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(67, 65, 144, 0.4);
    background: linear-gradient(to right, rgba(67, 65, 144, 0.15) 0%, transparent 100%);
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
    animation: slideInRight 0.5s ease both;
    opacity: 0;
}

.contact-item.animated h3 {
    opacity: 1;
}

.contact-item p {
    color: var(--light-text);
    line-height: 1.8;
    animation: fadeIn 0.6s ease 0.2s both;
    opacity: 0;
}

.contact-item.animated p {
    opacity: 1;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-note {
    margin-top: 10px;
    text-align: center;
    color: var(--light-text);
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #0f1419 0%, #000000 100%);
    color: var(--white);
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px
        );
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    animation: fadeInUp 0.6s ease both;
    opacity: 0;
}

.footer-section.animated {
    opacity: 1;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeIn 0.6s ease 0.5s both;
    opacity: 0;
}

.footer-bottom.animated {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 100px;
        width: auto;
    }
}

@media (max-width: 1200px) {
    .videos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 100px;
        width: auto;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-video {
        padding: 40px 0;
    }

    .hero-video-wrapper {
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(67, 65, 144, 0.25);
        border: 2px solid rgba(67, 65, 144, 0.15);
    }

    .hero-video-wrapper video {
        border-radius: 15px;
    }

    .navbar {
        padding: 0.75rem 0;
        position: relative;
    }

    .navbar .container {
        position: relative;
        padding: 0 15px;
    }

    .nav-wrapper {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        padding: 0;
        align-items: center;
        position: relative;
    }

    .logo {
        flex-shrink: 0;
        z-index: 1001;
    }

    .logo img {
        height: 65px;
        width: auto;
        max-width: 150px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 20px 0;
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
    }

    .nav-menu a {
        display: block;
        padding: 15px 25px;
        font-size: 1rem;
        white-space: normal;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-color);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(67, 65, 144, 0.1);
        color: var(--primary-color);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-right {
        gap: 10px;
        align-items: center;
        flex-shrink: 0;
    }

    .language-selector {
        gap: 3px;
        padding: 2px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 10px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Menu overlay - controlled by JavaScript */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-box {
        min-width: 100px;
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-card {
        padding: 40px 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .production-items {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .hero-video {
        padding: 30px 0;
    }

    .hero-video-wrapper {
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(67, 65, 144, 0.2);
        border: 2px solid rgba(67, 65, 144, 0.15);
    }

    .hero-video-wrapper video {
        border-radius: 10px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        padding: 0 10px;
    }

    .nav-wrapper {
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        padding: 0;
    }

    .logo img {
        height: 55px;
        width: auto;
        max-width: 120px;
    }

    .nav-menu {
        width: 85%;
        max-width: 280px;
        padding: 70px 0 20px 0;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .nav-right {
        gap: 6px;
    }

    .language-selector {
        gap: 2px;
        padding: 2px;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 8px;
    }

    .hamburger {
        padding: 6px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-box {
        width: 100%;
        min-width: auto;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-card-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .language-selector {
    right: auto;
    left: 20px;
}

[dir="rtl"] .contact-item {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}
