@font-face {
  font-family: 'CameraPlainVariable';
  src: url('fonts/CameraPlainVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


:root {
  --bg: hsl(36, 33%, 97%);
  --fg: hsl(25, 30%, 12%);
  --card: hsl(36, 40%, 99%);
  --primary: #432a19;
  --primary-fg: hsl(36, 40%, 97%);
  --secondary: hsl(36, 28%, 92%);
  --muted: hsl(36, 22%, 90%);
  --muted-fg: hsl(25, 15%, 38%);
  --accent: hsl(38, 55%, 52%);
  --accent-fg: hsl(25, 45%, 12%);
  --gold: oklch(75.057% 0.12816 81.397);
  --gold-fg: hsl(25, 45%, 12%);
  --border: hsl(32, 20%, 85%);
  --radius: 0.25rem;

  --gradient-hero: linear-gradient(135deg, hsl(25 45% 12% / .85) 0%, hsl(25 45% 18% / .55) 100%);
  --gradient-soft: linear-gradient(180deg, hsl(36 33% 97%) 0%, hsl(36 28% 92%) 100%);
  --shadow-elegant: 0 20px 60px -20px hsl(25 45% 18% / .25);
  --shadow-soft: 0 4px 20px -4px hsl(25 45% 18% / .12);
  --shadow-gold: 0 10px 40px -10px hsl(40 65% 55% / .4);
  --transition: all .4s cubic-bezier(.4, 0, .2, 1);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--border);
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  min-height: 100vh;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  letter-spacing: -0.025em;
  font-weight: 400;
}

/* ── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: hsl(36 33% 97% / .8);
  border-bottom: 1px solid var(--border);
}
.mobile-cta{display: none;}

.header-cta{
  display: flex;
  max-width: fit-content;
  flex-wrap: wrap;
  gap: 15px;
width: 230px;
max-width: 100%;
  a{

    flex: 1;
    padding: 0 10px !important;
    height: 2.5rem !important;
  }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 100px; */
  height: fit-content;
  min-height: 90px;
  column-gap: 13px;
}

.logo__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  img {
    max-width: 180px;
  }
}

@media (max-width:800px) and (min-width: 500px) {
  .logo__brand img {
    max-width: 160px;
  }
}

@media (max-width: 500px) {
  .logo__brand img {
    margin-left: -7px;
    max-width: 140px;
  }
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-fg);
}

.nav-links {
  display: flex;
  align-items: center;
  /* gap: 2.5rem; */
  width: 586px;
  max-width: 100%;
  justify-content: space-between;
}

.nav-links a {
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: hsl(25 30% 12% / .8);
  transition: var(--transition);

  &:hover {
    color: var(--accent);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0;
  transition: all .15s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;

  &:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-fg);
  padding: 0 1.5rem;
  height: 2.5rem;

  &:hover {
    background-color: hsl(25 45% 18% / .85);
  }
}

.btn-gold {
  background-color: var(--gold);
  color: var(--gold-fg);
  padding: 0 2rem;
  height: 3.5rem;
  box-shadow: var(--shadow-gold);

  &:hover {
    background-color: hsl(40 65% 55% / .9);
  }
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsl(36 40% 97% / .4);
  color: var(--primary-fg);
  padding: 0 2rem;
  height: 3.5rem;

  &:hover {
    background-color: var(--primary-fg);
    color: var(--primary);
  }
}

.btn-full {
  width: 100%;
  background-color: var(--primary);
  color: var(--primary-fg);
  padding: 0 2rem;
  height: 3.5rem;

  &:hover {
    background-color: hsl(25 45% 18% / .85);
  }
}

.mobile-menu-btn {
  display: none;
  color: var(--primary);
}



  /* ── Nav Dropdown ─────────────────────────────────────── */
.nav-item--dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: hsl(25 30% 12% / .8);
  transition: var(--transition);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  position: relative;
  a{
    z-index: 2;
    position: relative;
  }
}

.nav-dropdown-btn:hover {
  color: var(--accent);
}

.dropdown-chevron {
  transition: transform 0.25s ease;
}

/* rotate chevron on hover (desktop) and open (mobile) */
.nav-item--dropdown:hover .dropdown-chevron,
.nav-item--dropdown.open  .dropdown-chevron {
  transform: rotate(180deg);
}

/* dropdown panel — hidden by default */
.nav-dropdown {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: 4px solid var(--accent);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-elegant);
  min-width: 220px;
  padding: 6px;
  z-index: 100;
  /* hidden state */
  opacity: 0;
  pointer-events: none;
  translate: 0 -6px;
  transition: opacity 0.2s ease-in-out, translate 0.2s ease-in-out;
}

/* invisible bridge fills the gap so hover doesn't break */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  /*background:red;*/
  z-index: -1;
  height: 45px;
}

/* show on hover — desktop only */
@media (min-width: 1000px) {
  .nav-item--dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    translate: 0 0px;
    transform: translateX(-50%);
  }
}

.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--fg);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  background: var(--secondary);
  color: var(--accent);
}

.dropdown-contact-mobile { display: none; }

/* ── Mobile dropdown ──────────────────────────────────── */
@media (max-width: 999px) {
  .nav-dropdown-btn {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    translate: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    background: transparent;
    padding: 0px 0 0px 12px;
    margin-top: 0px;
    /* hidden by default on mobile */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, max-height 0.25s ease;
  }

  /* show on .open class (toggled by JS click) */
  .nav-item--dropdown.open .nav-dropdown {
    opacity: 1;
    padding: 4px 0 4px 12px;
    max-height: 200px;
    pointer-events: all;
  }

  .dropdown-contact-mobile { display: block; }

  .nav-dropdown li a {
    padding: 6px 8px;
    border-radius: 4px;
  }
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-block: 8rem;
}

.hero-inner {
  max-width: 48rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 1.5rem;
}

.tag-gold {
  color: var(--gold);
}

.tag-accent {
  color: var(--accent);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 96px);
  color: var(--primary-fg);
  line-height: 1;
  margin-bottom: 2rem;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-desc {
  font-size: clamp(18px, 4vw, 20px);
  color: hsl(36 40% 97% / .8);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: hsl(36 40% 97% / .6);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ── Section shared ──────────────────────────────────── */
.section {
  padding-block: 6rem;
}

@media (min-width: 768px) {
  .section {
    padding-block: 8rem;
  }
}

.section-tag {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--accent);
  font-style: normal;
}

.divider {
  width: 4rem;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 2rem;
}

.divider-center {
  margin-inline: auto;
}

/* ── About ───────────────────────────────────────────── */
.about {
  background-color: var(--bg);
}

.about .container {
  display: grid;
  gap: 4rem;
  /* align-items: center; */
}

@media (min-width: 768px) {
  .about .container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.about-body p {
  color: var(--muted-fg);
  font-size: clamp(1.0625rem, 2.5vw, 18px);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-body p.smaller-p {
  font-size: 16px;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}

.about-image {
  position: relative;
  padding-top: 5px;
  height: fit-content;

  img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: var(--shadow-elegant);
  }

  &::before {
    content: '';
    position: absolute;
    width: 8rem;
    bottom: -1.5rem;
    height: 8rem;
    border: 2px solid var(--gold);
    display: block;
    z-index: 1;
  }

  &.floating-box-right::before {
    right: -1.5rem !important;
  }

  &:not(.floating-box-right)::before {
    left: -1.5rem;
  }
}


@media (max-width: 768px) {
  .about-image::before {
    display: none !important;
  }
}

/* ── Machines ────────────────────────────────────────── */
.machines {
  background-image: var(--gradient-soft);
}

.machines-intro {
  max-width: 42rem;
  margin-bottom: 4rem;
}

.machines-intro p {
  color: var(--muted-fg);
  font-size: clamp(1.0625rem, 2.5vw, 18px);
  line-height: 1.75;
  font-weight: 300;
}

.machines-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .machines-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.machines-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  order: 2;
}

@media (min-width: 1024px) {
  .machines-features {
    order: 1;
  }
}

.feature-card {
  background-color: var(--card);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);

  svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: var(--transition);
  }

  h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }

  p {
    font-size: 0.875rem;
    color: var(--muted-fg);
    font-weight: 300;
  }

  &:hover {
    border-color: var(--gold);

    svg {
      color: var(--gold);
    }
  }
}

.machines-image {
  position: relative;
  order: 1;
}

@media (min-width: 1024px) {
  .machines-image {
    order: 2;
  }
}

.machines-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

.machines-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: var(--gold);
  color: var(--gold-fg);
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  box-shadow: var(--shadow-gold);
  display: none;
}

@media (min-width: 768px) {
  .machines-badge {
    display: block;
  }
}

/* ── Products ────────────────────────────────────────── */
.products {
  background-color: var(--bg);
}

.products-header {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.products-header p {
  color: var(--muted-fg);
  font-size: clamp(1.0625rem, 2.5vw, 18px);
  font-weight: 300;
}

.products-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  cursor: pointer;

  &:hover .product-img {
    transform: scale(1.05);
  }

  &:hover .product-arrow {
    transform: translateX(0.25rem);
  }

  &:hover .product-link {
    color: var(--gold);
  }
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/5;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: hsl(36 33% 97% / .9);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.product-name {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--muted-fg);
  font-weight: 300;
  line-height: 1.625;
}

.product-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  gap: 0.5rem;
}

.product-arrow {
  transition: var(--transition);
}

/* ── Capabilities ────────────────────────────────────── */
.capabilities {
  background-color: var(--primary);
  color: var(--primary-fg);
}

.capabilities-header {
  display: grid;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .capabilities-header {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.capabilities-header h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.25;
  color: var(--primary-fg);
}

.capabilities-header h2 em {
  color: var(--gold);
  font-style: normal;
}

.capabilities-header p {
  color: hsl(36 40% 97% / .7);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background-color: hsl(36 40% 97% / .1);
}

@media (min-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cap-card {
  background-color: var(--primary);
  padding: 2rem;
  transition: var(--transition);

  svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-fg);
  }

  p {
    font-size: 0.875rem;
    color: hsl(36 40% 97% / .7);
    font-weight: 300;
    line-height: 1.625;
  }

  &:hover {
    background-color: hsl(36 40% 97% / .05);
  }
}

/* ── Trust By ─────────────────────────────────────────── */

.trusted-by-wrapper {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  flex-direction: column;

}

.trusted-by-wrapper .trusted-by-header {
  height: fit-content;
}

.trusted-by-wrapper h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.25;
  color: var(--primary-fg);
}

.trusted-by-wrapper h2 em {
  color: var(--gold);
  font-style: normal;
}

.trusted-by-wrapper .clients-logos {
  /* background-color: red; */
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;

  span {
    display: block;
    aspect-ratio: 1/1;
    width: 80px;
    height: auto;

    /* background-color: var(--muted); */
    img {
      filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(7%) hue-rotate(119deg) brightness(102%) contrast(100%);
    }
  }
}

@media (max-width:755px) {
  .trusted-by-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trusted-by-wrapper .clients-logos {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width:500px) {
  .trusted-by-wrapper .clients-logos span {
    width: 55px;
  }

}

/* ── Inquiry ─────────────────────────────────────────── */
.inquiry {
  background-color: var(--bg);
}

.inquiry .container {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .inquiry .container {
    grid-template-columns: 1fr 1fr;
  }
}

.inquiry-body p {
  color: var(--muted-fg);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.inquiry-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inquiry-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;

  svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
}

.inquiry-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-fg);
}

.inquiry-item-value {
  color: var(--primary);
}

.form-card {
  background-color: var(--card);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-card #success-msg:not(:has(svg)){
  display: none;
}
@media (min-width: 768px) {
  .form-card {
    padding: 2.5rem;
  }
}
@media (max-width: 368px) {
  /* .form-card {margin:0 -23px !important;padding: 0px !important; border: 0px !important; background-color: transparent;} */
  .form-card {overflow: hidden; padding: 1rem;}
  .g-recaptcha {
      transform: scale(0.74);
      transform-origin: left center;
  }
}



.form-group__row {
  display: grid;
  gap: 1.25rem;

  @media (min-width: 600px) {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-fg);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  height: 48px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--fg);
  outline: none;
  transition: all .15s cubic-bezier(.4, 0, .2, 1);

  &::placeholder {
    color: var(--muted-fg);
  }

  &:focus {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
  }
}

.form-group input {
  height: 3rem;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.career-inquiry p {
  margin-bottom: 10px;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background-color: var(--primary);
  color: hsl(36 40% 97% / .7);
  border-top: 1px solid hsl(36 40% 97% / .1);
}

.site-footer .container {
  padding-block: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-footer .container {
    flex-direction: row;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  img {
    width: 160px;
  }
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-fg);
}

.footer-brand-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.footer-copy {
  font-size: 0.875rem;
  font-weight: 300;
}
.footer-copy a{
  color: #ffff !important;
}

.footer-copy span {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .footer-copy span {
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-copy {
    text-align: center;
  }
}

.icon-close {
  display: none !important;
}

.mobile-menu-btn.active .icon-menu {
  display: none !important;
}

.mobile-menu-btn.active .icon-close {
  display: block !important;
}
.company-mobile  { display: block; }
.company-desktop { display: none;  }

@media (min-width: 1000px) {
    .company-mobile  { display: none;  }
    .company-desktop { display: block; }
}
/* ── Responsive tweaks ───────────────────────────────── */
@media (max-width: 999px) {
  .nav-links {
    position: absolute;
    background: #fff;
    width: 100%;
    height: fit-content;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: start;
    padding: 1.5rem 2rem !important;
    gap: 10px !important;
    display: none;

    &.show {
      display: flex !important;
    }

    li {
      width: fit-content;
    }
  }

  .header-cta {
    display: none;
  }
  .mobile-cta{
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    /* background-color: var(--primary); */
    width: 100% !important;
    /* text-align: center; */
    /* display: block; */
    a{
      padding: 8px 12px !important;
      height: fit-content !important;
      flex: 1;
      &.btn-primary{
        color: #fff !important;
      }
    }
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-sub {
    display: none;
  }
}



/* ------------------------------------------------------- */
/* ABOUT US PAGE  */
/* ------------------------------------------------------- */
/* ── Page Hero (shorter) ──────────────────────────── */
.page-hero {
  position: relative;
  min-height: 360px;
  height: 360px;
  max-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero .hero-content {
  padding-block: 5rem 4rem;
}

.page-hero .hero-inner {
  max-width: 42rem;
}

.page-hero .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

/* ── Vision & Mission ─────────────────────────────── */
.vision-mission {
  background-color: var(--primary);
  color: var(--primary-fg);
}

.vision-mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vision-mission-header .section-tag {
  color: var(--gold);
}

.vision-mission-header h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  color: var(--primary-fg);
  margin-bottom: 1rem;
}

.vision-mission-header h2 em {
  color: var(--gold);
  font-style: normal;
}

.vision-mission-header .divider {
  margin-inline: auto;
}

.vm-grid {
  display: grid;
  gap: 1px;
  background-color: hsl(36 40% 97% / .1);
}

@media (min-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vm-card {
  background-color: var(--primary);
  padding: 3rem 2.5rem;
  transition: var(--transition);
}

.vm-card:hover {
  background-color: hsl(36 40% 97% / .05);
}

.vm-card-tag {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.vm-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-fg);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.vm-card h3 em {
  color: var(--gold);
  font-style: normal;
}

.vm-card .vm-divider {
  width: 3rem;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.vm-card p {
  font-size: 1.0625rem;
  color: hsl(36 40% 97% / .75);
  font-weight: 300;
  line-height: 1.75;
}

.vm-card svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}





/* ============================================== */

.section.catalogues {
  padding-top: 0 !important;
  scroll-margin-top: 40vh;

  .container {
    .inner-wrapper {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      row-gap: 2rem;
      flex-wrap: wrap;
      justify-content: space-between;
      background-color: #fff;
      padding: 1rem 2rem !important;
      border-radius: 10px;
      border: 1px solid var(--gold);
      align-items: center;
      box-shadow: var(--shadow-soft);

      .section-title {
        margin: 0 !important;
        font-size: clamp(1.8rem, 3vw, 2rem);
      }

      .btn-holder,
      .title-header {
        height: fit-content !important;
      }

      .btn-holder {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
      }

      .btn {
        padding: 1rem 2rem !important;
        height: auto !important;
      }

      @media (max-width:820px) {
        flex-direction: column;
        text-align: center;

        .btn-holder {
          justify-content: center;
        }
      }

      @media (max-width:520px) {
        padding: 15px !important;

        .btn-holder {
          width: 100% !important;
          justify-content: space-between !important;
          flex-wrap: nowrap !important;
        }

        .btn {
          /* width: 45% !important; */
          flex: 1;
          padding: 1rem !important;
        }
      }

      @media (max-width:402px) {
        .btn-holder {
          flex-direction: column !important;
          gap: 1rem !important;
        }
      }
    }
  }
}



/* ============================================== */
/* ============================================== */

.map_export {
  position: relative;
  display: block;
  /* max-width: 800px; */
  margin: 0 auto;
.section-title{text-align: center; margin-right:auto; margin-left:auto;}
  svg {
    width: 100%;
    position: static;
    display: block;

    path {
      fill: #dfdfdf;
      transition: 0.6s;
      stroke: #eee;
      stroke-width: 0.35;
      display: block;

      &:hover {
        fill: var(--primary);
        cursor: pointer;
      }
    }

    #SA,
    #YE,
    #OM,
    #AE,
    #QA,
    #KW,
    #JO,
    #LB,
    #AF,
    #BD,
    #LK,
    #ET,
    #ZA,
    #NG,
    #MA,
    #EG {
      fill: var(--accent);
      filter: drop-shadow(1px 1px rgba(0, 0, 0, 0.256));
    }

  }

  .pin {
    position: absolute;
    text-align: center;
    display: flex;
    column-gap: 5px;
    /* text-shadow: 1px 1px 3px #fff; */
    

    &::before {
      content: '';
      display: block;
      border-radius: 50%;
      width: 25px;
      aspect-ratio: 1/1;
      animation: pulse-animation 2s infinite;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      filter: brightness(0) saturate(100%) invert(74%) sepia(38%) saturate(729%) hue-rotate(353deg) brightness(89%) contrast(88%);
      background-image: url(../images/location_icon.png);
    }
    /* &::after {
      content: '';
      background-color: var(--primary);
      width: 70%;
      height: 2px;
      position: absolute;
      bottom: -3px;
      left: 30px;
    } */

    &#africa {
      left: 40%;
      bottom: 20%;
    }

    &#middleEast {
      left: 53%;
      bottom: 32%;
    }

    &#southAsia {
      left: 68%;
      bottom: 22%;
    }
  }


  .export-map-img{
    /* background-color: red !important; */
    width: 100%;
    display: flex;
    justify-content: center;
    img{
      width: 100%;
      max-width: 950px;
      height: auto;
    } 
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #dfad0886;
  }

  100% {
    box-shadow: 0 0 0 24px #00000000;
  }
}

.section.what_we_export{
  background-color: var(--bg);
  padding-top: 0 !important;
  scroll-margin-top: 40vh;

  .container {
    text-align: center;
    .section-title {
      margin-right:auto; 
      margin-left:auto;
    }

    ul{
      /* margin-top: 2rem; */
      display: inline-block;
      text-align: center;
      max-width: fit-content;

      li {
        font-size: 1.0625rem;
        color: var(--muted-fg);
        font-weight: 300;
        padding: 3px 10px;
        margin: 5px 0;
        &:not(:last-child) {
        border-bottom: 1px solid #ccc;
      }
      }
    }
  }
}