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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav {
    padding: 1rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #94d44c;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #94d44c;
    border-bottom-color: #94d44c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #94d44c, #d4bf4c);
    color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(148, 212, 76, 0.3);
}

.btn-secondary {
    background-color: #333;
    color: #ffffff;
    border: 1px solid #555;
}

.btn-secondary:hover {
    background-color: #444;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #94d44c;
    border: 2px solid #94d44c;
}

.btn-outline:hover {
    background-color: #94d44c;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #94d44c, #d4bf4c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: #222;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(148, 212, 76, 0.1), rgba(212, 191, 76, 0.1));
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Grid Layouts */
.about-grid,
.products-grid,
.achievements-grid,
.reviews-grid,
.payment-delivery-grid,
.values-grid,
.team-grid,
.commitment-grid,
.faq-grid,
.while-waiting-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.about-grid,
.payment-delivery-grid,
.values-grid,
.team-grid,
.commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.faq-grid,
.while-waiting-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card Styles */
.about-item,
.product-category,
.payment-delivery-item,
.value-item,
.team-member,
.commitment-item,
.faq-item,
.waiting-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-item:hover,
.product-category:hover,
.payment-delivery-item:hover,
.value-item:hover,
.team-member:hover,
.commitment-item:hover,
.waiting-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(148, 212, 76, 0.2);
}

.about-item img,
.product-category img,
.payment-delivery-item img,
.value-item img,
.team-member img,
.commitment-item img,
.waiting-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(148, 212, 76, 0.2);
}

.product-image {
    padding: 2rem;
    text-align: center;
    background-color: #333;
}

.product-image img {
    width: 80px;
    height: 80px;
}

.product-info {
    padding: 1.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 1rem 0;
}

.product-rating img {
    width: 16px;
    height: 16px;
}

.product-rating span {
    margin-left: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #94d44c;
    margin-top: 1rem;
}

/* Achievements */
.achievement {
    text-align: center;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 12px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #94d44c;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Reviews */
.review {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars img {
    width: 20px;
    height: 20px;
}

.review p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #ffffff;
}

.review-author {
    color: #94d44c;
    font-weight: 600;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section,
.contact-info-section {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
}

/* Form Styles */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 8px;
    background-color: #333;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #94d44c;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item img {
    width: 30px;
    height: 30px;
    margin-top: 0.25rem;
}

.contact-info-item h3 {
    margin-bottom: 0.5rem;
    color: #94d44c;
}

/* Map Placeholder */
.map-placeholder {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-placeholder img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.map-info h3 {
    color: #94d44c;
    margin-bottom: 1rem;
}

/* Catalog Navigation */
.catalog-nav {
    background-color: #222;
    padding: 2rem 0;
    z-index: 100;
}

.catalog-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.catalog-nav-link {
    padding: 0.75rem 1.5rem;
    border: 2px solid #94d44c;
    border-radius: 25px;
    color: #94d44c;
    font-weight: 600;
    transition: all 0.3s ease;
}

.catalog-nav-link:hover {
    background-color: #94d44c;
    color: #1a1a1a;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text {
    order: 1;
}

.content-image {
    order: 2;
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 12px;
}

.legal-section h2,
.legal-section h3 {
    color: #94d44c;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.company-info,
.contact-info {
    background-color: #333;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Thank You Page */
.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.thank-you-details {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.next-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.step-number {
    background: linear-gradient(135deg, #94d44c, #d4bf4c);
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #94d44c;
}

.contact-urgence {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-urgent-info {
    margin-top: 1rem;
}

.contact-item {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Social Links */
.social-follow {
    text-align: center;
    margin: 2rem 0;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link img {
    width: 40px;
    height: 40px;
}

/* Cookie Management */
.cookie-management {
    text-align: center;
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #94d44c;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #94d44c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    border-top: 3px solid #94d44c;
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    padding: 2rem;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    color: #94d44c;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option span {
    color: #cccccc;
    font-size: 0.9rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-text {
        order: 2;
    }

    .content-image {
        order: 1;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .catalog-nav-links {
        gap: 1rem;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .social-links-large {
        gap: 1rem;
    }

    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    body {
    word-break: break-word;}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #94d44c;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link {
        border-bottom-width: 3px;
    }
}
