/* =========================================================
   NAVIXA GLOBAL
   PREMIUM CORPORATE BLUE + GOLD THEME
   ========================================================= */

:root {
  --navy: #061744;
  --navy-2: #09245f;

  --blue: #1246a8;
  --blue-2: #1b5bc7;

  --gold: #c9951b;
  --gold-2: #e2b12b;
  --gold-3: #f3d37a;

  --white: #ffffff;
  --paper: #f6f8fc;

  --ink: #102044;
  --muted: #66738d;

  --line: #dfe5ef;

  --shadow:
    0 20px 60px rgba(6, 23, 68, 0.10);

  --radius: 16px;
}


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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}


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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.94);

  border-bottom:
    1px solid rgba(6, 23, 68, 0.08);

  backdrop-filter: blur(18px);

  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-header.scrolled {
  box-shadow:
    0 8px 25px rgba(6, 23, 68, 0.08);
}

.nav {
  min-height: 76px;

  display: flex;
  align-items: center;

  gap: 34px;
}


/* ---------- Logo ---------- */

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
    width: 155px;
    height: 52px;
    display: block;
    object-fit: contain;
    object-position: center;
}


/* ---------- Navigation ---------- */

nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 30px;
}

nav a {
  position: relative;

  color: #3e4b65;

   font-size: 13px;
  font-weight: 700;

  padding: 8px 0;
}

nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--gold);

  transition: width 0.25s ease;
}

nav a:hover {
  color: var(--navy);
}

nav a:hover::after {
  width: 100%;
}


/* ---------- Enquire Button ---------- */

.nav-cta {
  padding: 12px 21px;

  border-radius: 999px;

  background: var(--navy);
  color: var(--white);

  font-size: 10px;
  font-weight: 800;

  box-shadow:
    0 8px 22px rgba(6, 23, 68, 0.18);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}


/* ---------- Mobile Button ---------- */

.menu-toggle {
  display: none;

  margin-left: auto;

  border: 0;

  background: transparent;

  color: var(--navy);

  font-size: 25px;

  cursor: pointer;
}


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

.hero {
  min-height: 690px;

  position: relative;

  overflow: hidden;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 86% 48%,
      rgba(27, 91, 199, 0.45),
      transparent 29%
    ),
    radial-gradient(
      circle at 76% 15%,
      rgba(226, 177, 43, 0.14),
      transparent 18%
    ),
    linear-gradient(
      118deg,
      #030f32 0%,
      #061744 48%,
      #0b327e 100%
    );
}


/* ---------- Globe Rings ---------- */

.hero::before {
  content: "";

  position: absolute;

  width: 680px;
  height: 680px;

  right: -180px;
  top: -120px;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.018),
    0 0 0 110px rgba(255, 255, 255, 0.014),
    0 0 0 165px rgba(255, 255, 255, 0.01);
}


/* ---------- Gold Arc ---------- */

.hero::after {
  content: "";

  position: absolute;

  inset:
    auto -10% -58% 35%;

  height: 520px;

  transform: rotate(-9deg);

  border-top:
    1px solid rgba(226, 177, 43, 0.16);

  border-radius: 50%;
}


/* ---------- Overlay ---------- */

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 15, 50, 0.92) 0%,
      rgba(3, 15, 50, 0.72) 52%,
      rgba(3, 15, 50, 0.16) 100%
    );
}


/* ---------- Hero Content ---------- */

.hero-content {
  position: relative;

  z-index: 2;

  padding:
    110px 0
    125px;

  max-width: 850px;
}


/* ---------- Hero Brand Line ---------- */

.hero-brandline {
  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--gold-2);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.25em;

  margin-bottom: 21px;
}

.hero-brandline span {
  width: 20px;
  height: 1px;

  background: var(--gold-2);

  opacity: 0.7;
}


/* ---------- Hero Heading ---------- */

.hero h1 {
  max-width: 820px;

  color: var(--white);

  font-size:
    clamp(48px, 6.5vw, 78px);

  line-height: 0.99;

  letter-spacing: -0.065em;

  margin-bottom: 27px;
}

.hero h1 em {
  color: var(--gold-2);

  font-style: normal;
}


/* ---------- Hero Description ---------- */

.hero-text {
  max-width: 625px;

  color:
    rgba(255, 255, 255, 0.70);

   font-size: 16px;
  line-height: 1.85;
  margin-bottom: 26px;
}


/* ---------- Hero Proof ---------- */

.hero-proof {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.13em;

  margin-bottom: 28px;
}

.hero-proof i {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: var(--gold-2);
}


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

.hero-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.btn {
  min-height: 49px;

  padding: 0 21px;

  display: inline-flex;

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

  border-radius: 9px;

  border:
    1px solid transparent;

  font-size: 10px;

  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}


/* ---------- Gold Button ---------- */

.btn-primary {
  color: #071638;

  background:
    linear-gradient(
      135deg,
      var(--gold-2),
      var(--gold)
    );

  box-shadow:
    0 12px 28px rgba(201, 149, 27, 0.25);
}

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

  box-shadow:
    0 16px 34px rgba(201, 149, 27, 0.34);
}


/* ---------- Transparent Button ---------- */

.btn-ghost {
  color: var(--white);

  background:
    rgba(255, 255, 255, 0.045);

  border-color:
    rgba(255, 255, 255, 0.26);
}

.btn-ghost:hover {
  border-color: var(--gold-2);

  color: var(--gold-2);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
  background: var(--white);

  border-bottom:
    1px solid var(--line);
}

.trust-grid {
  display: grid;

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

.trust-grid > div {
  min-height: 70px;

  padding: 0 22px;

  display: flex;

  align-items: center;

  gap: 12px;

  border-right:
    1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--gold);

  font-size: 9px;

  letter-spacing: 0.08em;
}

.trust-grid span {
  color: #526079;

  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 112px 0;
}

.about {
  background: var(--paper);
}

.two-col {
  display: grid;

  grid-template-columns:
    0.82fr 1.18fr;

  gap: 120px;
}


/* ---------- Eyebrow ---------- */

.eyebrow.dark {
  color: var(--gold);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.23em;

  margin-bottom: 18px;
}


/* ---------- Headings ---------- */

h2 {
  color: var(--navy);

  font-size:
    clamp(36px, 4.3vw, 55px);

  line-height: 1.03;

  letter-spacing: -0.055em;
}


/* ---------- Copy ---------- */

.copy {
  max-width: 620px;
}

.copy p {
  color: var(--muted);

  font-size: 15px;
  line-height: 1.9;

  margin-bottom: 18px;
}


/* ---------- Text Link ---------- */

.text-link {
  display: inline-block;

  color: var(--blue);

  font-size: 11px;

  font-weight: 800;

  padding-bottom: 4px;

  border-bottom:
    1px solid var(--gold);
}


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

.products {
  background: var(--white);
}

.section-head {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 50px;

  margin-bottom: 45px;
}

.section-head > p {
  max-width: 410px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.85;
}


/* ---------- Product Grid ---------- */

.product-grid {
  display: grid;

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

  gap: 16px;
}


/* ---------- Product Card ---------- */

.product-card {
  overflow: hidden;

  background: var(--white);

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  box-shadow:
    0 8px 28px rgba(6, 23, 68, 0.045);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow);

  border-color:
    rgba(201, 149, 27, 0.38);
}

.product-card.featured {
  border-color:
    rgba(201, 149, 27, 0.48);
}


/* ---------- Product Images ---------- */

.product-image {
    height: 235px;

  position: relative;

  background-size: cover !important;

  background-position: center !important;
}

.product-image::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(6, 23, 68, 0.10),
      rgba(201, 149, 27, 0.05)
    );

  z-index: 1;
}

.product-image::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 65px;

  background:
    linear-gradient(
      transparent,
      rgba(6, 23, 68, 0.25)
    );

  z-index: 2;
}


/* ---------- Product Backgrounds ---------- */

/* =========================================================
   NAVIXA PRODUCT IMAGES
   ========================================================= */

.product-image.manure {
  background:
    linear-gradient(
      rgba(6, 23, 68, 0.08),
      rgba(6, 23, 68, 0.18)
    ),
    url("images/organic-manure.jpg");

  background-size: cover;
  background-position: center;
}


.product-image.wellness {
  background:
    linear-gradient(
      rgba(6, 23, 68, 0.05),
      rgba(6, 23, 68, 0.18)
    ),
    url("images/saffron-shilajit.jpg");

  background-size: cover;
  background-position: center;
}


.product-image.machinery {
  background:
    linear-gradient(
      rgba(6, 23, 68, 0.05),
      rgba(6, 23, 68, 0.20)
    ),
    url("images/sortex-machine.jpg");

  background-size: cover;
  background-position: center;
}


.product-image.packaging {
  background:
    linear-gradient(
      rgba(6, 23, 68, 0.05),
      rgba(6, 23, 68, 0.20)
    ),
    url("images/packaging-solutions.jpg");

  background-size: cover;
  background-position: center;
} 


/* ---------- Product Information ---------- */

.product-info {
  padding: 21px;
}

.product-info span {
  color: var(--gold);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.12em;
}

.product-info h3 {
  color: var(--navy);

  font-size: 18px;

  margin: 8px 0;
}

.product-info p {
  color: var(--muted);

   font-size: 12px;
  line-height: 1.75;
}


/* =========================================================
   MARKETS
   ========================================================= */

/* =========================================================
   GLOBAL REACH / INTERNATIONAL TRADE
   ========================================================= */

.dark-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 15, 50, 0.96) 0%,
      rgba(3, 15, 50, 0.88) 35%,
      rgba(3, 15, 50, 0.55) 65%,
      rgba(3, 15, 50, 0.28) 100%
    ),
    url("images/global-trade.jpg");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.dark-section .container {
  position: relative;
  z-index: 2;
}

.dark-section::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -220px;
  bottom: -300px;

  border: 1px solid rgba(226, 177, 43, 0.18);

  border-radius: 50%;

  pointer-events: none;
}
  position: relative;
  z-index: 2;
}


/* Decorative curved line */

.dark-section::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -220px;
  bottom: -300px;

  border:
    1px solid rgba(226, 177, 43, 0.18);

  border-radius: 50%;

  pointer-events: none;
}
.dark-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -220px;
  bottom: -300px;

  border:
    1px solid rgba(226, 177, 43, 0.16);

  border-radius: 50%;
}

.dark-section .container {
  position: relative;

  z-index: 1;
}

.section-head.light h2 {
  color: var(--white);
}

.section-head.light > p {
  color:
    rgba(255, 255, 255, 0.60);
}


/* ---------- Market Grid ---------- */

.market-grid {
  display: grid;

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

  border-top:
    1px solid rgba(255, 255, 255, 0.14);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.14);
}

.market-grid > div {
  min-height: 205px;

  padding: 29px 22px;

  border-right:
    1px solid rgba(255, 255, 255, 0.10);
}

.market-grid > div:last-child {
  border-right: 0;
}

.market-grid b {
  color: var(--gold-2);

  font-size: 9px;
}

.market-grid h3 {
  color: var(--white);
}

.market-grid p {
  color:
    rgba(255, 255, 255, 0.55);

  font-size: 10px;

  line-height: 1.75;
}
/* =========================================================
   MARKET ICONS
   ========================================================= */

.market-card {
  position: relative;
}

.market-icon {
  width: 58px;
  height: 58px;

  margin-top: 34px;
  margin-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.market-icon svg {
  width: 52px;
  height: 52px;

  fill: none;

  stroke: var(--gold-2);

  stroke-width: 2.2;

  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(
      0 4px 10px rgba(226, 177, 43, 0.15)
    );
}


/* Market heading */

.market-card h3 {
  margin: 0 0 9px;

  color: var(--white);

  font-size: 18px;
  font-weight: 800;

  letter-spacing: -0.02em;
}


/* Market description */

.market-card p {
  color:
    rgba(255, 255, 255, 0.58);

  font-size: 10px;

  line-height: 1.75;

  max-width: 280px;
}


/* Number */

.market-card b {
  display: block;

  color: var(--gold-2);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.04em;
}

/* =========================================================
   WHY NAVIXA
   ========================================================= */

.why {
  background: var(--paper);
}

.why-grid {
  display: grid;

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

  border-top:
    1px solid var(--line);

  margin-top: 43px;
}

.why-grid > div {
  min-height: 180px;

  padding:
    27px 22px 10px;

  border-right:
    1px solid var(--line);
}

.why-grid > div:last-child {
  border-right: 0;
}

.why-grid span {
  color: var(--gold);

  font-size: 9px;

  font-weight: 800;
}

.why-grid h3 {
  color: var(--navy);

  margin: 37px 0 8px;

  font-size: 15px;
}

.why-grid p {
  color: var(--muted);

  font-size: 10px;

  line-height: 1.75;
}


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

.cta {
  padding: 105px 0;

  background:
    radial-gradient(
      circle at 88% 25%,
      rgba(226, 177, 43, 0.18),
      transparent 24%
    ),
    linear-gradient(
      115deg,
      #1049b0,
      #061744 90%
    );
}

.cta-inner {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 105px;
}

.cta h2 {
  color: var(--white);
}

.cta p:not(.eyebrow) {
  max-width: 500px;

  margin-top: 18px;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 12px;

  line-height: 1.85;
}


/* =========================================================
   FORMSPREE FORM
   ========================================================= */

.contact-form {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 10px;
}


/* ---------- Inputs ---------- */

.contact-form input,
.contact-form textarea {
  width: 100%;

  border:
    1px solid rgba(255, 255, 255, 0.15);

  border-radius: 8px;

  padding: 13px 14px;

  background:
    rgba(255, 255, 255, 0.08);

  color: var(--white);

  outline: none;

  font: inherit;

  font-size: 10px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.43);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-2);

  background:
    rgba(255, 255, 255, 0.10);

  box-shadow:
    0 0 0 3px rgba(226, 177, 43, 0.08);
}


/* ---------- Textarea ---------- */

.contact-form textarea {
  min-height: 105px;

  resize: vertical;
}


/* ---------- Submit Button ---------- */

.contact-form button {
  border: 0;
}


/* ---------- Full Width Elements ---------- */

.contact-form textarea,
.contact-form button,
.contact-form small {
  grid-column: 1 / -1;
}


/* ---------- Form Note ---------- */

.contact-form small {
  color:
    rgba(255, 255, 255, 0.42);

  font-size: 8px;
}


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

footer {
  background: #020b27;

  color:
    rgba(255, 255, 255, 0.65);
}

.footer-grid {
  padding:
    58px 0 42px;

  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr;

  gap: 60px;
}


/* ---------- Footer Logo ---------- */

.footer-brand {
  display: inline-flex;
}

.footer-logo,
.footer-brand .brand-logo {
  width: 145px;

  height: auto;

  display: block;

  opacity: 0.94;
}


/* ---------- Footer Text ---------- */

.footer-grid p {
  margin-top: 12px;

  color:
    rgba(255, 255, 255, 0.38);

  font-size: 10px;
}

.footer-grid h4 {
  color: var(--gold-2);

  font-size: 9px;

  letter-spacing: 0.12em;

  margin-bottom: 15px;
}

.footer-grid a:not(.brand) {
  display: block;

  width: max-content;

  margin: 8px 0;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 10px;
}

.footer-grid a:not(.brand):hover {
  color: var(--gold-2);
}


/* ---------- Copyright ---------- */

.copyright {
  padding: 18px 0;

  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  color:
    rgba(255, 255, 255, 0.30);

  font-size: 8px;
}


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

@media (max-width: 950px) {

  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .site-header nav.mobile-open {
    display: flex;

    position: absolute;

    top: 76px;

    left: 0;
    right: 0;

    padding:
      18px 24px 24px;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    background:
      rgba(255, 255, 255, 0.98);

    border-bottom:
      1px solid var(--line);

    box-shadow:
      0 18px 35px rgba(6, 23, 68, 0.10);

    backdrop-filter: blur(18px);
  }

  .site-header nav.mobile-open a {
    width: 100%;

    padding: 13px 0;

    border-bottom:
      1px solid var(--line);
  }

  .site-header nav.mobile-open a:last-child {
    border-bottom: 0;
  }


  /* ---------- Tablet Grids ---------- */

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

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .two-col,
  .cta-inner {
    grid-template-columns: 1fr;

    gap: 45px;
  }
}


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

@media (max-width: 620px) {

  .container {
    width:
      min(
        100% - 28px,
        1180px
      );
  }


  /* ---------- Header ---------- */

  .nav {
    min-height: 68px;
  }

  .brand-logo {
    width: 115px;

    height: auto;
  }


  /* ---------- Mobile Hero ---------- */

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding:
      90px 0;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-brandline {
    font-size: 7px;

    letter-spacing: 0.18em;
  }

  .hero-proof {
    gap: 7px;
  }


  /* ---------- Sections ---------- */

  .section,
  .dark-section,
  .cta {
    padding:
      78px 0;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    margin-top: 20px;
  }


  /* ---------- Single Column ---------- */

  .product-grid,
  .market-grid,
  .why-grid,
  .trust-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }


  /* ---------- Trust ---------- */

  .trust-grid > div {
    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }


  /* ---------- Markets ---------- */

  .market-grid > div,
  .why-grid > div {
    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.10);
  }


  /* ---------- Why ---------- */

  .why-grid > div {
    border-bottom:
      1px solid var(--line);
  }


  /* ---------- Footer ---------- */

  .footer-grid {
    gap: 30px;
  }


  /* ---------- Form ---------- */

  .contact-form textarea,
  .contact-form button,
  .contact-form small {
    grid-column: auto;
  }


  /* ---------- Mobile Menu Position ---------- */

  .site-header nav.mobile-open {
    top: 68px;
  }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline:
    2px solid var(--gold-2);

  outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}