/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    top: 0px !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-primary {
    background: rgba(159, 226, 191, 0.9);
    color: #333;
    border-color: #9FE2BF;
}

.btn-primary:hover {
    background: rgba(159, 226, 191, 1);
    box-shadow: 0 8px 25px rgba(159, 226, 191, 0.4);
}

.btn-secondary {
    background: rgba(64, 224, 208, 0.9);
    color: #333;
    border-color: #40E0D0;
}

.btn-secondary:hover {
    background: rgba(64, 224, 208, 1);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.4);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Icons */
.icon-phone:before { content: "📞"; }
.icon-email:before { content: "✉️"; }
.icon-location:before { content: "📍"; }
.icon-clock:before { content: "🕒"; }
.icon-check:before { content: "✅"; }
.icon-cog:before { content: "⚙️"; }
.icon-facebook:before { content: "📘"; }
.icon-linkedin:before { content: "💼"; }
.icon-instagram:before { content: "📸"; }

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-bar {
    background-color: rgba(159, 226, 191, 0.9);
    color: #333;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 20px;
}

.language-switcher .lang-form {
    margin: 0;
}

.lang-select {
    background-color: transparent;
    color: #333;
    border: 1px solid rgba(0,0,0,0.3);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 14px;
}

.lang-select option {
    background-color: #9FE2BF;
    color: #333;
}

/* Main Navigation */
.main-nav {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-list li {
    position: relative;
    margin: 0 10px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: rgb(255, 0, 0);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #9FE2BF;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 20px;
}

.nav-list.active .dropdown-content {
    position: static;
    box-shadow: none;
    padding: 10px 0;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.hero-text {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-text h1 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideIn 1.2s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideIn 1.4s ease-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideIn 1.5s ease-out;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideIn 1.6s ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top: 8px solid #ffffff;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #9FE2BF;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    width: 100vw;
    height: 100vh;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #f8f9fa;
}

.products-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    color: #9FE2BF;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.product-link {
    color: #9FE2BF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.product-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9FE2BF;
    transition: width 0.3s ease;
}

.product-link:hover::after {
    width: 100%;
}

.product-link:hover {
    color: #80C7A1;
}

/* Assortment Section */
.assortment-section {
    width: 100vw;
    height: 100vh;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.assortment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.assortment-text h2 {
    color: #9FE2BF;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.assortment-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 35px;
    line-height: 1.7;
}

.assortment-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.assortment-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.assortment-image:hover img {
    transform: scale(1.05);
}

/* Contact CTA Section */
.contact-cta-section {
    width: 100vw;
    height: 100vh;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, #9FE2BF 0%, #40E0D0 100%);
    color: #333;
    text-align: center;
}

.contact-cta-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Styles */
.footer {
    background-color: #9FE2BF;
    color: #333;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.footer-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #333;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #40E0D0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #333;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #555;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #333;
}

/* Messages Container */
.messages-container {
    padding: 20px 0;
}

.alert {
    position: relative;
    padding: 15px 40px 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f8f9fa;
    color: #333;
    font-size: 1rem;
}

.alert-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-text {
        padding: 50px 40px;
    }
    .hero-text h1 { 
        font-size: 3.5rem; 
    }
}

@media (max-width: 1024px) {
    .hero-text {
        padding: 40px 30px;
    }
    .hero-text h1 { 
        font-size: 3rem; 
    }
    .hero-subtitle { 
        font-size: 1.2rem; 
    }
    .section-header h2 { 
        font-size: 2rem; 
    }
    .assortment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .assortment-images {
        grid-template-columns: 1fr;
    }
    .assortment-image img {
        height: 300px;
    }
    .hero-features {
        gap: 20px;
    }
    .feature-item {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-list {
        display: none;
    }
    .nav-list.active {
        display: flex;
    }
    
    .hero {
        height: 100vh;
        margin-top: 80px;
    }
    
    .hero-text {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .hero-text h1 { 
        font-size: 2.5rem; 
        margin-bottom: 20px;
    }
    
    .hero-subtitle { 
        font-size: 1.1rem; 
        margin-bottom: 30px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        padding: 14px 28px;
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 { 
        font-size: 1.8rem; 
    }
    .section-header p { 
        font-size: 1rem; 
    }
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    .contact-info span {
        margin-right: 10px;
        font-size: 12px;
    }
    .lang-select {
        font-size: 12px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 12px;
    }
    
    .products-section,
    .contact-cta-section {
        height: auto;
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text {
        padding: 25px 20px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .hero-text h1 { 
        font-size: 2rem; 
        margin-bottom: 15px;
    }
    
    .hero-subtitle { 
        font-size: 1rem; 
        margin-bottom: 25px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 20px;
    }
    
    .section-header h2 { 
        font-size: 1.6rem; 
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .hero-video video {
        image-rendering: crisp-edges;
    }
}