/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: local('Oswald');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Caveat';
    src: local('Caveat');
    font-weight: 400;
    font-style: normal;
}

:root {
    --color-bg: #2b1d3b;
    --color-accent1: #aaff00;
    --color-accent2: #ff006e;
    --color-text-primary: #ffffff;
    --color-text-secondary: #d0d8f7;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-accent: 'Caveat', cursive;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-accent1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent2);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--color-accent1), var(--color-accent2));
    color: var(--color-bg);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--color-bg);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(43, 29, 59, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(170, 255, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-primary);
}

.logo span {
    color: var(--color-accent1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(170, 255, 0, 0.15), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 0, 110, 0.15), transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Wave dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: var(--color-bg);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: rgba(43, 29, 59, 0.8);
}

.about-us {
    position: relative;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(170, 255, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card h3 {
    color: var(--color-accent1);
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    background-color: var(--color-bg);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent1);
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    background-color: rgba(43, 29, 59, 0.8);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
    font-size: 1.2rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-accent1);
}

/* FAQ Section */
.faq {
    background-color: var(--color-bg);
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    background: rgba(170, 255, 0, 0.1);
    padding: 1rem;
    display: block;
    position: relative;
    cursor: pointer;
}

.accordion-header label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    cursor: pointer;
}

.accordion-header label::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked ~ .accordion-content {
    max-height: 500px;
    padding: 1rem;
}

input[type="checkbox"]:checked ~ .accordion-header label::after {
    transform: rotate(45deg);
}

/* Order Form */
.order-form-section {
    background-color: rgba(43, 29, 59, 0.8);
    position: relative;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(170, 255, 0, 0.2);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    transform: skewY(-2deg);
}

.form-container > * {
    transform: skewY(2deg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--color-accent1);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(170, 255, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
}

/* Fix for select options - dark background with light text */
select.form-control option {
    background-color: var(--color-bg);
    color: var(--color-text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent1);
    box-shadow: 0 0 0 3px rgba(170, 255, 0, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    display: inline-block;
    margin-right: 0.5rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: rgba(27, 18, 37, 1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 1000;
    border: 1px solid rgba(170, 255, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cookie-popup h3 {
    margin-bottom: 1rem;
    color: var(--color-accent1);
}

.cookie-popup p {
    margin-bottom: 1.5rem;
}

.cookie-popup form {
    display: inline-block;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Certifications Slider */
.cert-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
}

.cert-track {
    display: flex;
    width: 300%;
    animation: slide 30s linear infinite;
}

.cert-item {
    width: calc(100% / 9);
    padding: 1rem;
    text-align: center;
}

.cert-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.cert-item:hover img {
    transform: scale(1.05);
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-66.6666%); }
}

/* Media queries */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .cert-item {
        width: calc(100% / 6);
    }
    
    @keyframes slide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cert-item {
        width: calc(100% / 3);
    }
    
    .cert-track {
        width: 600%;
    }
    
    @keyframes slide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .benefit-card,
    .product-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .container {
        width: 95%;
    }
    
    .form-container {
        padding: 1.5rem;
    }
} 