/* ============================================
   G'ASSET CO. - MAIN STYLESHEET
   A hire-purchase micro-asset financing business
   Douala, Cameroon
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (Variables)
   Savanna Professional Color Palette
   ============================================ */
:root {
  /* Primary Colors */
  --color-primary: #1A3C34;          /* Deep Forest Green - trust, growth */
  --color-primary-light: #2A5C4A;    /* Lighter green for hover states */
  --color-primary-dark: #0F241F;     /* Darker green for emphasis */
  
  /* Accent Colors */
  --color-accent: #C45C3B;           /* Terracotta - energy, CTAs */
  --color-accent-light: #D97B5A;     /* Lighter terracotta for hover */
  --color-accent-dark: #A44A2D;      /* Darker terracotta */
  
  /* Neutral Colors */
  --color-sand: #E8DCC4;             /* Warm Sand - warmth, backgrounds */
  --color-sand-light: #F2EBD9;       /* Lighter sand */
  --color-cream: #FAF8F5;            /* Cream White - clean backgrounds */
  --color-charcoal: #2D2D2D;         /* Charcoal - text, sophistication */
  --color-charcoal-light: #4A4A4A;   /* Lighter charcoal */
  
  /* Semantic Colors */
  --color-success: #2A5C4A;
  --color-warning: #D97B5A;
  --color-error: #C45C3B;
  
  /* Text Colors */
  --text-primary: var(--color-charcoal);
  --text-secondary: var(--color-charcoal-light);
  --text-light: var(--color-cream);
  --text-muted: #6B6B6B;
  
  /* Background Colors */
  --bg-primary: var(--color-cream);
  --bg-secondary: var(--color-sand);
  --bg-dark: var(--color-primary);
  --bg-accent: var(--color-sand-light);
  
  /* Typography - Using system fonts for performance */
  --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  --font-display: 'Georgia', 'Times New Roman', serif;
  
  /* Font Sizes - Mobile first (compact) */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  
  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* Spacing - 8px base unit (ultra compact) */
  --space-1: 0.25rem;      /* 4px */
  --space-2: 0.5rem;       /* 8px */
  --space-3: 0.75rem;      /* 12px */
  --space-4: 1rem;         /* 16px */
  --space-5: 1.25rem;      /* 20px */
  --space-6: 1.5rem;       /* 24px */
  --space-8: 2rem;         /* 32px */
  --space-10: 2.5rem;      /* 40px */
  --space-12: 3rem;        /* 48px */
  --space-16: 4rem;        /* 64px */
  --space-20: 5rem;        /* 80px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Z-index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
  
  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-4);
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* Images */
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Buttons */
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Form elements */
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
}

h1 {
  font-size: var(--text-4xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

.text-display {
  font-family: var(--font-display);
  font-style: italic;
}

.text-accent {
  color: var(--color-accent);
}

.text-light {
  color: var(--text-light);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-light);
}

.section--sand {
  background-color: var(--bg-secondary);
}

.section--accent {
  background-color: var(--bg-accent);
}

/* CTA section */
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   COMPONENTS - BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  line-height: 1;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-cream);
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: var(--color-primary);
  color: var(--color-cream);
}

.btn--secondary:hover {
  background-color: var(--color-primary-light);
  color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-cream);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--color-cream);
  border: 2px solid var(--color-cream);
}

.btn--outline-light:hover {
  background-color: var(--color-cream);
  color: var(--color-primary);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-primary);
}

.btn--ghost:hover {
  background-color: var(--color-sand);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn--icon {
  padding: var(--space-2);
  border-radius: var(--radius-full);
}

.btn svg {
  width: 1.25em;
  height: 1.25em;
}

/* WhatsApp specific button */
.btn--whatsapp {
  background-color: #25D366;
  color: white;
}

.btn--whatsapp:hover {
  background-color: #20BD5A;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   COMPONENTS - CARDS
   ============================================ */
.card {
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: var(--color-sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card__image svg {
  width: 80%;
  height: 80%;
  max-width: 120px;
  max-height: 120px;
}

.card__product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card__content {
  padding: var(--space-4);
}

.card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.card__price {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-accent);
}

.card__price span {
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: var(--text-muted);
}

/* ============================================
   COMPONENTS - NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background-color: var(--color-cream);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header--dark {
  background-color: var(--color-primary);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header__logo svg {
  width: 40px;
  height: 40px;
}

.header__logo-text {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.header--dark .header__logo-text {
  color: var(--color-cream);
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-primary);
  position: relative;
  padding: var(--space-2) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-accent);
}

.header--dark .nav__link {
  color: var(--color-cream);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  background-color: var(--color-sand);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-toggle:hover {
  background-color: var(--color-sand-light);
}

.lang-toggle__option {
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.lang-toggle__option--active {
  background-color: var(--color-primary);
  color: var(--color-cream);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  padding: var(--space-2);
  color: var(--color-primary);
}

.header--dark .menu-toggle {
  color: var(--color-cream);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background-color: var(--color-cream);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: var(--z-modal);
  overflow-y: auto;
}

.mobile-nav--open {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-sand);
}

.mobile-nav__close {
  padding: var(--space-2);
  color: var(--color-primary);
}

.mobile-nav__close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav__list {
  padding: var(--space-4);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  background-color: var(--color-sand);
  color: var(--color-accent);
}

.mobile-nav__footer {
  padding: var(--space-4);
  border-top: 1px solid var(--color-sand);
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-modal-backdrop);
}

.nav-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   COMPONENTS - HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: var(--color-primary);
  color: var(--text-light);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero_background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
  color: var(--text-light);
}

.hero__title span {
  color: var(--color-accent);
  display: block;
}

.hero__slogan {
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: var(--font-medium);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  opacity: 0.95;
}

.hero__text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  opacity: 0.9;
  margin-bottom: var(--space-6);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}



/* ============================================
   COMPONENTS - SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-10);
}

.section-header__subtitle {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.section-header__title {
  margin-bottom: var(--space-4);
}

.section-header__text {
  color: var(--text-muted);
}

.section--dark .section-header__text {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   COMPONENTS - VALUE CARDS
   ============================================ */
.value-card {
  text-align: center;
  padding: var(--space-6);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
}

.value-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.value-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================
   COMPONENTS - PROCESS STEPS (Glass Cards)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-5) var(--space-6);
  text-align: center;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.process-step__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-cream);
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  border: 3px solid var(--color-primary);
  z-index: 2;
}

.process-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(196, 92, 59, 0.15);
}

.process-step__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent-light);
  stroke: currentColor;
  fill: none;
}

.process-step__content {
  flex: 1;
}

.process-step__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
  color: var(--color-cream);
}

.process-step__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--leading-relaxed);
}

/* Mobile vertical connector */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(-1 * var(--space-6));
  width: 2px;
  height: var(--space-6);
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25) 0px,
    rgba(255, 255, 255, 0.25) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 1;
}

/* Desktop chevron connector between cards */
.process-step__connector {
  display: none;
}

/* ============================================
   COMPONENTS - TESTIMONIALS
   ============================================ */
.testimonial {
  position: relative;
  padding: var(--space-6);
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial__quote-icon {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  opacity: 0.3;
}

.testimonial__text {
  font-size: var(--text-base);
  font-style: italic;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.testimonial__name {
  font-weight: var(--font-semibold);
}

.testimonial__role {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================
   COMPONENTS - FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--color-cream);
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   COMPONENTS - FOOTER
   ============================================ */
.footer {
  background-color: var(--color-primary);
  color: var(--text-light);
  padding-top: var(--space-12);
  padding-bottom: var(--space-6);
}

.footer__grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.footer__logo svg {
  width: 40px;
  height: 40px;
}

.footer__logo-text {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
}

.footer__text {
  font-size: var(--text-sm);
  opacity: 0.8;
  line-height: var(--leading-relaxed);
}

.footer__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  color: var(--text-light);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__link {
  font-size: var(--text-sm);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer__link:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  opacity: 0.8;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  color: var(--color-accent);
}

.footer__social-link:hover {
  background-color: var(--color-accent);
  color: white;
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  font-size: var(--text-sm);
  opacity: 0.6;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  display: none !important;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* Spacing utilities */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.pt-4 { padding-top: var(--space-4); }
.pt-6 { padding-top: var(--space-6); }
.pb-4 { padding-bottom: var(--space-4); }
.pb-6 { padding-bottom: var(--space-6); }

/* Width utilities */
.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }

/* ============================================
   SUPPLIER SECTION - Trust Card
   ============================================ */
.supplier-section {
  max-width: 680px;
  margin: var(--space-16) auto 0;
  padding: var(--space-10) var(--space-6);
  background: var(--color-cream);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.supplier-section__divider-top {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
}

.supplier-section__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
}

.supplier-section__logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: white;
  border: 2px solid var(--color-sand);
  margin-bottom: var(--space-6);
  overflow: hidden;
}

.supplier-section__logo-wrapper img {
  max-width: 88px;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.supplier-section__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.supplier-section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(42, 92, 74, 0.08);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--color-primary-light);
  margin-bottom: var(--space-4);
}

.supplier-section__badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.supplier-section__text {
  max-width: 480px;
  margin: 0 auto;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.supplier-section__divider-bottom {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  margin: var(--space-6) auto 0;
}
