/*
Theme Name: SevenSeeds
Theme URI: https://sevenseed.org/
Author: SevenSeeds
Description: SevenSeeds Sudanese agricultural export company website, converted from the approved static project.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: sevenseeds
*/

/* =========================================================
   SEVENSEEDS — Premium Sudanese Agricultural Exports
   Design System v2
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand Palette */
  --primary: #28563F;
  --primary-dark: #173B2B;
  --primary-light: #4D795D;
  --secondary: #718B68;

  --gold: #B79A55;
  --gold-light: #D7C28A;

  --dark: #17221C;
  --dark-secondary: #26352C;

  --light: #F7F5EE;
  --light-warm: #EEE8D8;
  --white: #FFFFFF;

  --text: #27312B;
  --text-light: #667169;
  --text-muted: #8A948D;
  --border: #DDD9CC;

  --green: #3F7652;
  --green-light: #73957B;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;

  /* Motion */
  --transition-fast: 180ms ease;
  --transition-normal: 320ms ease;
  --transition-slow: 600ms cubic-bezier(.22,.61,.36,1);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(23,34,28,.06);
  --shadow-md: 0 10px 32px rgba(23,34,28,.09);
  --shadow-lg: 0 20px 60px rgba(23,34,28,.13);
  --shadow-xl: 0 30px 90px rgba(23,34,28,.17);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Layout */
  --container-max: 1280px;
  --container-padding: clamp(1rem, 3vw, 2.5rem);
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
}

/* =========================================================
   RESET & BASE
   ========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}

body {
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--dark);
}

:focus-visible {
  outline: 3px solid rgba(183,154,85,.65);
  outline-offset: 4px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

h5 {
  font-size: 1.08rem;
}

h6 {
  font-size: 1rem;
}

p {
  max-width: 70ch;
  color: var(--text-light);
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
}

.section-label {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container-narrow {
  width: min(100%, 900px);
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-header {
  width: min(100%, 720px);
  margin: 0 auto clamp(2.5rem, 5vw, 4.25rem);
  text-align: center;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  margin-inline: auto;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--transition-normal),
    background-color var(--transition-normal),
    border-color var(--transition-normal),
    color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(40,86,63,.16);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(40,86,63,.22);
}

.btn-outline {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}

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

.btn-outline-dark {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}

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

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 12px 28px rgba(183,154,85,.2);
}

.btn-sm {
  min-height: 42px;
  padding: .7rem 1.15rem;
  font-size: .84rem;
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  padding-block: clamp(.85rem, 2vw, 1.35rem);
  transition:
    background-color var(--transition-normal),
    backdrop-filter var(--transition-normal),
    box-shadow var(--transition-normal),
    padding var(--transition-normal);
}

.header.scrolled {
  padding-block: .7rem;
  background: rgba(247,245,238,.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .nav-link,
.header.scrolled .lang-switch {
  color: var(--text);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary);
}

.header.scrolled .logo-text {
  color: var(--primary);
}

.header.scrolled .btn-nav {
  border-color: var(--primary);
  color: var(--primary);
}

.header.scrolled .mobile-menu-btn {
  border-color: rgba(23,34,28,.15);
}

.header.scrolled .mobile-menu-btn span {
  background: var(--dark);
}

.header-inner {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}

.logo-icon {
  display: grid;
  width: clamp(36px, 4vw, 42px);
  height: clamp(36px, 4vw, 42px);
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(40,86,63,.2);
}

.logo-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  white-space: nowrap;
}

.logo-text span {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
}

.nav-link {
  position: relative;
  padding-block: .3rem;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -.15rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.4vw, 1.35rem);
}

.lang-switch {
  color: rgba(255,255,255,.8);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
}

.lang-switch:hover {
  color: var(--gold-light);
}

.btn-nav {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: .65rem 1.15rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform var(--transition-normal),
    opacity var(--transition-normal),
    background-color var(--transition-normal);
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: min(100%, 390px);
  height: 100dvh;
  padding: 6rem 1.5rem 2rem;
  overflow-y: auto;
  background: var(--light);
  box-shadow: var(--shadow-xl);
  transform: translateX(105%);
  transition: transform var(--transition-slow);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(10,22,15,.5);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px);
  transition:
    opacity var(--transition-normal),
    visibility var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  padding: 1rem .25rem;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.mobile-nav-link:hover {
  padding-left: .7rem;
  color: var(--primary);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: max(620px, 100svh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 78% 25%,
      rgba(183,154,85,.13),
      transparent 34%
    ),
    linear-gradient(
      110deg,
      rgba(16,43,30,.88) 0%,
      rgba(22,49,35,.68) 52%,
      rgba(20,31,25,.4) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  padding-inline: var(--container-padding);
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  animation:
    fadeInUp .9s cubic-bezier(.22,.61,.36,1)
    forwards .25s;
}

.hero-label {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--gold-light);
  font-size: clamp(.7rem, 1vw, .82rem);
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.03;
}

.hero-title span {
  position: relative;
  color: var(--gold-light);
}

.hero-desc {
  width: min(100%, 650px);
  margin: 0 auto 2rem;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-scroll {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2rem);
  left: 50%;
  z-index: 2;
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: bounce 2.2s infinite;
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-bar {
  position: relative;
  padding-block: 1.15rem;
  overflow: hidden;
  background: var(--dark);
}

.trust-marquee {
  display: flex;
  width: max-content;
  gap: clamp(2rem, 5vw, 4rem);
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

.trust-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--gold-light);
  font-size: 1.05rem;
}

/* =========================================================
   ABOUT / QUALITY
   ========================================================= */

.about-preview,
.why-section,
.quality-section,
.export-section,
.faq-section {
  background: var(--white);
}

.about-grid,
.quality-grid,
.contact-grid,
.why-sudan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.about-image,
.quality-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image img,
.quality-image img {
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}

.about-image:hover img,
.quality-image:hover img {
  transform: scale(1.045);
}

.about-image::before {
  position: absolute;
  inset: 18px auto auto 18px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(183,154,85,.7);
  border-radius: var(--radius-lg);
  content: "";
  transform: translate(-18px,-18px);
  pointer-events: none;
}

.about-content h2,
.quality-content h2,
.contact-info h2 {
  margin-bottom: 1.2rem;
}

.about-content p,
.quality-content > p,
.contact-info > p {
  margin-bottom: 1.2rem;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

/* =========================================================
   PRODUCTS
   ========================================================= */

.products-section {
  background: var(--light-warm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(221,217,204,.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  position: relative;
  height: clamp(260px, 30vw, 340px);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}

.product-card:hover .product-image img {
  transform: scale(1.07);
}

.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(
      to top,
      rgba(16,35,25,.82),
      transparent 62%
    );
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.product-info h3 {
  margin-bottom: .5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.product-info p {
  margin-bottom: 1.25rem;
  font-size: .95rem;
}

/* =========================================================
   WHY / FEATURES
   ========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.why-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--light);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  text-align: center;
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.why-card:hover {
  border-color: rgba(183,154,85,.6);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 1.25rem;
  place-items: center;
  border: 1px solid rgba(183,154,85,.28);
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
  );
  color: var(--white);
  font-size: 1.55rem;
}

.why-card h4 {
  margin-bottom: .65rem;
  font-size: 1.2rem;
}

.why-card p {
  margin-inline: auto;
  font-size: .94rem;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  background: var(--dark);
  color: var(--white);
}

.process-section .section-header h2 {
  color: var(--white);
}

.process-section .section-header p {
  color: rgba(255,255,255,.7);
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
}

.process-timeline::before {
  position: absolute;
  top: 4rem;
  right: 5%;
  left: 5%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      var(--primary-light),
      var(--gold),
      var(--primary-light)
    );
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 205px;
  text-align: center;
}

.process-step-number {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 1.3rem;
  place-items: center;
  border: 4px solid var(--dark);
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(183,154,85,.45);
}

.process-step h4 {
  margin-bottom: .45rem;
  color: var(--white);
  font-size: 1.05rem;
}

.process-step p {
  margin-inline: auto;
  color: rgba(255,255,255,.58);
  font-size: .86rem;
}

/* =========================================================
   EXPORT SERVICES
   ========================================================= */

.export-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.export-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--light);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition-normal),
    background-color var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

.export-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--gold);
  content: "";
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--transition-normal);
}

.export-card:hover {
  background: var(--white);
  border-color: rgba(183,154,85,.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.export-card:hover::before {
  transform: scaleY(1);
}

.export-icon {
  margin-bottom: 1.15rem;
  color: var(--primary);
  font-size: 2.2rem;
}

.export-card h4 {
  margin-bottom: .6rem;
  font-size: 1.15rem;
}

.export-card p {
  margin-bottom: 1.2rem;
  font-size: .94rem;
}

/* =========================================================
   BUYERS
   ========================================================= */

.buyers-section {
  background: var(--light-warm);
}

.buyers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(.8rem, 2vw, 1.5rem);
}

.buyer-card {
  padding: clamp(1.3rem, 2.5vw, 2rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.buyer-card:hover {
  border-color: rgba(40,86,63,.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.buyer-icon {
  margin-bottom: .8rem;
  color: var(--gold);
  font-size: 2.2rem;
}

.buyer-card h4 {
  margin-bottom: .45rem;
  font-size: 1.05rem;
}

.buyer-card p {
  margin-inline: auto;
  font-size: .88rem;
}

/* =========================================================
   QUALITY
   ========================================================= */

.quality-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.quality-feature {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.quality-feature i {
  flex: 0 0 auto;
  margin-top: .25rem;
  color: var(--green);
  font-size: 1.15rem;
}

.quality-feature h5 {
  margin-bottom: .2rem;
  font-size: 1.02rem;
}

.quality-feature p {
  margin: 0;
  font-size: .92rem;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  position: relative;
  padding-block: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(183,154,85,.16),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--primary-dark),
      var(--primary)
    );
  text-align: center;
}

.cta-section::before {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(
      rgba(255,255,255,.08) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  content: "";
  opacity: .25;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: .8rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.cta-section p {
  margin-inline: auto;
  margin-bottom: 1.8rem;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-preview {
  background: var(--light-warm);
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.8rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.contact-detail i {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.05rem;
}

.contact-detail h5 {
  margin-bottom: .15rem;
  font-size: .98rem;
}

.contact-detail p {
  margin: 0;
  font-size: .92rem;
}

.contact-form-preview,
.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(221,217,204,.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-preview {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: clamp(4rem, 7vw, 5.5rem) 0 2rem;
  background: var(--dark);
  color: rgba(255,255,255,.7);
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 2fr)
    repeat(3, minmax(0,1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  display: inline-block;
  margin-bottom: .9rem;
  color: var(--white);
}

.footer-brand p {
  margin-bottom: 1.35rem;
  color: rgba(255,255,255,.6);
  font-size: .92rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
}

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

.footer-title {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.footer-links li {
  margin-bottom: .65rem;
}

.footer-links a {
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}

/* =========================================================
   FORMS
   ========================================================= */

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

.form-label {
  display: block;
  margin-bottom: .45rem;
  color: var(--dark);
  font-size: .88rem;
  font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 48px;
  padding: .78rem .95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .94rem;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--green-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(40,86,63,.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  transition:
    transform var(--transition-normal),
    background-color var(--transition-normal),
    box-shadow var(--transition-normal),
    opacity var(--transition-normal);
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-submit.loading {
  opacity: .65;
  pointer-events: none;
}

.success-message {
  display: none;
  padding: 3rem 1.5rem;
  text-align: center;
}

.success-message.active {
  display: block;
}

.success-message i {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 3.5rem;
}

.success-message h3 {
  margin-bottom: .5rem;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  width: min(100%, 820px);
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.35rem;
  color: var(--dark);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

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

.faq-question i {
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition:
    max-height var(--transition-normal),
    padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 360px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: .96rem;
  line-height: 1.8;
}

/* =========================================================
   PAGE-SPECIFIC
   ========================================================= */

.about-hero {
  min-height: max(520px, 60svh);
}

.mission-vision {
  background: var(--light-warm);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(1.25rem, 4vw, 3rem);
}

.mv-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid rgba(221,217,204,.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.mv-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--gold)
    );
  content: "";
}

.mv-card h3 {
  margin-bottom: .9rem;
  color: var(--primary);
}

.why-sudan {
  background: var(--white);
}

.products-hero,
.export-hero,
.contact-hero {
  min-height: max(500px, 55svh);
}

.product-detail {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--white);
}

.product-detail:nth-child(even),
.service-detail:nth-child(even) {
  background: var(--light-warm);
}

.product-detail-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.product-detail-grid.reverse {
  direction: rtl;
}

.product-detail-grid.reverse > * {
  direction: ltr;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .8rem;
  margin-block: 1.4rem;
}

.spec-item {
  padding: .9rem;
  border: 1px solid rgba(221,217,204,.7);
  border-radius: var(--radius-sm);
  background: var(--light);
  text-align: center;
}

.spec-item h5 {
  margin-bottom: .2rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.spec-item p {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
}

.service-detail {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--white);
}

.contact-page {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--light-warm);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px,1fr) minmax(0,1.5fr);
  align-items: start;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.contact-info-card {
  height: fit-content;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-info-card h3,
.contact-form-card h3 {
  margin-bottom: 1.6rem;
  font-size: 1.45rem;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(.22,.61,.36,1),
    transform .7s cubic-bezier(.22,.61,.36,1);
}

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

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.reveal-delay-5 {
  transition-delay: .5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .72;
  }
}

.counter {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

/* =========================================================
   PLACEHOLDERS
   ========================================================= */

.placeholder-image {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(
      135deg,
      rgba(40,86,63,.06),
      rgba(183,154,85,.08)
    ),
    var(--light-warm);
  color: var(--text-muted);
  text-align: center;
  font-size: .9rem;
}

.placeholder-image i {
  margin-bottom: .8rem;
  color: var(--secondary);
  font-size: 2.7rem;
}

.placeholder-hero {
  min-height: 100%;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(183,154,85,.15),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--primary-dark),
      var(--dark)
    );
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */

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

.text-left {
  text-align: left;
}

.mb-1 {
  margin-bottom: .5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: .5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 999;
  display: grid;
  width: clamp(50px, 5vw, 60px);
  height: clamp(50px, 5vw, 60px);
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  box-shadow: 0 8px 28px rgba(37,211,102,.25);
  animation: pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 34px rgba(37,211,102,.32);
}

/* =========================================================
   RESPONSIVE — 1120px
   ========================================================= */

@media (max-width: 1120px) {
  .nav {
    gap: 1rem;
  }

  .nav-actions {
    gap: .7rem;
  }

  .btn-nav {
    padding-inline: .85rem;
  }
}

/* =========================================================
   RESPONSIVE — 1024px
   ========================================================= */

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

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

  .about-grid,
  .quality-grid,
  .contact-grid,
  .why-sudan-grid,
  .contact-page-grid,
  .product-detail-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .quality-grid,
  .why-sudan-grid,
  .contact-page-grid {
    gap: 2.5rem;
  }

  .product-detail-grid.reverse {
    direction: ltr;
  }

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

  .about-image img,
  .quality-image img {
    height: clamp(340px, 55vw, 500px);
  }
}

/* =========================================================
   RESPONSIVE — 768px
   ========================================================= */

@media (max-width: 768px) {
  .section {
    padding-block: clamp(3.5rem, 10vw, 5rem);
  }

  .hero {
    min-height: max(600px, 100svh);
  }

  .hero-content {
    padding-inline: 1.1rem;
  }

  .hero-desc {
    margin-bottom: 1.7rem;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: min(100%, 340px);
  }

  .hero-scroll {
    display: none;
  }

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

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

  .product-image {
    height: clamp(240px, 60vw, 330px);
  }

  .product-detail-grid,
  .service-detail-grid {
    gap: 2rem;
  }

  .process-timeline {
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    right: auto;
    left: 28px;
    width: 1px;
    height: auto;
    background:
      linear-gradient(
        180deg,
        var(--primary-light),
        var(--gold),
        var(--primary-light)
      );
  }

  .process-step {
    display: grid;
    max-width: none;
    grid-template-columns: 58px minmax(0,1fr);
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .process-step-number {
    margin: 0;
  }

  .process-step p {
    margin-inline: 0;
  }

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

  .product-specs {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mobile-menu {
    width: min(100%, 360px);
  }
}

/* =========================================================
   RESPONSIVE — 560px
   ========================================================= */

@media (max-width: 560px) {
  .container {
    padding-inline: 1rem;
  }

  .header {
    padding-block: .8rem;
  }

  .header.scrolled {
    padding-block: .6rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .lang-switch {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .hero {
    min-height: max(570px, 100svh);
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .hero-desc {
    font-size: .96rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .buyers-grid,
  .product-specs {
    grid-template-columns: 1fr;
  }

  .about-image::before {
    display: none;
  }

  .about-image img,
  .quality-image img {
    height: min(78vw, 420px);
  }

  .product-info {
    padding: 1.3rem;
  }

  .product-overlay {
    display: none;
  }

  .mv-card,
  .contact-form-card,
  .contact-info-card {
    padding: 1.4rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

/* =========================================================
   RESPONSIVE — 360px
   ========================================================= */

@media (max-width: 360px) {
  .container {
    padding-inline: .85rem;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .btn {
    width: 100%;
    padding-inline: 1rem;
  }

  .mobile-menu {
    width: 100%;
  }

  .process-step {
    grid-template-columns: 50px minmax(0,1fr);
  }

  .process-step-number {
    width: 50px;
    height: 50px;
  }
}

/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-bg img,
  .hero-bg video {
    transform: none !important;
  }
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!1 */

      @keyframes heroFadeUp {
        from {
          opacity: 0;
          transform: translateY(35px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes heroZoom {
        from {
          transform: scale(1.08);
        }

        to {
          transform: scale(1.15);
        }
      }

      @keyframes scrollDot {
        0% {
          opacity: 0;
          transform: translateY(-4px);
        }

        30% {
          opacity: 1;
        }

        70% {
          opacity: 1;
        }

        100% {
          opacity: 0;
          transform: translateY(14px);
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .hero-content,
        .hero-bg video,
        .hero-scroll,
        .hero-scroll span {
          animation: none !important;
        }
      }
      /* =========================================================
   TRUST + ABOUT ADDITIONS
   ========================================================= */

      @keyframes marquee {
        from {
          transform: translateX(0);
        }

        to {
          transform: translateX(calc(-50% - 1rem));
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .trust-marquee {
          animation: none !important;
        }
      }
      /* !++++++++++++ */
      /* =========================================================
   SEVEN TIMELINE — DESKTOP CONNECTORS
   ========================================================= */

      @media (min-width: 1024px) {
        .seven-step {
          position: relative;
        }

        .seven-card {
          position: relative;
          z-index: 2;
        }

        .seven-number {
          position: relative;
          z-index: 20;
        }

        /* LEFT CARD → CENTER */
        .seven-step:nth-child(odd) .seven-card::after {
          content: "";
          position: absolute;

          top: 50%;
          right: -32px;

          width: 32px;
          height: 1px;

          transform: translateY(-50%);

          background: linear-gradient(
            to right,
            rgba(183, 154, 85, 0.25),
            rgba(183, 154, 85, 0.75)
          );
        }

        .seven-step:nth-child(odd) .seven-card::before {
          content: "";

          position: absolute;

          top: 50%;
          right: -35px;

          width: 7px;
          height: 7px;

          border-radius: 50%;

          transform: translateY(-50%);

          background: #b79a55;

          box-shadow: 0 0 0 5px rgba(183, 154, 85, 0.08);
        }

        /* RIGHT CARD → CENTER */

        .seven-step:nth-child(even) .seven-card::after {
          content: "";
          position: absolute;

          top: 50%;
          left: -32px;

          width: 32px;
          height: 1px;

          transform: translateY(-50%);

          background: linear-gradient(
            to left,
            rgba(183, 154, 85, 0.25),
            rgba(183, 154, 85, 0.75)
          );
        }

        .seven-step:nth-child(even) .seven-card::before {
          content: "";

          position: absolute;

          top: 50%;
          left: -35px;

          width: 7px;
          height: 7px;

          border-radius: 50%;

          transform: translateY(-50%);

          background: #b79a55;

          box-shadow: 0 0 0 5px rgba(183, 154, 85, 0.08);
        }
      }

      /* =========================================================
   MOBILE RESET
   ========================================================= */

      @media (max-width: 1023px) {
        .seven-step {
          display: block !important;
          min-height: auto !important;
        }

        .seven-card::before,
        .seven-card::after {
          display: none !important;
        }
      }
      /*  */
      /* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 390px;
  height: 100dvh;
  z-index: 9999;

  background: var(--light-warm, #f7f5ee);

  padding: 0 1.25rem 2rem;

  overflow-y: auto;

  transform: translateX(100%);
  transition: transform 0.45s ease;

  box-shadow:
    -20px 0 60px rgba(10, 25, 16, 0.2);
}


/* OPEN */

.mobile-menu.active {
  transform: translateX(0);
}


/* OVERLAY */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;

  background: rgba(16, 37, 26, 0.65);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}


/* OPEN OVERLAY */

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

.mobile-menu-header {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  border-bottom: 1px solid var(--border, #ddd9cc);
}


.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  text-decoration: none;
}


.mobile-logo-icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: #28563f;
  color: white;

  font-family: "Playfair Display", serif;
  font-weight: 700;
}


.mobile-menu-title {
  color: #173b2b;

  font-family: "Playfair Display", serif;

  font-size: 1.2rem;
  font-weight: 700;
}


.mobile-menu-title span {
  color: #b79a55;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.mobile-menu-close {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 9px;

  background: transparent;

  color: #173b2b;

  cursor: pointer;

  font-size: 1.2rem;

  transition: all 0.3s ease;
}


.mobile-menu-close:hover {
  background: #eee8d8;
  color: #28563f;
}


/* =========================================================
   MOBILE LANGUAGE
   ========================================================= */

.mobile-language-wrapper {
  padding: 1.25rem 0 0.5rem;

  display: flex;
  justify-content: flex-end;
}


.mobile-menu-lang {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 0.5rem;

  min-width: 95px;
  min-height: 42px;

  padding: 0 1rem;

  border: 1px solid #d8d3c6;
  border-radius: 9px;

  background: white;

  color: #173b2b;

  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;
}


.mobile-menu-lang:hover {
  border-color: #b79a55;
  color: #28563f;
  transform: translateY(-1px);
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-nav {
  margin-top: 0.5rem;
}


.mobile-nav-link {
  display: flex;

  align-items: center;
  justify-content: space-between;

  min-height: 58px;

  padding: 0 0.25rem;

  border-bottom: 1px solid #ddd9cc;

  color: #173b2b;

  text-decoration: none;

  font-weight: 600;

  transition: all 0.3s ease;
}


.mobile-nav-link i {
  color: #b79a55;

  opacity: 0;

  transform: translateX(-8px);

  transition: all 0.3s ease;
}


.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #28563f;
}


.mobile-nav-link:hover i,
.mobile-nav-link.active i {
  opacity: 1;
  transform: translateX(0);
}


/* =========================================================
   MOBILE CTA
   ========================================================= */

.mobile-menu-cta {
  margin-top: 1.5rem;

  width: 100%;
  min-height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 0.6rem;

  border-radius: 10px;

  background: #28563f;
  color: white;

  text-decoration: none;

  font-weight: 700;

  transition: all 0.3s ease;
}


.mobile-menu-cta:hover {
  background: #173b2b;
  transform: translateY(-2px);
}


/* =========================================================
   BRAND STATEMENT
   ========================================================= */

.mobile-brand-statement {
  margin-top: 2rem;

  padding: 1.25rem;

  border-radius: 14px;

  background: #eee8d8;

  border: 1px solid #ddd9cc;
}


.mobile-brand-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  margin-bottom: 0.5rem;

  color: #28563f;

  font-size: 0.75rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.15em;
}


.mobile-brand-statement p {
  margin: 0;

  color: #667169;

  font-size: 0.85rem;
  line-height: 1.8;
}


/* =========================================================
   MOBILE HEADER ACTIONS
   ========================================================= */

@media (max-width: 991px) {

  .nav {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .lang-switch {
    display: none;
  }

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

}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

  .mobile-menu,
  .mobile-menu-overlay,
  .mobile-menu-btn {
    display: none;
  }

}