/* Import Fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* CSS Custom Properties / Design System */
:root {
  /* Color Palette */
  --primary-emerald: #c31a22;
  /* Crimson Red matching logo */
  --primary-emerald-light: #e0333c;
  --primary-emerald-dark: #8c0f14;
  --accent-gold: #c5a880;
  --accent-gold-dark: #b09168;
  --accent-gold-light: #e5d4be;
  --dark-green: #350204;
  /* Luxurious Deep Crimson/Burgundy */
  --light-bg: #fafaf8;
  --white: #ffffff;

  --natasha-primary-puce: #e28891;
  --natasha-primary-salmon-pink: #ca928e;
  --natasha-primary-magnolia: #fdf9f0;
  --natasha-secondary-apricot: #dd9b7f;

  --natashaluxe-primary: #5E0B16;
  --natashaluxe-secondary: #f5dfd8;

  /* Neutral Palette */
  --neutral-50: #fcfcfb;
  --neutral-100: #fafaf8;
  --neutral-200: #f1f0ec;
  --neutral-300: #e5e3db;
  --neutral-400: #b5b2a5;
  --neutral-600: #7a776b;
  --neutral-800: #424037;
  --neutral-900: #1f1f1a;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;

  /* Layout Widths */
  --max-width-site: 1280px;
  --max-width-narrow: 800px;

  /* Animations & Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease-out;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-round: 50%;

  /* Box Shadows */
  --shadow-sm: 0 2px 4px rgba(53, 2, 4, 0.05);
  --shadow-md: 0 10px 20px rgba(53, 2, 4, 0.08);
  --shadow-lg: 0 20px 40px rgba(53, 2, 4, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-900);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

/* Typography Presets */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  /* color: var(--dark-green); */
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
  position: relative;
}

/* Add elegant gold line under h2 when it has class text-center */
h2.decorated::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: var(--space-sm) auto 0;
}

h2.decorated-left::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: var(--space-sm) 0 0;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--neutral-800);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Common Layout Components */
.container {
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.section {
  padding: var(--space-3xl) 0;
}

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

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--neutral-300);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: var(--space-md) 0;
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo-image {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
  filter: brightness(0) invert(1);
}

header.scrolled .logo-image {
  filter: none;
}

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-item a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-2xs) 0;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.nav-item.active a {
  color: var(--accent-gold);
}

.nav-item a:hover {
  color: var(--white);
}

header.scrolled .nav-item a {
  color: var(--neutral-800);
}

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

header.scrolled .nav-item a::after {
  background-color: var(--primary-emerald);
}

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: var(--space-xs);
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  transition: var(--transition-fast);
}

header.scrolled .hamburger span {
  background-color: var(--dark-green);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem var(--space-lg);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-emerald);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-emerald-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 107, 86, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
}

.btn-secondary:hover {
  background-color: var(--primary-emerald);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

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

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--dark-green);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-emerald);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(53, 2, 4, 0.75), rgba(53, 2, 4, 0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  /* max-width: var(--max-width-narrow); */
  max-width: 900px;
  padding: 0 var(--space-md);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 1s 0.2s forwards;
}

.hero-title {
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 1s 0.4s forwards;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--neutral-300);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 1s 0.6s forwards;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 1s 0.8s forwards;
}

/* Page Banner (for subpages) */
.page-banner {
  height: 60vh;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(53, 2, 4, 0.8), rgba(195, 26, 34, 0.1));
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width-site);
  width: 100%;
}

.page-banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-xs);
}

.breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--neutral-300);
  display: flex;
  gap: var(--space-xs);
}

.breadcrumbs a {
  color: var(--accent-gold);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Flex & Grid layouts */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Custom Cards */
.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--neutral-200);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold-light);
}

.card-img-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-content {
  padding: var(--space-md);
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--white);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 168, 128, 0.4);
  transform: translateY(-5px);
}

/* Stats Counter Section */
.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: var(--space-md) var(--space-sm);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: var(--space-2xs);
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-600);
  font-weight: 500;
}

.section-dark .stat-label {
  color: var(--neutral-300);
}

/* Interactive Timeline */
.timeline-container {
  position: relative;
  padding: var(--space-xl) 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--neutral-200);
}

.timeline-container::-webkit-scrollbar {
  height: 6px;
}

.timeline-container::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: var(--radius-sm);
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: calc(var(--space-xl) + 140px);
  right: calc(var(--space-xl) + 140px);
  height: 2px;
  background-color: var(--neutral-300);
  z-index: 1;
}

.timeline-track {
  display: inline-flex;
  gap: var(--space-3xl);
  padding: 0 var(--space-xl);
  position: relative;
  z-index: 2;
}

.timeline-item {
  width: 280px;
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  position: relative;
  padding-top: var(--space-2xl);
}

.timeline-item:nth-child(even) {
  padding-top: 0;
  padding-bottom: var(--space-2xl);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-round);
  /* background-color: var(--white);
  border: 4px solid var(--accent-gold); */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transition: var(--transition-fast);
}

.timeline-item:nth-child(odd) .timeline-dot {
  top: 50%;
  margin-top: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  bottom: 50%;
  margin-bottom: -8px;
}

/* .timeline-item:hover .timeline-dot {
  background-color: var(--primary-emerald);
  border-color: var(--primary-emerald);
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 10px rgba(13, 107, 86, 0.4);
} */

.timeline-content {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: var(--space-2xs);
}

.timeline-text {
  font-size: 0.875rem;
  color: var(--neutral-700);
}

/* Business Ecosystem Interactive Diagram */
.ecosystem-diagram-container {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 500px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
}

.ecosystem-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-center-node {
  /*background: var(--dark-green);*/
  background: #FFFFFF;
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: var(--radius-round);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(5, 55, 44, 0.1);
  z-index: 10;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.eco-center-node:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(197, 168, 128, 0.4);
}

.eco-brand-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* Position brand nodes radially (4-node cross layout) */
.eco-node-natasha {
  top: 8%;
  left: 50%;
  translate: -50% 0;
  background-color: var(--white);
  border: 3px solid var(--natasha-primary-puce);
  color: var(--natasha-primary-puce);
}

.eco-node-luxe {
  top: 50%;
  right: 8%;
  translate: 0 -50%;
  background-color: var(--white);
  border: 3px solid #b5915b;
  /* Gold Luxe */
  color: #b5915b;
}

.eco-node-naava {
  bottom: 8%;
  left: 50%;
  translate: -50% 0;
  background-color: var(--white);
  border: 3px solid #6bb134;
  /* Green nature */
  color: #386b12;
}

.eco-node-azqiara {
  top: 50%;
  left: 8%;
  translate: 0 -50%;
  background-color: var(--white);
  /* border: 3px solid #ce6ea2; */
  border: 3px solid #a32323;
  /* color: #8c3260; */
  color: #a32323;
}

.eco-brand-node:hover,
.eco-brand-node.active {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.eco-brand-node.active {
  background-color: var(--neutral-100);
}

/* Canvas background for connecting lines */
.ecosystem-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ecosystem-info {
  background-color: var(--neutral-50);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition-smooth);
}

.eco-details-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark-green);
  margin-bottom: var(--space-sm);
}

.eco-details-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-2xs) var(--space-xs);
  border-radius: var(--radius-sm);
  background-color: var(--accent-gold-light);
  color: var(--dark-green);
  align-self: flex-start;
  margin-bottom: var(--space-md);
}

.eco-details-body {
  margin-bottom: var(--space-lg);
}

/* Brand Section styles */
.brand-section-header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.brand-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.brand-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.brand-block:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.brand-block:nth-child(even) .brand-info-content {
  grid-column: 2;
}

.brand-block:nth-child(even) .brand-visual-content {
  grid-column: 1;
  grid-row: 1;
}

.brand-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent-gold-dark);
  margin-bottom: var(--space-md);
}

.brand-description {
  margin-bottom: var(--space-lg);
}

.brand-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.brand-gallery-img {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
}

.brand-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.brand-gallery-img:hover img {
  transform: scale(1.1);
}

/* News Cards & CMS styling */
.news-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  color: var(--neutral-800);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.news-card-date {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold-dark);
  margin-bottom: var(--space-xs);
  display: block;
}

/* Careers & Jobs */
.career-culture-grid {
  margin-bottom: var(--space-3xl);
}

/* Department Grid */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.dept-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-emerald);
}

.dept-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--dark-green);
}

.dept-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.dept-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-emerald) 100%);
  color: rgba(255, 255, 255, 0.4);
}

.dept-card-badge {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  background: var(--accent-gold);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.dept-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.dept-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.dept-card-desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.dept-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-emerald);
  margin-top: var(--space-xs);
  transition: gap var(--transition-fast);
}

.dept-card:hover .dept-card-link {
  gap: 10px;
}

.job-search-box {

  display: flex;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  margin-bottom: var(--space-2xl);
}

.job-input {
  flex: 2;
  padding: 0.75rem var(--space-md);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.job-select {
  flex: 1;
  padding: 0.75rem var(--space-md);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background-color: var(--white);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.job-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.job-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.job-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dark-green);
  margin-bottom: var(--space-2xs);
}

.job-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--neutral-600);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

/* Interactive Forms & Modals */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-2xs);
  color: var(--dark-green);
}

.form-control {
  width: 100%;
  padding: 0.75rem var(--space-md);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 3px rgba(13, 107, 86, 0.15);
}

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

.form-feedback {
  margin-top: var(--space-md);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  display: none;
}

.form-feedback.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: block;
}

.form-feedback.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block;
}

/* Modal Styling */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 55, 44, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: block;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  margin: 3rem auto;
  padding: var(--space-2xl);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50px);
  transition: var(--transition-smooth);
}

.modal.active .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-600);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary-emerald);
}

/* Contact Page elements */
.contact-grid {
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
}

.contact-card {
  padding: var(--space-lg);
}

.contact-form-card {
  padding: var(--space-xl);
}

.contact-card:hover,
.contact-form-card:hover {
  transform: none !important;
}

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

.contact-info-item {
  display: flex;
  gap: var(--space-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  background-color: rgba(13, 107, 86, 0.1);
  color: var(--primary-emerald);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-2xs);
  color: var(--dark-green);
}

.contact-text p {
  color: var(--neutral-700);
  font-size: 0.95rem;
  margin-bottom: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-address-link {
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease;
}

.contact-address-link:hover,
.contact-address-link:focus {
  opacity: 0.75;
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--neutral-300);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-sm);
  background-color: var(--neutral-200);
  position: relative;
}

.map-placeholder-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(234, 234, 230, 0.9), rgba(215, 215, 209, 0.9));
  text-align: center;
  padding: var(--space-xl);
}

.map-placeholder-content svg {
  width: 48px;
  height: 48px;
  fill: var(--primary-emerald);
  margin-bottom: var(--space-sm);
}

/* Footer Section */
footer {
  background-color: var(--dark-green);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 2px solid var(--accent-gold);
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-logo-image {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--neutral-300);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background-color: var(--accent-gold);
  color: var(--dark-green);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  color: var(--neutral-300);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: var(--space-xs);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-xs);
  font-size: 0.9rem;
  color: var(--neutral-300);
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

.footer-contact-link {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus {
  color: var(--accent-gold);
  text-decoration: underline;
}

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

.footer-copyright {
  font-size: 0.85rem;
  color: var(--neutral-400);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
  font-size: 0.85rem;
}

.footer-bottom-links a {
  color: var(--neutral-400);
}

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

/* Animations */
@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal class animations */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

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

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

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: span 3;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .brand-block,
  .brand-block:nth-child(even) {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .brand-block:nth-child(even) .brand-info-content {
    grid-column: auto;
  }

  .brand-block:nth-child(even) .brand-visual-content {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--dark-green);
    flex-direction: column;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-md);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item a {
    color: var(--white);
    font-size: 1.1rem;
    display: block;
    padding: var(--space-xs) 0;
  }

  header.scrolled .nav-item a {
    color: rgba(255, 255, 255, 0.85);
  }

  header.scrolled .nav-item a:hover,
  header.scrolled .nav-item.active a {
    color: var(--accent-gold);
  }

  header.scrolled .nav-item a::after {
    background-color: var(--accent-gold);
  }

  .hamburger {
    display: block;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .ecosystem-visual {
    height: 350px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-card,
  .contact-form-card {
    padding: var(--space-md) !important;
  }

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

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

  .job-search-box {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .job-card .btn {
    width: 100%;
    text-align: center;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }

  .brand-gallery {
    grid-template-columns: 1fr;
  }
}

/* Language Switcher Styling */
.lang-switcher {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: 10px;
}

.lang-link {
  padding: 2px 6px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.8) !important;
  background-color: transparent;
}

.lang-link:hover {
  color: var(--white) !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.lang-link.active {
  background-color: var(--accent-gold) !important;
  color: var(--white) !important;
}

.lang-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

/* Scrolled header state overrides */
header.scrolled .lang-link {
  color: var(--neutral-700) !important;
}

header.scrolled .lang-link:hover {
  color: var(--neutral-900) !important;
  background-color: rgba(0, 0, 0, 0.05);
}

header.scrolled .lang-link.active {
  background-color: var(--primary-emerald) !important;
  color: var(--white) !important;
}

header.scrolled .lang-separator {
  color: var(--neutral-400);
}

@media (max-width: 992px) {

  /* Keep mobile nav drawer links bright even when scrolled and override header.scrolled rules */
  header.scrolled .nav-menu .lang-link,
  .nav-menu .lang-link {
    color: rgba(255, 255, 255, 0.8) !important;
    background-color: transparent !important;
  }

  header.scrolled .nav-menu .lang-link:hover,
  .nav-menu .lang-link:hover {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
  }

  header.scrolled .nav-menu .lang-link.active,
  .nav-menu .lang-link.active {
    background-color: var(--accent-gold) !important;
    color: var(--white) !important;
  }

  header.scrolled .nav-menu .lang-separator,
  .nav-menu .lang-separator {
    color: rgba(255, 255, 255, 0.4) !important;
  }
}

/* Mobile Typography & Layout Comfort Adjustments */
@media (max-width: 768px) {

  h1,
  .hero-title {
    font-size: 2.25rem !important;
  }

  .hero-desc {
    font-size: 1.05rem !important;
  }

  .page-banner {
    height: 40vh !important;
  }

  .page-banner-title {
    font-size: 2rem !important;
  }

  /* Force brand portfolio grids (like grid-4) to collapse to 1-column on mobile for clarity */
  .grid-4 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {

  /* Scale down ecosystem nodes to prevent overlaps */
  .eco-center-node {
    width: 90px !important;
    height: 90px !important;
    font-size: 0.8rem !important;
  }

  .eco-center-node span {
    font-size: 0.55rem !important;
  }

  .eco-brand-node {
    width: 70px !important;
    height: 70px !important;
    font-size: 0.7rem !important;
  }

  .ecosystem-visual {
    height: 260px !important;
  }

  .eco-node-natasha {
    top: -6% !important;
    left: 50% !important;
    translate: -50% 0 !important;
  }

  .eco-node-luxe {
    top: 50% !important;
    right: 5% !important;
    translate: 0 -50% !important;
  }

  .eco-node-naava {
    bottom: -6% !important;
    left: 50% !important;
    translate: -50% 0 !important;
  }

  .eco-node-azqiara {
    top: 50% !important;
    left: 5% !important;
    translate: 0 -50% !important;
  }
}

@media (max-width: 480px) {

  h1,
  .hero-title {
    font-size: 1.85rem !important;
  }

  .hero-desc {
    font-size: 0.95rem !important;
  }

  .page-banner {
    height: 35vh !important;
  }
}

/* Premium Flatpickr overrides to match PT PNG branding */
.flatpickr-calendar {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--neutral-300) !important;
  font-family: var(--font-sans) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected {
  background: var(--primary-emerald) !important;
  border-color: var(--primary-emerald) !important;
}

.flatpickr-months .flatpickr-month {
  color: var(--dark-green) !important;
  fill: var(--dark-green) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 700 !important;
}

.flatpickr-day.today {
  border-color: #cda250 !important;
}

.flatpickr-day.today:hover {
  background: #cda250 !important;
  color: #fff !important;
}

/* Recruitment Process Timeline */
.recruitment-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: var(--space-xl);
  padding: var(--space-md) 0;
  gap: var(--space-md);
}

/* Horizontal line behind the badges on desktop */
.recruitment-timeline::before {
  content: '';
  position: absolute;
  top: calc(var(--space-md) + 30px);
  /* Vertically centered through the 60px badge */
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-emerald) 50%, var(--accent-gold) 100%);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-normal);
}

.timeline-step:hover {
  transform: translateY(-8px);
}

.step-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--accent-gold);
  color: var(--primary-emerald);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.timeline-step:hover .step-badge {
  background-color: var(--primary-emerald);
  border-color: var(--accent-gold);
  color: var(--white);
  box-shadow: 0 0 15px rgba(5, 55, 44, 0.2);
}

.step-title {
  color: var(--primary-emerald);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.timeline-step:hover .step-title {
  color: var(--accent-gold-dark);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--neutral-700);
  line-height: 1.5;
  padding: 0 var(--space-xs);
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
  .recruitment-timeline {
    flex-direction: column;
    gap: var(--space-lg);
    padding-left: var(--space-md);
  }

  .recruitment-timeline::before {
    top: 25px;
    bottom: 25px;
    left: calc(var(--space-md) + 25px);
    /* Center through the 50px mobile badge */
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--accent-gold) 0%, var(--primary-emerald) 50%, var(--accent-gold) 100%);
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-md);
  }

  .timeline-step:hover {
    transform: translateX(8px);
  }

  .step-badge {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .step-content {
    padding-top: var(--space-3xs);
  }

  .step-desc {
    padding: 0;
  }
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
}

.pagination-wrapper nav {
  display: flex;
  justify-content: center;
}

.pagination-wrapper nav>div:first-child {
  display: none;
  /* Hide "Showing X to Y of Z results" text */
}

.pagination-wrapper nav>div:last-child span,
.pagination-wrapper nav>div:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  margin: 0 3px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid var(--neutral-300);
  color: var(--neutral-800);
  background: var(--white);
}

.pagination-wrapper nav>div:last-child span[aria-current="page"] span {
  background: var(--primary-emerald);
  color: var(--white);
  border-color: var(--primary-emerald);
}

.pagination-wrapper nav>div:last-child a:hover {
  background: var(--neutral-100);
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
}

.pagination-wrapper nav>div:last-child span[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Tailwind-less pagination fallback */
.pagination-wrapper .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
}

.pagination-wrapper .pagination li span,
.pagination-wrapper .pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid var(--neutral-300);
  color: var(--neutral-800);
  background: var(--white);
}

.pagination-wrapper .pagination li.active span {
  background: var(--primary-emerald);
  color: var(--white);
  border-color: var(--primary-emerald);
}

.pagination-wrapper .pagination li a:hover {
  background: var(--neutral-100);
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
}

.pagination-wrapper .pagination li.disabled span {
  opacity: 0.4;
  cursor: not-allowed;
}