/* 
 * BASINOL Website - Main Stylesheet
 * French version
 */

/* ===== Variables ===== */
:root {
    /* Colors - Refined, Apple-like palette */
    --primary-color: #006C32;
    /* Refined BASINOL Green */
    --primary-light: #1a8a5d;
    /* Lighter Green for subtle elements */
    --primary-dark: #006040;
    /* Darker Green for hover states */
    --secondary-color: #1d1d1f;
    /* Apple-like dark gray for text */
    --light-gray: #f5f5f7;
    /* Apple-like light gray for backgrounds */
    --medium-gray: #e8e8ed;
    /* Medium Gray for borders */
    --subtle-gray: #86868b;
    /* Subtle gray for secondary text */
    --white: #ffffff;
    --black: #000000;
    --error: #ff3b30;
    /* Apple-like red for error messages */
    --success: #34c759;
    /* Apple-like green for success messages */
    --accent-blue: #0071e3;
    /* Apple-like blue for accents */

    /* Typography - Apple-like fonts */
    --font-primary: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-secondary: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing - More generous for minimalist design */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Border Radius - More consistent with Apple design */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;

    /* Box Shadow - More subtle and refined */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-focus: 0 0 0 3px rgba(0, 108, 50, 0.2);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Container Width */
    --container-width: 1200px;
    --container-padding: 1.5rem;
}

/* ===== Base Styles ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', var(--font-primary);
    color: var(--secondary-color);
    line-height: 1.5;
    background-color: var(--white);
    letter-spacing: -0.015em;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.375rem;
}

p {
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-regular);
    color: var(--secondary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: var(--font-weight-medium);
}

a:hover {
    color: var(--primary-dark);
}

ul,
ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
}

/* ===== Layout ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--medium-gray), transparent);
    margin: 0 auto;
    width: 80%;
    max-width: 800px;
}

/* ===== Header ===== */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.15rem;
    transition: background-color var(--transition-medium), box-shadow var(--transition-medium), transform var(--transition-medium);
}

/* Add header scroll effect classes */
.header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.header__logo {
    position: absolute;
    left: var(--container-padding);
    z-index: 101;
}

.header__logo img {
    height: 28px;
    transition: opacity var(--transition-fast);
    border-radius: 0;
    /* no rounded corners */
    padding: 0;
    /* no padding */
    background-color: transparent;
    /* transparent background */
    object-fit: contain;
    /* make sure image fits nicely */
    display: block;
    /* remove any inline spacing issues */
}

.header__logo img:hover {
    opacity: 0.9;
}

.header__nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 220px;
    /* Increased space for logo to push nav items right */
    /* Space for logo */
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-md);
    /* Reduced spacing between nav items */
    justify-content: flex-end;
    margin-right: 1rem;
    /* Add some margin to the right */
}

.nav__item {
    position: relative;
}

.nav__link {
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-xs) var(--spacing-sm);
    position: relative;
    transition: color var(--transition-fast);
    letter-spacing: -0.01em;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link.active {
    color: var(--primary-color);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
    transition: width var(--transition-fast);
}

.nav__link.active:hover::after {
    width: 30px;
}

/* Dropdown Menu Styles */
.nav__item.has-dropdown {
    position: relative;
}


.dropdown {
    position: absolute;
    top: 192%;
    left: 3%;
    right: 0;
    width: 100vw;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg) 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium), transform var(--transition-medium);
    z-index: 100;
    display: flex;
    justify-content: center;
}

.nav__item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: var(--container-width);
    width: 100%;
    padding: 0 var(--container-padding);
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-section {
    margin-bottom: var(--spacing-md);
}

.dropdown-title {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    display: block;
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--medium-gray);
    letter-spacing: -0.02em;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-item {
    margin-bottom: 8px;
}

.dropdown-link {
    display: block;
    padding: var(--spacing-xs) 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    border-radius: var(--border-radius-sm);
}

.dropdown-link:hover {
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--medium-gray);
    margin: var(--spacing-xs) 0;
}

@media (max-width: 992px) {
    .dropdown-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        padding: var(--spacing-md);
        display: none;
        transform: none;
    }

    .nav__item.has-dropdown.active .dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.header__lang {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-left: var(--spacing-md);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast), transform var(--transition-fast);
    border-radius: var(--border-radius-full);
}

.lang-btn:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.lang-btn.active {
    color: var(--white);
    background-color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 101;
    margin-left: var(--spacing-md);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 6px 0;
    border-radius: 1px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    background-color: transparent;
    padding: var(--spacing-sm) 0;
    /* Increased from spacing-xs to spacing-sm */
    border-bottom: none;
    /* Removed border for seamless look */
    margin-bottom: 0;
    /* No margin needed */
    position: absolute;
    /* Position it absolutely */
    width: 100%;
    z-index: 10;
    /* Ensure it's above other content but below header */
    /* Removed blur effect as requested */
    top: 80px;
    /* Position it below the header */
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    /* Align to the right */
    padding-right: var(--spacing-lg);
    /* Add some padding on the right */
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    /* Slightly increased font size */
    color: var(--subtle-gray);
    letter-spacing: 0.02em;
    /* Slightly increased letter spacing for elegance */
    padding: var(--spacing-xs) 0;
    /* Added padding to increase height */
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    /* Changed from / to › for more elegant look */
    margin: 0 var(--spacing-xs);
    /* Reduced spacing */
    color: var(--medium-gray);
}

.breadcrumb a {
    color: var(--subtle-gray);
    transition: color var(--transition-fast);
    opacity: 0.8;
    /* Slightly transparent */
}

.breadcrumb a:hover {
    color: var(--white);
    opacity: 1;
}

.breadcrumb li:last-child {
    color: var(--white);
    font-weight: var(--font-weight-medium);
}

/* ===== Product Breadcrumb ===== */
.product-breadcrumb {
    background-color: transparent;
    padding: var(--spacing-sm) 0;
    border-bottom: none;
    margin-bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 80px;
}

.product-breadcrumb ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    padding-right: var(--spacing-lg);
}

.product-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--subtle-gray);
    letter-spacing: 0.02em;
    padding: var(--spacing-xs) 0;
}

.product-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin: 0 var(--spacing-xs);
    color: var(--medium-gray);
}

.product-breadcrumb a {
    color: var(--subtle-gray);
    transition: color var(--transition-fast);
    opacity: 0.8;
}

.product-breadcrumb a:hover {
    color: var(--primary-color);
    /* Primary color on hover */
    opacity: 1;
}

.product-breadcrumb li:last-child {
    color: var(--primary-color);
    /* Highlight active item */
    font-weight: var(--font-weight-medium);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: none;
    overflow: hidden;
    background-color: var(--black);
    /* Remove any potential margin/padding causing bars */
    margin: 0;
    padding: 0;
}

/* Elegant Hero Section */
.hero--elegant {
    height: 65vh;
    min-height: 550px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: var(--white);
    position: relative;
}

/* Add background color to the section containing the elegant hero */
.hero--elegant-container {
    background-color: var(--white);
    padding: 0;
    width: 100%;
}

.hero--elegant .hero__slider {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero--elegant .hero__slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(50px);
    pointer-events: none;
}

.hero--elegant .hero__slide.active {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
}

.hero--elegant .hero__image {
    position: relative;
    height: 100%;
    width: 100%;
    grid-column: 1;
    overflow: hidden;
}

.hero--elegant .hero__image img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 110%;
    /* Make image slightly bigger */
    transition: transform 0.5s ease;
    margin-left: -5%;
    /* Center the enlarged image */
}

.hero--elegant .hero__slide:hover .hero__image img {
    transform: scale(1.05);
}

.hero--elegant .hero__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    z-index: 1;
}

.hero--elegant .hero__content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: var(--spacing-xl);
    margin-top: 0;
    max-width: 100%;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.hero--elegant .hero__slide.active .hero__content {
    opacity: 1;
    transform: translateY(0);
}

.hero--elegant .hero__content h1 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    text-shadow: none;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.hero--elegant .hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
    opacity: 0.9;
    text-shadow: none;
}

.hero--elegant .hero__controls {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 75%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.hero--elegant .hero__dot {
    width: 10px;
    height: 10px;
    background-color: #cccccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero--elegant .hero__dot:hover {
    background-color: var(--primary-light);
}

.hero--elegant .hero__dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.hero--elegant .hero__nav {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--secondary-color);
}

.hero--elegant .hero__nav:hover {
    background-color: var(--white);
}

@media (max-width: 992px) {
    .hero--elegant {
        max-width: 90%;
    }

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

    .hero--elegant .hero__subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero--elegant {
        height: auto;
        min-height: 600px;
    }

    .hero--elegant .hero__slide {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .hero--elegant .hero__image {
        grid-row: 1;
        grid-column: 1;
        height: 100%;
    }

    .hero--elegant .hero__content {
        grid-row: 2;
        grid-column: 1;
        padding: var(--spacing-lg);
    }

    .hero--elegant .hero__controls {
        left: 50%;
        bottom: var(--spacing-md);
    }

    .hero--elegant .hero__content h1 {
        font-size: 1.8rem;
    }

    .hero--elegant .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }

    .hero--elegant .hero__image::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    }

    /* Mobile dropdown menu adjustments */
    .dropdown {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        padding: 0;
        background-color: rgba(245, 245, 247, 0.5);
    }

    .nav__item.has-dropdown:hover .dropdown {
        transform: none;
    }

    .dropdown-container {
        padding: 0.5rem;
    }

    .dropdown-section {
        margin-bottom: 0.5rem;
    }

    .dropdown-title {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .dropdown-link {
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero--elegant {
        min-height: 550px;
    }

    .hero--elegant .hero__content {
        padding: var(--spacing-md);
    }

    .hero--elegant .hero__content h1 {
        font-size: 1.6rem;
        margin-bottom: var(--spacing-sm);
    }

    /* Additional mobile adjustments for very small screens */
    .header__logo img {
        height: 20px;
        max-width: 140px;
    }

    .header__lang {
        margin-left: 0;
    }

    .lang-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }

    .mobile-menu-toggle {
        padding: 0.25rem;
    }

    .mobile-menu-toggle span {
        width: 20px;
        margin: 4px 0;
    }

    /* Adjust quality badges for small screens */
    .quality-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .quality-badges img {
        width: 60px;
        height: 60px;
    }
}

.hero__slider {
    height: 100%;
    position: relative;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    transform: scale(1.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

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

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    /* Remove any potential margin/padding causing bars */
    margin: 0;
    padding: 0;
    display: block;
}

.hero__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.hero__content {
    text-align: center;
    color: var(--white);
    padding: var(--spacing-lg);
    max-width: 600px;
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: transform var(--transition-medium) 0.3s, opacity var(--transition-medium) 0.3s;
    margin-top: 350px;
}

.hero__slide.active .hero__content {
    transform: translateY(0);
    opacity: 1;
}

.hero__content h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
    font-weight: var(--font-weight-regular);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.01em;
}

.hero__controls {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--white);
    cursor: pointer;
    opacity: 0.5;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.hero__dot:hover {
    opacity: 0.8;
}

.hero__dot.active {
    opacity: 1;
    transform: scale(1.25);
    background-color: transparent;
    border-color: var(--white);
}

/* Hero Navigation Arrows */
.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all var(--transition-medium);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.hero__nav--prev {
    left: var(--spacing-lg);
}

.hero__nav--next {
    right: var(--spacing-lg);
}

.hero__slider:hover .hero__nav {
    opacity: 0.8;
}

.hero__nav:hover {
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.hero__nav:active {
    transform: translateY(-50%) scale(0.95);
}

.hero__nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

@media (max-width: 768px) {
    .hero__nav {
        width: 40px;
        height: 40px;
    }

    .hero__nav--prev {
        left: var(--spacing-md);
    }

    .hero__nav--next {
        right: var(--spacing-md);
    }

    .hero__nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .hero__nav {
        width: 36px;
        height: 36px;
        opacity: 0.8;
        /* Always visible on mobile */
    }

    .hero__nav--prev {
        left: var(--spacing-sm);
    }

    .hero__nav--next {
        right: var(--spacing-sm);
    }
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 750px;
    /* Increased from 500px to 700px */
    height: 80vh;
    /* Added to make it take up more of the viewport */
    display: flex;
    align-items: center;
    margin-top: 0;
    /* Ensure no extra margin at the top */
}

/* ===== Page Hero ===== */
.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    /* Set to 500px for all pages except entreprise */
    height: 60vh;
    /* Reduced from 80vh to 60vh */
    display: flex;
    align-items: center;
    margin-top: 0;
    /* Ensure no extra margin at the top */
}

/* Special styling for entreprise page hero */
.page-hero--entreprise {
    min-height: 750px;
    /* Keep the taller height for entreprise page */
    height: 80vh;
    /* Keep the taller height for entreprise page */
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero__video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero__video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    /* Increased from 100vw to 120vw to show more of the video */
    height: 67.5vw;
    /* Adjusted to maintain 16:9 aspect ratio (120 * 0.5625) */
    /* 16:9 aspect ratio */
    min-height: 120%;
    /* Increased from 100% to 120% */
    min-width: 213.33vh;
    /* Adjusted to maintain 16:9 aspect ratio (120 * 1.7777) */
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Prevents clicks on the video */
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Video Button */
.video-btn {
    margin-top: var(--spacing-lg);
}

.play-video {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-medium);
}

.play-video svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
    transition: all var(--transition-medium);
}

.play-video:hover {
    color: var(--white);
    opacity: 0.9;
}

.play-video:hover svg {
    transform: scale(1.1);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

.page-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    font-weight: var(--font-weight-regular);
}

.page-hero p {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
}

.features-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.page-hero .features-list {
    display: inline-block;
    text-align: left;
    margin-bottom: 0;
}

.page-hero .features-list li {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.page-hero .features-list li::before {
    color: var(--white);
}

/* ===== Welcome Section ===== */
.welcome {
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.welcome h2 {
    margin-bottom: var(--spacing-xs);
}

.welcome .subtitle {
    font-size: 1.25rem;
    color: var(--subtle-gray);
    margin-bottom: var(--spacing-lg);
}

.welcome__content {
    max-width: 800px;
    margin: 0 auto;
}

.welcome__features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 108, 50, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.feature__text {
    font-weight: var(--font-weight-medium);
}

/* ===== Product Categories ===== */
.product-categories {
    background-color: var(--light-gray);
    padding: var(--spacing-xxl) 0;
}

/* Minimalist Product List - Apple-like design */
.minimalist-product-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.minimalist-product-item {
    display: flex;
    align-items: center;
    gap: 2.3rem;
    padding: 1rem 0;
}

.minimalist-product-image {
    flex: 0 0 550px;
    height: 320px;
    overflow: hidden;
}

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

.minimalist-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.minimalist-product-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.minimalist-product-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

.minimalist-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
    font-size: 1rem;
}

.minimalist-product-link:hover {
    color: var(--primary-dark);
}

.minimalist-arrow-icon {
    stroke: var(--primary-color);
    transition: transform 0.2s ease;
}

.minimalist-product-link:hover .minimalist-arrow-icon {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .minimalist-product-item {
        gap: 1rem;
    }

    .minimalist-product-image {
        flex: 0 0 300px;
        height: 300px;
    }

    .minimalist-product-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .minimalist-product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .minimalist-product-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 2.5rem;
    color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.category {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    position: relative;
    display: flex;
    flex-direction: column;
}

.category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2));
}

.category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.category:hover .category__image img {
    transform: scale(1.05);
}

.category__content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category__content h3 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.category__content p {
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.category__content .btn {
    align-self: flex-start;
}

/* ===== Products Overview ===== */
.products-overview {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.product-family {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.product-family-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-family-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    text-align: center;
}

.product-family-overlay h2 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 2rem;
}

.product-family-overlay p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* ===== Products Section ===== */
.products-section {
    padding: var(--spacing-xl) 0;
}

.products-section:nth-child(odd) {
    background-color: var(--light-gray);
}

/* Make text white in product sections with gray background */
.products-section:nth-child(odd) p,
.products-section:nth-child(odd) li,
.products-section:nth-child(odd) ul,
.products-section:nth-child(odd) .feature__text {
    color: var(--white);
}

/* Keep section titles green */
.products-section:nth-child(odd) h2 {
    color: var(--primary-color);
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.product-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-card.reverse .product-card__image {
    order: 2;
}

.product-card.reverse .product-card__content {
    order: 1;
}

.product-card__image {
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: var(--spacing-lg);
}

.product-card__content h2 {
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.product-card__content p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.product-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.product-feature .feature__icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 108, 50, 0.1);
}

.product-feature .feature__text {
    font-size: 1.1rem;
}

/* ===== Team Section ===== */
.team-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-gray);
}

.team-section h2 {
    color: var(--primary-color);
}

.team-section h3 {
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* ===== Company Section ===== */
.company-section {
    padding: var(--spacing-xl) 0;
}

.company-section:nth-child(even) {
    background-color: #f5f5f7;
}

.company-section:nth-child(odd) {
    background-color: var(--white);
}

/* Make text white in company sections with gray background */
.company-section:nth-child(even) p,
.company-section:nth-child(even) li,
.company-section:nth-child(even) ul {
    color: var(--black);
}

/* Keep section titles green */
.company-section:nth-child(even) h2 {
    color: var(--primary-color);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.section-image img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

/* ===== Partners Map ===== */
.partners-map {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-gray);
}

.map-container {
    position: relative;
    margin-top: var(--spacing-lg);
}

.world-map {
    width: 100%;
    border-radius: var(--border-radius-md);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
}

.point-marker {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.point-marker:hover {
    transform: scale(1.2);
}

.region-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.region-btn {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.region-btn:hover {
    background-color: var(--medium-gray);
}

.region-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== Partners List ===== */
.partners-list {
    padding: var(--spacing-xl) 0;
}

.region-content {
    display: none;
    margin-top: var(--spacing-lg);
}

.region-content.active {
    display: block;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.partner-card {
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.partner-logo {
    height: 150px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.partner-info {
    padding: var(--spacing-md);
}

.partner-info h4 {
    margin-bottom: var(--spacing-xs);
}

.partner-info p {
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}

.partner-contact {
    margin-top: var(--spacing-md);
}

.partner-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--light-gray);
    border-radius: var(--border-radius-md);
}

/* ===== News Grid ===== */
.news-filter {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.filter-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--medium-gray);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.news-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.news-item {
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

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

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

.news-content {
    padding: var(--spacing-md);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: #666;
}

.news-item h2 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.page-number,
.page-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 var(--spacing-xs);
    border-radius: var(--border-radius-sm);
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    color: var(--secondary-color);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-next {
    width: auto;
    padding: 0 var(--spacing-md);
}

.page-number:hover,
.page-next:hover {
    background-color: var(--medium-gray);
}

.page-number.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== Newsletter ===== */
.newsletter {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--white);
}

.newsletter-form {
    margin-top: var(--spacing-lg);
}

.form-group {
    display: flex;
    margin-bottom: var(--spacing-md);
}

.form-group input[type="email"] {
    flex: 1;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.form-group .btn {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    /* keeps checkbox aligned to first line of label */
    gap: 0.5rem;
    /* space between checkbox and text */
}

.form-consent input {
    flex-shrink: 0;
    /* prevents checkbox from shrinking */
    margin-top: 2px;
    /* fine-tune vertical alignment */
}

.form-consent label {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    /* remove unnecessary margins */
    color: var(--text-color);
    /* use your site’s text color variable */
}

.form-consent a {
    color: var(--primary-color);
    /* match theme */
    text-decoration: underline;
    font-weight: 500;
}

/* ===== Contact Form ===== */
.contact-content {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-xl);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
}

.form-submit {
    grid-column: span 2;
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.info-item {
    display: flex;
    margin-bottom: var(--spacing-md);
}

.info-icon {
    margin-right: var(--spacing-md);
    width: 24px;
}

.info-text h4 {
    margin-bottom: var(--spacing-xs);
}

.social-links {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-dark);
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.form-group.full-width .form-consent-2 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    /* align checkbox to first line */
    justify-content: flex-start;
    /* ensure left alignment in grid */
    gap: 0.5rem;
    /* space between checkbox and label */
    width: 100%;
    /* fill available space */
}

.form-consent-2 input[type="checkbox"] {
    flex-shrink: 0;
    /* checkbox stays fixed size */
    margin-top: 2px;
    /* vertical alignment tweak */
    width: 18px;
    height: 18px;
}

.form-consent-2 label {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: var(--text-color, #222);
}

.form-consent-2 a {
    color: var(--primary-color, #006C32);
    text-decoration: underline;
    font-weight: 500;
}

/* ===== Map Section ===== */
.map-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-gray);
}

.map-container {
    margin-top: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: #f5f5f7;
}

.faq-container {
    margin-top: var(--spacing-lg);
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background-color: var(--white);
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.faq-toggle::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.faq-item.active .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--spacing-md);
    background-color: var(--white);
    transition: max-height 0.4s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    max-height: 500px;
    /* enough space to allow animation */
}

/* ===== Quality Section ===== */
.quality-section .quality-badges,
.quality-section .icons-grid {
    display: flex;
    /* single flex row on desktop */
    flex-wrap: nowrap;
    /* keep all icons in one row */
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.quality-section .quality-row-center {
    display: flex;
    /* keeps its 2 items inline */
    gap: var(--spacing-xl);
    align-items: center;
    margin: 0;
    padding: 0;
}

.quality-section .quality-row-center img {
    border-radius: 0;
}

.quality-section {
    background-color: var(--white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.quality-content {
    max-width: 800px;
    margin: 0 auto;
}

.quality-content h2 {
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.quality-content p {
    margin-bottom: var(--spacing-lg);
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.quality-badges .quality-row-center {
    display: contents;
}

.quality-badges img {
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.quality-badges img:hover {
    transform: scale(1.05);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer__column h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__column li {
    margin-bottom: var(--spacing-sm);
}

.footer__column a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__column a:hover {
    opacity: 1;
}

.certificates {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    /* make background invisible */
    border-radius: 0;
    /* or keep rounded if you want */
    padding: 0;
    /* no padding */
    overflow: visible;
    /* no cropping */
    max-width: 450px;
    /* optional to control size */
    margin: 0 auto;
    /* center horizontally */
}

.certificates img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* no rounding on the img */
    padding: 0;
    /* no padding on the img */
    object-fit: contain;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer__copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer__social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-fast);
    color: var(--white);
}

.footer__social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer__social svg {
    stroke: currentColor;
}

.footer__links {
    display: flex;
    gap: var(--spacing-md);
}

.footer__links a {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
}

/* ===== Cookie Notice ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-md);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
    /* Hide by default */
}

.cookie-notice.show {
    transform: translateY(0);
    display: block;
    /* Show when .show class is added */
}

.cookie-notice__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.cookie-notice__content p {
    margin-bottom: 0;
    margin-right: var(--spacing-md);
}

.cookie-notice__content a {
    color: var(--white);
    text-decoration: underline;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-full);
    font-weight: var(--font-weight-medium);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-decoration: none;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: none;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-fast);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn:hover::after {
    transform: scaleY(1);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: transparent;
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1px solid white;
    border-radius: 0;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: calc(var(--spacing-md) - 1px) calc(var(--spacing-xl) - 1px);
}

.btn-secondary:hover {
    background-color: rgba(0, 108, 50, 0.05);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
}

.btn-text:hover {
    background-color: rgba(0, 108, 50, 0.05);
    box-shadow: none;
}

.btn-text::after {
    display: none;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.btn-icon svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

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

.btn-entreprise {
    background-color: transparent;
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1px solid var(--primary-color);
    border-radius: 0;
}

.btn-secondary:hover {
    background-color: rgba(0, 108, 50, 0.05);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ===== Features List ===== */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--spacing-lg);
    max-width: 800px;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--spacing-sm);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Apple-style minimalist design */
.apple-style-content {
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    background-color: var(--white);
}

/* Hero Section */
.apple-hero {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.apple-hero__image {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.product-bottles-image {
    width: 100%;
    height: auto;
    display: block;
}

.apple-hero__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.apple-hero__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.apple-hero__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.apple-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.apple-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.apple-btn-outline {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.apple-btn-outline-green {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.apple-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.apple-btn-outline-green:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.apple-btn-outline-dark {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.apple-btn-outline-dark:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.apple-btn-icon {
    width: 20px;
    height: 20px;
}

/* Product Categories */
.apple-product-categories {
    padding: 4rem 0;
    background-color: #f5f5f7;
}

.apple-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.apple-product-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apple-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.apple-product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.apple-product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.apple-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.apple-product-link:hover {
    color: var(--primary-dark);
}

.apple-product-link svg {
    transition: transform 0.2s ease;
}

.apple-product-link:hover svg {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .apple-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .apple-hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .apple-product-grid {
        grid-template-columns: 1fr;
    }

    .apple-hero__title {
        font-size: 2rem;
    }
}

/* ===== Simple Hero Section - Apple-like design ===== */
.simple-hero {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    margin: 0;
    overflow: hidden;
}

.simple-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.simple-hero__image {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.product-bottles-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.simple-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.simple-hero__title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.simple-hero__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
}

.simple-hero__buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-outline-green:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-outline-dark:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .simple-hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .simple-hero__title {
        font-size: 2rem;
    }
}

/* ===== Product Hero Section - Apple-like design ===== */
.product-hero {
    padding: 6rem 0 3rem;
    background-color: #f5f5f7;
    text-align: left;
    position: relative;
    color: white;
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 108, 50, 0.8);
    z-index: 1;
}

.product-hero .feature__icon {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.product-hero .feature__text {
    color: white;
    font-weight: 500;
}

.product-hero .welcome__features {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
}

.product-hero__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.product-hero__title {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.product-hero__text {
    font-size: 1.08rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
    width: 1100px;
}

.product-hero__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.product-hero__features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    line-height: 1.5;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.product-hero__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background-color: white;
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-hero__cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.arrow-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.product-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.product-categories {
    padding: 2rem 0;
    background-color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card__image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 8px;
    margin-left: 1rem;
}

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

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: 2rem;
    flex-grow: 1;
}

.product-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.product-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #86868b;
    margin-bottom: 1.5rem;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-card__link:hover {
    color: #006040;
}

.product-card__link svg {
    transition: transform 0.2s ease;
}

.product-card__link:hover svg {
    transform: translateX(3px);
}

.product-cta {
    padding: 5rem 0;
    background-color: #f5f5f7;
    text-align: center;
}

.product-cta__content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-cta__title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.product-cta__text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 2rem;
}

.product-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .product-hero__title {
        font-size: 2.5rem;
    }

    .product-section-title {
        font-size: 2rem;
    }

    .product-cta__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-card__image {
        width: 100%;
        height: 120px;
    }

    .product-card__content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-hero__title {
        font-size: 2rem;
    }

    .product-hero__text {
        font-size: 1.1rem;
    }

    .product-section-title {
        font-size: 1.75rem;
    }

    .product-card__title {
        font-size: 1.25rem;
    }

    .product-cta__title {
        font-size: 1.75rem;
    }

    .product-cta__text {
        font-size: 1.1rem;
    }
}

/* ===== Product Bottle Grid ===== */
.product-bottle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    margin-top: 0rem;
}

.product-bottle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.product-bottle-item:hover {
    transform: translateY(-5px);
}

.product-bottle-image {
    height: 400px;
    width: 300px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
}

.product-bottle-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-bottle-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-bottle-link {
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-bottle-link:hover {
    color: var(--primary-dark);
}

.product-bottle-link svg {
    transition: transform 0.2s ease;
}

.product-bottle-link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .product-bottle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-bottle-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    :root {
        --container-width: 100%;
        --container-padding: 2rem;
    }
}

@media (max-width: 992px) {
    .product-categories .container {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .product-content {
        grid-template-columns: 1fr;
    }

    .section-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero {
        height: 500px;
    }

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

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .welcome__features {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .quality-badges {
        gap: var(--spacing-lg);
    }

    .quality-badges img {
        width: 80px;
        height: 80px;
    }

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

    .page-hero .subtitle {
        font-size: 1.25rem;
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .product-card.reverse .product-card__image,
    .product-card.reverse .product-card__content {
        order: unset;
    }

    .product-card__image {
        height: 300px;
    }

    .product-family {
        height: 300px;
    }

    .product-family-overlay h2 {
        font-size: 1.75rem;
    }

    /* Mobile header adjustments */
    .header .container {
        justify-content: space-between;
    }

    .header__logo {
        position: relative;
        left: 0;
    }

    .header__nav {
        margin-left: 0;
        padding-left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav__item {
        margin: 0;
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav__link {
        display: block;
        padding: var(--spacing-md);
    }

    .product-categories .container {
        grid-template-columns: 1fr;
    }

    .news-items {
        grid-template-columns: 1fr;
    }

    .cookie-notice__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-notice__content p {
        margin-bottom: var(--spacing-md);
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .footer__columns {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .form-group.full-width {
        grid-column: auto;
    }

    .form-submit {
        grid-column: auto;
    }
}

* Apple-like UI refinements */ .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
    padding: 2rem;
}

.contact-form-container,
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    margin-top: 0.25rem;
    background-color: #fefefe;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #006C32;
    outline: none;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-submit button {
    background-color: #006C32;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit button:hover {
    background-color: #004e24;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    color: #006C32;
}

.info-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.info-text p,
.info-text address {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.contact-form-container h2 {
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #222;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}