/* =============================================
   SAHAZA - Eco Living | styles.css
   ============================================= */

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* BASE */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #F5F1E8;
    color: #1E2D24;
}

/* GLOBAL CONTAINER */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

/* =============================================
   NAV
   ============================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: #F5F1E8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.logo {
    height: 50px;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1E2D24;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
    background: #0B8F2F;
    color: white;
}

.nav-links a.active {
    color: #0B8F2F;
    font-weight: 600;
}

/* PRODUCTS DROPDOWN — desktop hover only */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* The trigger link looks exactly like every other nav link */
.nav-dropdown > a {
    text-decoration: none;
    color: #1E2D24;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    display: block;
}

.nav-dropdown:hover > a,
.nav-dropdown > a:hover {
    background: #0B8F2F;
    color: white;
}

.nav-dropdown > a.active {
    color: #0B8F2F;
    font-weight: 600;
}

/* Dropdown panel — appears on hover, no click needed */
.nav-dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    min-width: 190px;
    padding: 6px 0;
    z-index: 300;
    border: 1px solid #e8e3d8;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

/* Small notch/arrow pointing up */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #e8e3d8;
}
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
}

.nav-dropdown:hover .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #1E2D24;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
    background: #0B8F2F;
    color: #fff;
}

.nav-dropdown-menu a:first-child { border-radius: 8px 8px 0 0; }
.nav-dropdown-menu a:last-child  { border-radius: 0 0 8px 8px; }

/* ── MOBILE: Products accordion in the slide-out menu ── */
.mobile-products-dropdown {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e8e3d8;
}

.mobile-products-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #1E2D24;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.mobile-products-arrow {
    font-size: 11px;
    transition: transform 0.22s ease;
    display: inline-block;
}

.mobile-products-toggle.open .mobile-products-arrow {
    transform: rotate(180deg);
}

.mobile-products-sub {
    display: none;
    flex-direction: column;
    background: #f7f5ef;
}

.mobile-products-sub.open {
    display: flex;
}

.mobile-products-sub a {
    padding: 12px 36px;
    font-size: 14px;
    font-weight: 400;
    color: #1E2D24;
    text-decoration: none;
    border-top: 1px solid #e8e3d8;
    transition: background 0.15s, color 0.15s;
    display: block;
}

.mobile-products-sub a:hover {
    background: #0B8F2F;
    color: #fff;
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #1E2D24;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger open state */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #F5F1E8;
    padding: 10px 20px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mobile-menu a {
    text-decoration: none;
    color: #1E2D24;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #e0dbd0;
    transition: color 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #0B8F2F;
}

.mobile-menu.open {
    display: flex;
}

/* =============================================
   HERO (index)
   ============================================= */
.hero {
    height: 100vh;
    background-image: url('images/mainImage1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    animation: fadeUp 0.9s ease both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 56px);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero p {
    margin-top: 20px;
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 70px 0;
    text-align: center;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 20px;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 24px 20px;
    border-radius: 14px;
    width: 260px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(11,143,47,0.15);
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.04);
}

/* LIGHT BG SECTION */
.bg-light {
    background: #E8E3D8;
    border-radius: 30px;
    margin: 0 16px;
}

/* =============================================
   MISSION SECTION
   ============================================= */
.section p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 720px;
    text-align: left;
}

.mission-list li {
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid #e0dbd0;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
}

.mission-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0B8F2F;
    font-weight: bold;
}

.mission-list li:last-child {
    border-bottom: none;
}

/* =============================================
   BUTTON
   ============================================= */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 11px 24px;
    background: #0B8F2F;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.btn-outline {
    background: #0B8F2F;
    border: 2px solid #0B8F2F;
    color: white;
}

.btn-outline:hover {
    background: #097326;
    border-color: #097326;
}

/* Wrapper for side-by-side buttons (e.g. mission section) */
.mission-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.mission-btns .btn {
    min-width: 220px;
    text-align: center;
}

.btn:hover {
    background: #097326;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(11,143,47,0.25);
}

.btn:active {
    transform: translateY(0);
}

/* =============================================
   FLOATING CONTACT BUTTONS
   ============================================= */
.whatsapp,
.email {
    position: fixed;
    right: 20px;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    z-index: 200;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.whatsapp {
    bottom: 20px;
    background: #0B8F2F;
}

.email {
    bottom: 72px;
    background: #096825;
}

.whatsapp:hover,
.email:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    background: #054b18;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: #1b1b1b;
    color: #fff;
    padding: 50px 30px 16px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.footer-section h2,
.footer-section h3 {
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    line-height: 1.9;
    display: block;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 14px;
    font-size: 13px;
    color: #777;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
    text-align: center;
    padding: 70px 20px 50px;
    background: linear-gradient(135deg, #e8f5ec 0%, #f5f1e8 100%);
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 14px;
}

.contact-hero p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 24px;
    max-width: 1000px;
    margin: auto;
}

.contact-info {
    flex: 1;
    min-width: 260px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

.socials {
    margin: 18px 0;
    display: flex;
    gap: 12px;
}

.socials a {
    font-size: 22px;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-block;
}

.socials a:hover {
    transform: scale(1.3);
}

.contact-note {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
    background: #f0f0e8;
    padding: 12px 14px;
    border-radius: 8px;
    border-left: 3px solid #0B8F2F;
}

.contact-form {
    flex: 1;
    min-width: 260px;
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0B8F2F;
    box-shadow: 0 0 0 3px rgba(11,143,47,0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    display: none;
    margin-top: 14px;
    color: #0B8F2F;
    font-weight: 500;
    background: #e8f5ec;
    padding: 10px 14px;
    border-radius: 8px;
}

/* Map protection */
.map-container {
    position: relative;
}
.map-container iframe {
    pointer-events: none; /* Prevents scroll trapping */
}
.map-container.active iframe {
    pointer-events: auto; /* Re-enables on tap */
}
.map-instruction {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 8px;
    display: block;
}

.map-section {
    padding: 0 24px 50px;
    max-width: 1000px;
    margin: auto;
}

.map-section iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* =============================================
   OUR VALUES PAGE
   ============================================= */
.values-hero {
    text-align: center;
    padding: 70px 20px 40px;
    background: linear-gradient(135deg, #e8f5ec 0%, #f5f1e8 100%);
}

.values-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 14px;
}

.intro {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.values-page {
    max-width: 1000px;
    margin: auto;
    padding: 0 24px 60px;
}

.values-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    align-items: flex-start;
}

/* LEFT IMAGES */
.values-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    flex-shrink: 0;
}

.values-images img {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0B8F2F;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.values-images img:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(11,143,47,0.25);
}

.img-small  { width: 90px;  height: 90px;  margin-left: 0;  }
.img-medium { width: 120px; height: 120px; margin-left: 20px; }
.img-large  { width: 150px; height: 150px; margin-left: 40px; }

/* RIGHT CONTENT */
.values-content {
    flex: 1;
}

.value {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e0dbd0;
    transition: transform 0.2s;
}

.value:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.value:hover {
    transform: translateX(4px);
}

.value h2 {
    color: #0B8F2F;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.value p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* CTA */
.values-cta {
    background: linear-gradient(135deg, #e8f5ec, #f0f5e8);
    padding: 24px 28px;
    margin-top: 50px;
    border-left: 4px solid #0B8F2F;
    border-radius: 0 12px 12px 0;
    font-weight: 600;
    font-size: 15px;
    color: #1E2D24;
}

/* =============================================
   RESPONSIVE — TABLET & MOBILE
   ============================================= */
@media (max-width: 768px) {

    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Point 1: Highlight active link in Mobile Menu */
    .mobile-menu a.active {
        color: #0B8F2F;
        font-weight: 700;
        border-left: 4px solid #0B8F2F;
        padding-left: 12px;
    }

    /* Point 2: Adjusted Floating Buttons for thumb space */
    .whatsapp, .email {
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
    .email { bottom: 68px; }

    /* Point 3: Readability - Better line height for mobile eyes */
    .value p, .mission-list li, .contact-hero p {
        line-height: 1.9;
        font-size: 16px;
    }

    /* Point 4: Larger buttons (Touch Targets) */
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px; /* Larger hit area */
    }

    /* Mission buttons stay centered side-by-side, not full-width */
    .mission-btns .btn {
        display: inline-block;
        width: auto;
        padding: 13px 22px;
    }

    /* Spacing fixes */
    .section { padding: 50px 0; }
    .values-container { gap: 40px; }
    .cards { gap: 16px; }
    .card { width: 100%; max-width: 320px; margin: 0 auto; }

}

@media (max-width: 480px) {

    /* SINGLE COLUMN CARDS on small phones */
    .card {
        width: 100%;
        max-width: 320px;
    }

    .hero {
        height: 90vh;
    }

    nav {
        padding: 12px 16px;
    }

    .logo {
        height: 42px;
    }

    .map-section {
        padding: 0 16px 40px;
    }

    .map-section iframe {
        height: 240px;
    }
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 125px; /* Positioned above the WhatsApp/Email buttons */
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #0B8F2F;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1E2D24;
    transform: translateY(-3px);
}

/* Adjust for mobile to ensure it doesn't crowd the screen */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 120px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* =============================================
   SHARED PRODUCT & FLOATING COMPONENT STYLES
   ============================================= */

/* 1. HERO SECTION (Fixes the missing styling) */
.products-hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #e8f5ec 0%, #f5f1e8 100%);
}

.products-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 15px;
  color: #1E2D24;
}

.products-hero p {
  font-size: 18px;
  color: #4A5D52;
  max-width: 700px;
  margin: 0 auto;
}

/* 2. FLOATING CONTACT BUTTONS (WhatsApp & Email) */
.whatsapp, .email {
  position: fixed;
  right: 20px;
  z-index: 999;
  padding: 12px 20px;
  border-radius: 50px;
  color: white !important; /* Forces text to stay white */
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp:hover, .email:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.whatsapp {
  bottom: 85px; /* Sits above the Email button */
  background-color: #25D366;
}

.email {
  bottom: 25px;
  background-color: #1E2D24;
}

/* 3. BACK TO TOP BUTTON (Ensures visibility) */
.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  color: #1E2D24;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: none; /* Hidden by default, shown via JS */
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.back-to-top.show {
  display: flex; /* Shown when user scrolls */
}

.back-to-top:hover {
  background-color: #1E2D24;
  color: #fff;
}

/* 4. PRODUCT LAYOUT TWEAKS (For charcoal, pads, soaps) */
.product-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.product-row.reverse {
  flex-direction: row-reverse;
}

.product-image-wrap {
  flex: 1;
}

.product-image-wrap img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.product-content {
  flex: 1;
}

/* Mobile adjustments for the rows */
@media (max-width: 768px) {
  .product-row, .product-row.reverse {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(30, 45, 36, 0.07);
  border-radius: 20px;
  padding: 3px;
  margin-left: 12px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #555;
  padding: 4px 10px;
  border-radius: 16px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  color: #0B8F2F;
}

.lang-btn.active {
  background: #0B8F2F;
  color: #fff;
}

/* Mobile: show switcher inside mobile menu */
.mobile-lang-switcher {
  display: flex;
  gap: 8px;
  padding: 14px 0 6px;
  border-top: 1px solid #e0dbd0;
  margin-top: 4px;
}

.mobile-lang-btn {
  flex: 1;
  padding: 9px 0;
  text-align: center;
  border-radius: 8px;
  border: 1.5px solid #d0cfc5;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-lang-btn.active {
  background: #0B8F2F;
  color: #fff;
  border-color: #0B8F2F;
}

@media (max-width: 768px) {
  .lang-switcher { display: none; }
}

/* Container for the dropdown */
.lang-switcher {
  position: relative;
  display: inline-block;
  margin-left: 12px;
}

/* The visible button */
.lang-selected {
  background: rgba(30, 45, 36, 0.07);
  border: 1px solid rgba(30, 45, 36, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1E2D24;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.lang-selected:hover {
  background: rgba(30, 45, 36, 0.12);
}

.lang-selected .arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

/* The hidden menu */
.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  min-width: 130px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 8px;
  display: none; /* Hidden by default */
  flex-direction: column;
  z-index: 1000;
  border: 1px solid #f0f0f0;
}

.lang-dropdown.show {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

/* Individual options */
.lang-option {
  background: none;
  border: none;
  text-align: left;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  color: #555;
  transition: background 0.2s, color 0.2s;
}

.lang-option:hover {
  background: #f5f1e8;
  color: #0B8F2F;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Language Section */
.mobile-lang-switcher {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 45, 36, 0.1);
}

.mobile-lang-btn {
  background: white;
  border: 1px solid #e0dbd0;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #1E2D24;
  text-align: left;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.mobile-lang-btn.active {
  border-color: #0B8F2F;
  background: #f0f9f2;
  color: #0B8F2F;
  font-weight: 600;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section {
    padding: 60px 0;
    background: #FDFCF9;
    border-top: 1px solid #e0dbd0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stars { color: #FFB800; font-size: 18px; }

.review-form-container {
    max-width: 600px;
    margin: 50px auto 0;
    padding: 30px;
    background: #E8E3D8;
    border-radius: 20px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left; /* Aligne les indications à gauche */
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #1E2D24; /* Couleur sombre SAHAZA */
}

.review-form input, 
.review-form select, 
.review-form textarea {
    width: 100%;
    /* Gardez vos styles de bordures existants ici */
}