/* ================================
   DARZAYTI - Organic Products Website
   Taroudant, Morocco
   ================================ */

/* CSS Variables */
:root {
    --color-primary: #2d5016;
    --color-primary-light: #4a7c23;
    --color-primary-dark: #1a3009;
    --color-accent: #c9a227;
    --color-accent-light: #dbb84a;
    --color-cream: #faf6f0;
    --color-cream-dark: #f0e8d8;
    --color-brown: #5c4033;
    --color-brown-light: #8b6914;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --font-arabic: 'Amiri', 'Traditional Arabic', serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
}

html[dir="rtl"] { --font-body: var(--font-arabic); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { font-size: 1rem; color: var(--color-text-light); }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }

/* Language Selector */
.lang-selector {
    position: fixed;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 1000;
    display: flex;
    gap: 4px;
    background: var(--color-white);
    padding: 4px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}
html[dir="rtl"] .lang-selector { right: auto; left: var(--space-md); }
.lang-btn {
    border: none;
    background: transparent;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition-fast);
}
.lang-btn:hover { color: var(--color-primary); }
.lang-btn.active { background: var(--color-primary); color: var(--color-white); }

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: var(--space-sm) 0;
    background: transparent;
    transition: var(--transition-medium);
}
.main-nav.scrolled {
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.8rem; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: 1px;
}
.nav-links { display: flex; align-items: center; gap: var(--space-md); list-style: none; }
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 8px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--color-primary); }
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 50%, #c9b896 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 80, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.83zM32 0l-3.486 3.485 1.415 1.414L searching 34.828 0H32z' fill='%23c9a227' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: var(--space-md);
    animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}
.hero-title { margin-bottom: var(--space-sm); }
.hero-title span { display: block; }
.hero-accent {
    color: var(--color-accent);
    font-style: italic;
}
.hero-desc {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto var(--space-md);
    color: var(--color-text);
}
.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
}
.hero-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.4);
}
.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 100%);
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232d5016' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header .container { position: relative; z-index: 1; }
.page-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}
.page-header h1 { margin-bottom: var(--space-sm); color: var(--color-brown); }
.page-header p { max-width: 500px; margin: 0 auto; }

/* Section Styles */
.section-header { margin-bottom: var(--space-lg); }
.section-header.center { text-align: center; }
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}
.section-tag.light { color: var(--color-accent-light); }
.section-title { color: var(--color-brown); }

/* Featured Products Section */
.featured { padding: var(--space-xl) 0; background: var(--color-cream); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}
.product-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}
.product-image { position: relative; }
.product-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}
html[dir="rtl"] .product-badge { left: auto; right: 15px; }
.product-info { padding: var(--space-md); }
.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    color: var(--color-brown);
}
.product-info p {
    font-size: 0.9rem;
    line-height: 1.6;
}
.section-cta {
    text-align: center;
    margin-top: var(--space-lg);
}
.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-fast);
}
.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Story Section */
.story {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--color-primary-dark);
    color: var(--color-white);
    overflow: hidden;
}
.story-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.story .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}
.story-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}
.story-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
}
.btn-text {
    color: var(--color-accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-text:hover { color: var(--color-accent-light); }
.story-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
.feature { text-align: center; }
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}
.feature h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}
.feature p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    text-align: center;
}
.cta-content h2 { margin-bottom: var(--space-sm); }
.cta-content p {
    max-width: 500px;
    margin: 0 auto var(--space-md);
}

/* Products Page Styles */
.products-page { padding: var(--space-lg) 0 var(--space-xl); }
.product-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.product-full:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.product-full.reverse { direction: rtl; }
.product-full.reverse > * { direction: ltr; }
html[dir="rtl"] .product-full.reverse { direction: ltr; }
html[dir="rtl"] .product-full.reverse > * { direction: rtl; }
.product-placeholder-large {
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: var(--shadow-medium);
}
.product-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}
.product-full-info h2 { margin-bottom: var(--space-sm); }
.product-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}
.product-benefits {
    list-style: none;
    margin-bottom: var(--space-md);
}
.product-benefits li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--color-text);
}
.product-options { margin-bottom: var(--space-md); }
.product-size {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-cream-dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Quality Section */
.quality-section {
    padding: var(--space-lg) 0;
    background: var(--color-primary);
}
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
.quality-item {
    text-align: center;
    padding: var(--space-md);
}
.quality-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}
.quality-item h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}
.quality-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* About Page Styles */
.about-story { padding: var(--space-xl) 0; }
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}
.about-text h2 { margin-bottom: var(--space-md); }
.about-text p { margin-bottom: var(--space-sm); }
.about-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, #d4c4a8 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}
.about-placeholder span { font-size: 5rem; margin-bottom: var(--space-sm); }
.about-placeholder p { font-size: 0.9rem; font-style: italic; }

/* Values Section */
.values-section {
    padding: var(--space-xl) 0;
    background: var(--color-cream-dark);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}
.value-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}
.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}
.value-card p { font-size: 0.9rem; }

/* Taroudant Section */
.taroudant-section {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--color-brown);
    color: var(--color-white);
    overflow: hidden;
}
.taroudant-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: radial-gradient(circle at 30% 70%, var(--color-accent) 0%, transparent 50%);
}
.taroudant-content {
    position: relative;
    max-width: 700px;
}
.taroudant-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}
.taroudant-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}
.taroudant-stats {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process-section { padding: var(--space-xl) 0; }
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-cream-dark);
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}
.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}
.process-step p { font-size: 0.9rem; }

/* Contact Page Styles */
.contact-section { padding: var(--space-xl) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-lg);
}
.contact-info h2 { margin-bottom: var(--space-sm); }
.contact-info > p { margin-bottom: var(--space-md); }
.contact-methods { margin-bottom: var(--space-md); }
.contact-method {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-method:last-child { border-bottom: none; }
.method-icon { font-size: 1.5rem; }
.method-details h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.method-details p { font-size: 0.95rem; margin-bottom: 0; color: var(--color-text); }
.method-note {
    font-size: 0.8rem;
    color: var(--color-primary);
}
.social-links h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}
.social-icons { display: flex; gap: var(--space-sm); }
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--color-cream-dark);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: var(--transition-fast);
}
.social-icon:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}
.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}
.form-header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.form-header h3 { font-size: 1.3rem; }
.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--color-cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    margin-top: var(--space-sm);
    width: 100%;
}
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-lg);
}
.form-success.show { display: block; }
.form-success .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}
.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

/* Map Section */
.map-section { height: 300px; }
.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, #d4c4a8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-overlay { text-align: center; }
.map-icon { font-size: 3rem; margin-bottom: var(--space-sm); display: block; }
.map-overlay h3 { margin-bottom: var(--space-xs); }

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background: var(--color-cream-dark);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--color-white);
    margin-bottom: var(--space-sm);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
}
html[dir="rtl"] .faq-question { text-align: right; }
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: var(--transition-fast);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background: var(--color-brown);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}
.footer-brand .logo { margin-bottom: var(--space-sm); }
.footer-brand .logo-text { color: var(--color-white); }
.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.footer-links h4, .footer-contact h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--color-accent); }
.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story .container { grid-template-columns: 1fr; }
    .story-features { margin-top: var(--space-md); }
    .product-full { grid-template-columns: 1fr; gap: var(--space-md); }
    .product-full.reverse { direction: ltr; }
    .product-placeholder-large { height: 300px; }
    .about-content { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: var(--space-md);
        box-shadow: var(--shadow-medium);
    }
    .hero { min-height: 90vh; }
    .hero-content { padding: var(--space-sm); }
    .story-features { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .quality-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; gap: var(--space-lg); }
    .taroudant-stats { justify-content: center; gap: var(--space-md); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand .logo { justify-content: center; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .lang-selector { top: var(--space-sm); right: var(--space-sm); }
    .container { padding: 0 var(--space-sm); }
    .page-header { padding: 140px 0 60px; }
}
