/* Global hide for mobile close button */
.navbar__close { display: none; }
/*
 * Dune Global FZ LLC — Main Stylesheet
 * Design: Premium Corporate · Deep Navy · Champagne Gold · Ivory
 * Typography: Playfair Display (headings) + Inter (body)
 */

/* ═══════════════════════════════════════════════════════════════
   GOOGLE FONTS IMPORT
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════════════════ */
:root {
  /* Brand Colours */
  --navy: #140d0a;
  --navy-mid: #251610;
  --navy-light: #3d2319;
  --gold: #cca03c;
  --red: #ad141c;
  --gold-light: #dfb962;
  --gold-pale:     #f5e9c8;
  --ivory:         #F8F6F0;
  --ivory-dark:    #EDE9DF;
  --charcoal:      #2C2C2C;
  --red: #ad141c;
  --charcoal-mid:  #4A4A4A;
  --charcoal-light:#6B6B6B;
  --olive:         #8B7355;
  --white:         #FFFFFF;

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

  /* Spacing Scale */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  9rem;

  /* Layout */
  --container-max: 1320px;
  --container-pad: 2rem;
  --section-py:    6rem;

  /* Borders & Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.22);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY SCALE
═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
}

.lead {
  font-size: 1.175rem;
  line-height: 1.75;
  color: var(--charcoal-mid);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════════════════════════ */
.section {
  padding-block: var(--section-py);
}

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

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

.section--navy p {
  color: rgba(255,255,255,0.75);
}

.section--ivory {
  background-color: var(--ivory);
}

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

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__heading {
  margin-bottom: 1.25rem;
}

.section__subheading {
  font-size: 1.1rem;
  color: var(--charcoal-mid);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.section__subheading--center {
  margin-inline: auto;
}

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

/* ═══════════════════════════════════════════════════════════════
   GOLD ACCENT LINE
═══════════════════════════════════════════════════════════════ */
.gold-line {
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.gold-line--center {
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--primary:hover { background-color: var(--red); color: white; border-color: var(--red);
  background-color: var(--red);
  border-color: var(--red);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

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

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

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

.btn--outline-gold:hover {
  background-color: var(--gold);
  color: var(--navy);
}

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

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

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   GRID SYSTEM
═══════════════════════════════════════════════════════════════ */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

/* Responsive two-col content grid used across product/info sections */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap { gap: var(--space-md); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar--transparent {
  background-color: rgba(10, 6, 4, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.navbar--scrolled {
  background-color: var(--navy);
  box-shadow: 0 4px 24px rgba(10,22,40,0.35);
  padding: 0.85rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar__logo-img {
  height: 48px;
  width: auto;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.navbar__logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--gold);
}

.navbar__link--cta {
  background-color: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
}

.navbar__link--cta:hover {
  background-color: var(--red);
  color: var(--navy) !important;
}

/* Dropdown */
.navbar__item { position: relative; }

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background-color: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.navbar__item:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition);
}

.navbar__dropdown-link:hover {
  color: var(--gold);
  background-color: rgba(201,168,76,0.08);
}

/* Mobile nav toggle */

  .navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__bg.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(10,22,40,0.40) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 5rem;
  max-width: 740px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__label::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--gold);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title em {
  color: var(--gold);
  font-style: normal;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 4rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.90) 0%, rgba(10,22,40,0.55) 60%, rgba(10,22,40,0.3) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
}

.page-hero__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  font-weight: 700;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover { color: var(--gold); }

.page-hero__breadcrumb span { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   COMPANY INTRO (2-col)
═══════════════════════════════════════════════════════════════ */
.intro-section {
  padding-block: var(--section-py);
}

.intro-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-section__image-wrap {
  position: relative;
}

.intro-section__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.intro-section__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--gold);
  color: var(--navy);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 140px;
}

.intro-section__badge-number {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.intro-section__content {}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CATEGORY CARDS
═══════════════════════════════════════════════════════════════ */
.product-categories {
  padding-block: var(--section-py);
  background-color: var(--ivory);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 500px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.06);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.4) 55%, transparent 100%);
  transition: background 0.4s ease;
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.55) 60%, rgba(10,22,40,0.1) 100%);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.category-card__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.4s ease;
}

.category-card:hover .category-card__number {
  color: rgba(201,168,76,0.45);
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.category-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.category-card__link:hover { gap: 0.85rem; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════════ */
.services-section {
  padding-block: var(--section-py);
  background-color: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

/* Process steps — 4-col (used in services.php How We Work) */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.service-card {
  background-color: rgba(255,255,255,0.03);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--red));
  transition: height 0.4s ease;
}

.service-card:hover {
  background-color: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
}

.service-card:hover::before { height: 100%; }

.service-card__icon {
  width: 52px;
  height: 52px;
  background-color: rgba(201,168,76,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-card__icon {
  background-color: rgba(201,168,76,0.18);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}

.service-card__link:hover { gap: 0.75rem; }

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US — EDITORIAL
═══════════════════════════════════════════════════════════════ */
.why-section {
  padding-block: var(--section-py);
  background-color: var(--ivory-dark);
}

.why-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-section__image-col {
  position: relative;
}

.why-section__image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.why-section__image-caption {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background-color: var(--navy);
  color: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}

.why-section__image-caption-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gold);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ivory);
}

.why-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-feature__num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  width: 2.5rem;
  line-height: 1.2;
}

.why-feature__content {}

.why-feature__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.why-feature__text {
  font-size: 0.92rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL TRADE SECTION
═══════════════════════════════════════════════════════════════ */
.trade-section {
  padding-block: var(--section-py);
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.trade-section__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    radial-gradient(circle at 25% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 75% 50%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.trade-map-container {
  position: relative;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trade-map-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0.6;
}

.trade-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.3) 50%, rgba(10,22,40,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-map-text {
  text-align: center;
  padding: 2rem;
}

.trade-map-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.trade-map-text p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════ */
.cta-section {
  padding-block: var(--space-3xl);
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-section__text {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background-color: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}

.footer__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__link:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__contact-item a:hover { color: var(--gold); }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background-color var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold);
  background-color: rgba(201,168,76,0.12);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.65);
  transition: fill var(--transition);
}

.footer__social-link:hover svg { fill: var(--gold); }

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

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__bottom-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #25D366;
  color: var(--white);
  padding: 0.85rem 1.25rem 0.85rem 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
  color: var(--white);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}

@keyframes float-pulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT PAGE
═══════════════════════════════════════════════════════════════ */
.products-overview {
  padding-block: var(--section-py);
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

.product-card__image-wrap {
  overflow: hidden;
  height: 220px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image { transform: scale(1.06); }

.product-card__body {
  padding: 1.5rem;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background-color: var(--gold-pale);
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--charcoal-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--ivory-dark);
}

/* ═══════════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════════ */
.form-section {
  padding-block: var(--section-py);
}

.form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 820px;
  margin-inline: auto;
}

.form-card--wide {
  max-width: 1000px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-label .required {
  color: #C0392B;
  margin-left: 0.2rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background-color: var(--ivory);
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background-color var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #C0392B;
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-error-msg {
  font-size: 0.78rem;
  color: #C0392B;
  display: none;
}

.form-group.has-error .form-error-msg { display: block; }

.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--charcoal-light);
}

/* Form alerts */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-alert.show { display: flex; }

.form-alert--success {
  background-color: #EAFAF1;
  border: 1px solid #A9DFBF;
  color: #1E8449;
}

.form-alert--error {
  background-color: #FDECEA;
  border: 1px solid #F1948A;
  color: #922B21;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background-color: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}

.value-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.value-item__text {
  font-size: 0.88rem;
  color: var(--charcoal-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT INFO CARDS
═══════════════════════════════════════════════════════════════ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
  background-color: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-info-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.contact-info-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-info-card__text {
  font-size: 0.88rem;
  color: var(--charcoal-mid);
  line-height: 1.65;
}

.contact-info-card__text a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-info-card__text a:hover { color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════
   SUSTAINABILITY
═══════════════════════════════════════════════════════════════ */
.sustainability-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.pillar-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ivory-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pillar-card__text {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-py: 4.5rem;
  }

  .navbar__menu { gap: 0; }
  .navbar__link { padding: 0.5rem 0.6rem; font-size: 0.78rem; }

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

  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card { height: 420px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .intro-section__grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-section__image { height: 380px; }
  .intro-section__badge { right: 0; }

  .why-section__layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-section__image { height: 380px; }
  .why-section__image-caption { right: 0; }

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

  .contact-info-grid { grid-template-columns: 1fr; }

  .sustainability-pillars { grid-template-columns: 1fr 1fr; }

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-py: 3rem;
    --container-pad: 1.1rem;
  }

  /* ── Mobile hamburger button ─────────────── */
  .navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    align-items: center;
  }

  .navbar__toggle-bar {
    width: 22px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }

  /* ── Mobile slide-in drawer ──────────────── */
  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 88vw);
    height: 100dvh;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1050;
    box-shadow: -10px 0 50px rgba(0,0,0,0.55);
    border-left: 1px solid rgba(201,168,76,0.15);
  }

  .navbar__nav.open { right: 0; }

  /* ── Close button ───────────────────────── */
  .navbar__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    transition: background 0.2s ease;
    z-index: 10;
  }

  .navbar__close:hover { background: rgba(201,168,76,0.25); color: var(--gold); }

  /* ── Nav header branding in drawer ──────── */
  .navbar__nav::before {
    content: 'DUNE GLOBAL';
    display: block;
    padding: 2rem 1.5rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 0.75rem;
  }

  /* ── Menu items ──────────────────────────── */
  .navbar__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 2rem;
  }

  .navbar__item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .navbar__item:last-child { border-bottom: none; }

  .navbar__link {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 0.25rem;
    width: 100%;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
  }

  .navbar__link:hover { color: var(--gold); }

  .navbar__link--cta {
    margin-top: 1rem;
    background: var(--gold);
    color: var(--navy) !important;
    border-radius: 6px;
    padding: 0.9rem 1.25rem;
    text-align: center;
    justify-content: center;
    font-weight: 700;
  }

  /* ── Mobile dropdown (accordian) ─────────── */
  .navbar__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 6px;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem 0.75rem;
    display: none;
    margin-bottom: 0.5rem;
  }

  .navbar__item.open .navbar__dropdown { display: block; }

  .navbar__dropdown-link {
    padding: 0.55rem 0.75rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.72);
    border-radius: 4px;
  }

  .navbar__dropdown-link:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

  /* ── Overlay ─────────────────────────────── */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
  }

  .nav-overlay.show {
    opacity: 1;
    pointer-events: all;
  }

  /* ── Hero ────────────────────────────────── */
  .hero__content { padding-block: 6rem 3.5rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* ── Grids ───────────────────────────────── */
  .category-grid { grid-template-columns: 1fr; }
  .category-card { height: 340px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps-grid { grid-template-columns: 1fr 1fr; }
  .product-list-grid { grid-template-columns: 1fr; }
  /* Hide the decorative connector line in process steps on mobile */
  .process-steps-grid > div[style*="position:absolute"] { display: none; }

  /* ── Two-column content blocks → single col ─ */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* ── Footer ──────────────────────────────── */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer__newsletter { flex-direction: column; text-align: center; gap: 1.5rem; }
  .footer__newsletter-form { flex-direction: column; }

  /* ── Forms ───────────────────────────────── */
  .form-grid { grid-template-columns: 1fr; }
  .form-grid--3 { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.25rem; }

  /* ── About / Sustainability ──────────────── */
  .about-values { grid-template-columns: 1fr; }
  .sustainability-pillars { grid-template-columns: 1fr; }

  /* ── Trade map ───────────────────────────── */
  .trade-map-image { height: 260px; }

  /* ── Intro / Why section ─────────────────── */
  .intro-section__badge { position: static; margin-top: 1.5rem; }
  .why-section__image-caption { position: static; margin-bottom: 1.5rem; max-width: 100%; }

  /* ── Products page two-col grids ─────────── */
  .product-card__image-wrap { height: 170px; }

  /* ── Page hero smaller on mobile ─────────── */
  .page-hero { min-height: 280px; }
  .page-hero__content { padding-top: 1rem; }
  .page-hero__title { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  /* ── Section headings scale ──────────────── */
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.5rem); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --container-pad: 1rem; }

  .btn { padding: 0.75rem 1.4rem; font-size: 0.82rem; }
  .btn--lg { padding: 0.85rem 1.6rem; font-size: 0.88rem; }

  .hero__title { font-size: clamp(1.9rem, 9vw, 2.8rem); }

  .intro-section__image { height: 260px; }
  .why-section__image { height: 260px; }

  /* Products/services inline items wrap */
  li[style*="display:flex"] { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════ */
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }

.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.divider {
  border: none;
  border-top: 1px solid var(--ivory-dark);
  margin-block: 2rem;
}

.divider--gold {
  border-top-color: rgba(201,168,76,0.3);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge--gold {
  background-color: var(--gold-pale);
  color: var(--gold);
}

.badge--navy {
  background-color: rgba(10,22,40,0.08);
  color: var(--navy);
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.btn--primary { background-color: var(--gold); } .btn--primary:hover { background-color: var(--red); color: white; border-color: var(--red); }


/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  padding: 0.85rem 1.4rem 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s ease;
  letter-spacing: 0.02em;
  border: none;
  overflow: hidden;
}

.whatsapp-float:hover {
  background: #1ebe5c;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55), 0 4px 14px rgba(0,0,0,0.22);
  color: #fff;
}

.whatsapp-float__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.whatsapp-float__label {
  white-space: nowrap;
  line-height: 1;
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.45);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.75; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* Hide label on mobile — show icon only */
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.9rem;
    border-radius: 50%;
  }
  .whatsapp-float__label { display: none; }
  .whatsapp-float__icon { width: 28px; height: 28px; }
}

/* --- NEW FOOTER DESIGN --- */
.footer {
  background-color: var(--navy);
  border-top: none;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.footer__top-border {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
  width: 100%;
  margin-bottom: 4rem;
}

.footer__newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: var(--navy-mid);
  padding: 2.5rem 3rem;
  border-radius: var(--radius-md);
  margin-bottom: 4rem;
  border: 1px solid rgba(204, 160, 60, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.footer__newsletter-content {
  flex: 1;
  min-width: 300px;
}

.footer__newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__newsletter-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}

.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  min-width: 300px;
}

.footer__newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: white;
  font-family: var(--font-body);
}

.footer__newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer__link-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--red);
  border-radius: 50%;
  margin-right: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer__link:hover .footer__link-bullet {
  background-color: var(--gold);
  transform: scale(1.5);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__contact-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(204, 160, 60, 0.1);
  border: 1px solid rgba(204, 160, 60, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer__contact-item:hover .footer__contact-icon-wrap {
  background-color: var(--gold);
  transform: translateY(-2px);
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.footer__contact-item:hover .footer__contact-icon {
  stroke: var(--navy);
}

.footer__bottom-divider {
  color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .footer__newsletter {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__newsletter-form {
    width: 100%;
    flex-direction: column;
  }
}
/* ==========================================================================
   PREMIUM BOX DESIGNS & ENHANCED TRANSITIONS (OVERRIDE)
========================================================================== */

/* Enhanced Shadow Variables for Premium Depth */
:root {
  --shadow-premium-base: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-premium-hover: 0 15px 35px rgba(20, 13, 10, 0.15), 0 5px 15px rgba(204, 160, 60, 0.1);
  --transition-premium: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Premium Product Cards */
.product-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-premium-base);
  transition: var(--transition-premium);
  background: linear-gradient(145deg, #ffffff, #fdfbf7);
  position: relative;
  z-index: 1;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--red)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-premium);
  z-index: 2;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-premium-hover);
}
.product-card:hover::before {
  opacity: 1;
}
.product-card__image-wrap {
  height: 240px;
}
.product-card__image {
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover .product-card__image { 
  transform: scale(1.1); 
}

/* Premium Form Cards */
.form-card {
  box-shadow: 0 10px 40px rgba(20, 13, 10, 0.08);
  border: 1px solid rgba(204, 160, 60, 0.15);
  background: linear-gradient(145deg, #ffffff, #faf9f6);
  transition: var(--transition-premium);
  position: relative;
}
.form-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-card:hover {
  box-shadow: 0 15px 50px rgba(20, 13, 10, 0.12);
}

/* Premium Category/Service/Pillar Cards */
.contact-info-card, .pillar-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-premium-base);
  transition: var(--transition-premium);
  background: #ffffff;
}

.service-card {
  background-color: #1a110d; /* A rich dark brown/charcoal, slightly lighter than navy */
  border: 1px solid rgba(204, 160, 60, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-premium);
  position: relative;
  z-index: 1;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--red)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-premium);
  z-index: 2;
  pointer-events: none;
}
.contact-info-card:hover, .pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(204, 160, 60, 0.3);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(204, 160, 60, 0.1);
}
.service-card:hover::after {
  opacity: 1;
}

/* Button Animations */
.btn {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}
.btn:hover::after {
  left: 100%;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(173, 20, 28, 0.3);
}

/* Interactive Navigation Underlines */
.navbar__link {
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}
.navbar__link:hover::after, .navbar__link[aria-current="page"]::after {
  width: 100%;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS REFINEMENTS
========================================================================== */
@media (max-width: 768px) {
  /* Typography Scaling */
  h1, .hero-title { font-size: 2.25rem !important; line-height: 1.2 !important; }
  h2, .section__heading { font-size: 1.8rem !important; }
  
  /* Container & Spacing */
  .container { padding-inline: 1.25rem; }
  .section, .form-section { padding-block: 3.5rem !important; }
  
  /* Cards on Mobile */
  .product-card__image-wrap { height: 200px; }
  .form-card { padding: 2rem 1.25rem !important; border-radius: var(--radius-md) !important; }
  .form-card::after { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  
  /* Responsive Grids */
  .product-list-grid, .footer__grid, .contact-info-grid, .sustainability-pillars {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}


/* ═══════════════════════════════════════════════════════
   PRODUCT CARDS — Featured Products Grid (index.php)
═══════════════════════════════════════════════════════ */
.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 0;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.4rem 1.2rem;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 3px;
  padding: 0.18rem 0.6rem;
  margin-bottom: 0.65rem;
  align-self: flex-start;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.86rem;
  color: var(--charcoal-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.1rem;
}

.product-card__footer {
  margin-top: auto;
}

/* btn--outline-gold — used on product cards */
.btn--outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease;
  background: transparent;
  letter-spacing: 0.03em;
}

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

.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

/* Responsive: stack to 2 columns on tablet, 1 on mobile */
@media (max-width: 1024px) {
  .product-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-list-grid {
    grid-template-columns: 1fr;
  }
  .product-card__image-wrap {
    height: 180px;
  }
}

/* ═══════════════════════════════════════════════════════
   GLOBAL OVERFLOW & MOBILE SAFETY NET
═══════════════════════════════════════════════════════ */

/* Prevent any element from causing horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* All images must be bounded */
img { max-width: 100%; height: auto; }

/* Catch any surviving inline grid that would overflow on mobile */
@media (max-width: 768px) {
  /* Any element with an inline grid style that wasn't replaced */
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Ensure flex rows wrap on mobile */
  [style*="display:flex"],
  [style*="display: flex"] {
    flex-wrap: wrap;
  }

  /* Prevent large padding/margin inline blocks from overflowing */
  .container { padding-inline: 1rem; }
  section { overflow-x: hidden; }
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATION — PREVENT WHITE SPACE
   Elements that haven't been triggered by JS within 1.5s
   are forced visible to prevent blank sections.
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* On mobile, reduce the transform so elements don't 
     start off-screen which causes layout shifts */
  .reveal { transform: translateY(20px); }
  .reveal--left { transform: translateX(-20px); }
  .reveal--right { transform: translateX(20px); }
  .reveal--scale { transform: scale(0.96); }
}
