:root {
  --navy: #052b58;
  --navy-dark: #06234b;
  --gold: #c38928;
  --gold-dark: #ae741e;
  --green: #176237;
  --footer-green-dark: #073528;
  --footer-green-dark-2: #052e22;
  --footer-green-main: #1a6b4e;
  --footer-green-soft: #207a59;
  --text: #09254d;
  --muted: #354158;
  --line: #e7edf4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
}

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

.container {
  width: 100%;
  margin: 0;
  padding-left: 48px;
  padding-right: 58px;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(6, 35, 75, 0.1);
}

.top-bar {
  color: var(--white);
  background: linear-gradient(90deg, var(--footer-green-dark) 0%, #0a4a35 100%);
  font-size: 14px;
  font-weight: 600;
}

.top-content {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.top-left {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-center,
.top-center a,
.top-social {
  display: flex;
  align-items: center;
}

.top-center {
  justify-content: center;
  gap: 44px;
}

.top-center a {
  gap: 9px;
  white-space: nowrap;
}

.gold-icon {
  color: var(--gold);
  font-weight: 800;
}

.flag-icon {
  width: 27px;
  height: 16px;
  display: inline-block;
  flex: 0 0 27px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
}

.top-social {
  justify-content: flex-end;
  gap: 11px;
  white-space: nowrap;
}

.top-social a {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.social-svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

.navbar {
  min-height: 74px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
}

.brand-logo {
  display: block;
  width: 132px;
  height: 58px;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 38px);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  height: 74px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-item {
  position: relative;
  height: 74px;
  display: inline-flex;
  align-items: center;
}

.nav-item>a {
  position: relative;
  height: 74px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  z-index: 60;
  width: 252px;
  padding: 10px;
  border: 1px solid rgba(200, 137, 39, 0.28);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 36px rgba(34, 22, 10, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
}

.dropdown-menu a {
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--gold-dark);
  background: #fff2da;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-links .active {
  color: var(--gold);
}

.nav-links .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 3px;
  background: var(--gold);
}

.quote-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.quote-btn {
  min-width: 174px;
  height: 48px;
  padding: 0 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: linear-gradient(135deg, #d39a34 0%, #bd7b20 58%, #a96516 100%);
  box-shadow: 0 10px 22px rgba(177, 116, 27, 0.24);
  justify-self: end;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.quote-btn span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 16px;
  line-height: 1;
}

.quote-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #dea743 0%, #c48625 58%, #ad6d18 100%);
  box-shadow: 0 14px 26px rgba(177, 116, 27, 0.32);
}

.quote-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(177, 116, 27, 0.24);
}

.hero {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #fbf5eb;
}

.hero-track {
  width: 500%;
  display: flex;
  animation: bannerSlide 24s infinite;
}

.hero-slide {
  position: relative;
  flex: 0 0 20%;
  min-height: clamp(520px, 42.7vw, 820px);
  padding: clamp(44px, 5vw, 94px) 0 clamp(42px, 5vw, 90px);
  background-position: center;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 250, 243, 0.9) 0%,
      rgba(255, 250, 243, 0.65) 36%,
      rgba(255, 250, 243, 0.08) 66%,
      rgba(255, 250, 243, 0) 100%);
}

.hero-slide-1 {
  background-image: url("assets/home1.png");
}

.hero-slide-2 {
  background-image: url("assets/home2.png");
}

.hero-slide-3 {
  background-image: url("assets/home3.png");
}

.hero-slide-4 {
  background-image: url("assets/home4.png");
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(660px, 44vw);
  margin-left: clamp(58px, 5.6vw, 108px);
  padding-top: clamp(44px, 4.8vw, 86px);
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 800;
  line-height: 1.02;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 660px;
  margin: 12px 0 26px;
  color: var(--green);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 2.45vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.hero-text {
  max-width: 600px;
  margin: 0 0 44px;
  color: #35404d;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.hero-btn {
  min-width: 350px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 28px;
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--navy-dark);
  box-shadow: 0 3px 0 rgba(174, 116, 30, 0.35);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-btn span {
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

@keyframes bannerSlide {

  0%,
  16% {
    transform: translateX(0);
  }

  20%,
  36% {
    transform: translateX(-20%);
  }

  40%,
  56% {
    transform: translateX(-40%);
  }

  60%,
  76% {
    transform: translateX(-60%);
  }

  80%,
  100% {
    transform: translateX(-80%);
  }
}

.features {
  margin-top: 28px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 9px 24px rgba(18, 39, 70, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 119, 70, 0.35);
  box-shadow: 0 16px 32px rgba(43, 119, 70, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #2b7746;
  border: 3px solid #2b7746;
  border-radius: 50%;
  font-size: 23px;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(15deg);
  background: #2b7746;
  color: var(--white);
}

.feature-card h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.about-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(30px, 3.8vw, 58px) clamp(56px, 5.4vw, 102px);
  overflow: hidden;
  background: #f8ead4;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/about.png") center center / cover no-repeat;
  pointer-events: none;
}

.about-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 44vw);
  padding: clamp(26px, 2.6vw, 42px) clamp(32px, 3.4vw, 56px);
  border: 1px solid rgba(195, 137, 40, 0.68);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.76);
  box-shadow:
    inset 0 0 0 10px rgba(255, 248, 236, 0.56),
    0 22px 50px rgba(98, 67, 30, 0.12);
  backdrop-filter: blur(1px);
}

.about-panel-visual {
  display: none;
}

.about-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.about-kicker::before,
.about-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.about-panel h2 {
  margin: 0;
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(48px, 4.2vw, 72px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.about-tagline {
  margin: 8px 0 24px;
  color: var(--green);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.about-highlights article {
  min-height: 92px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(195, 137, 40, 0.18);
  border-radius: 10px;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 10px 22px rgba(70, 45, 16, 0.1);
}

.about-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 26px;
}

.about-highlights article:nth-child(2) .about-icon {
  background: var(--navy-dark);
}

.about-highlights h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 1.1;
}

.about-highlights p,
.about-text p {
  margin: 0;
  color: #252a34;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.about-text {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.about-cta {
  min-height: 94px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  border: 1px solid rgba(195, 137, 40, 0.72);
  border-radius: 18px;
  background: rgba(255, 247, 231, 0.62);
}

.about-cta-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid rgba(195, 137, 40, 0.65);
  border-radius: 50%;
  font-size: 36px;
}

.about-cta strong {
  color: var(--green);
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  line-height: 1.2;
}

.about-cta a {
  min-width: 210px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 26px;
  color: var(--white);
  border-radius: 999px;
  background: var(--navy-dark);
  box-shadow: 0 10px 22px rgba(6, 35, 75, 0.18);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.about-cta a span {
  color: var(--gold);
  font-size: 24px;
}

.trust-section {
  position: relative;
  display: block;
  padding: 100px 6vw 100px;
  background:
    radial-gradient(circle at 8% 92%, rgba(29, 79, 43, 0.12), transparent 14%),
    radial-gradient(circle at 94% 95%, rgba(121, 24, 28, 0.1), transparent 16%),
    linear-gradient(180deg, #fffdf8 0%, #fbf1df 100%);
  overflow: hidden;
  margin-bottom: 0;
  z-index: 2;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 49% 34%, transparent 0 36%, rgba(196, 154, 85, 0.18) 36.4%, transparent 36.8%),
    radial-gradient(circle at 20% 20%, rgba(205, 157, 83, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 79% 18%, rgba(205, 157, 83, 0.16) 0 4px, transparent 5px);
  pointer-events: none;
  z-index: 1;
}

.trust-header {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.trust-subtitle-new {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  color: #a0782d;
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.trust-header h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(34px, 3.6vw, 52px);
  color: #0b372b;
  margin: 0 0 20px;
  font-weight: 800;
  line-height: 1.1;
}

.trust-header h2 span.italic-text {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #a0782d;
}

.trust-intro {
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
}

/* Grid of Cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Individual Cards */
.trust-card-new {
  position: relative;
  background: #fbfbfa;
  border: 1px solid rgba(23, 98, 55, 0.12);
  border-radius: 20px;
  padding: 54px 30px 42px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hover effects */
.trust-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
  border-color: rgba(23, 98, 55, 0.3);
  background: var(--white);
}

/* Floating Icon Box */
.trust-icon-box {
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #8b2027;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  border: 3px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s ease;
}

.trust-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.trust-card-new:hover .trust-icon-box {
  background: #176237;
}

.trust-card-new h3 {
  font-family: "Times New Roman", Times, serif;
  font-size: 25px;
  color: #0b372b;
  margin: 0;
  font-weight: 700;
}

.card-accent-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 12px 0 18px;
}

.card-accent-line::before,
.card-accent-line::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(23, 98, 55, 0.3);
}

.card-accent-line span {
  width: 5px;
  height: 5px;
  background: #176237;
  transform: rotate(45deg);
  display: inline-block;
}

.trust-card-new p {
  color: #4d4d4d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.product-categories {
  position: relative;
  overflow: hidden;
  padding: 60px 6vw 76px;
  background:
    radial-gradient(circle at 12% 8%, rgba(195, 137, 40, 0.13) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 78%, rgba(90, 45, 18, 0.16) 0 3px, transparent 4px),
    linear-gradient(180deg, #fff2d9 0%, #f8e9ca 100%);
}

.product-categories::before,
.product-categories::after,
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 50% 18%, transparent 0 40%, rgba(137, 123, 58, 0.34) 41% 43%, transparent 44%),
    radial-gradient(ellipse at 28% 44%, transparent 0 42%, rgba(137, 123, 58, 0.28) 43% 45%, transparent 46%),
    radial-gradient(ellipse at 70% 55%, transparent 0 42%, rgba(137, 123, 58, 0.28) 43% 45%, transparent 46%);
}

.product-categories::before,
.contact-section::before {
  left: -70px;
  top: -70px;
  transform: rotate(-28deg);
}

.product-categories::after,
.contact-section::after {
  right: -72px;
  bottom: -70px;
  transform: rotate(148deg);
}

.category-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  text-align: center;
}

.category-heading p {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.category-heading h2 {
  margin: 0;
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1;
}

.category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  padding: 14px 14px 20px;
  overflow: hidden;
  border: 1px solid rgba(86, 128, 82, 0.34);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 22px rgba(82, 61, 37, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8d251f 0 36%, #1b6a41 36% 100%);
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(86, 128, 82, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 20px 40px rgba(82, 61, 37, 0.15);
}

.category-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.02;
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #fff3d8;
  overflow: hidden;
  z-index: 1;
}

.category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.category-card h3 {
  position: relative;
  width: calc(100% + 28px);
  margin: 0 -14px;
  padding: 18px 12px 8px;
  color: #4b120d;
  border-top: 1px solid rgba(86, 128, 82, 0.16);
  background: #fffdf8;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  z-index: 1;
}

.category-line {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 1px;
  margin-top: 4px;
  background: rgba(109, 154, 114, 0.72);
  transition: all 0.4s ease;
}

.category-card:hover .category-line {
  width: 90px;
  background: #c89542;
}

.category-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.category-view-all {
  min-width: 230px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  color: #fff7e8;
  border: 1px solid rgba(195, 137, 40, 0.6);
  border-radius: 999px;
  background: linear-gradient(135deg, #0d432f, var(--gold));
  box-shadow: 0 16px 28px rgba(73, 47, 24, 0.18);
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.category-view-all span {
  color: #f4d38c;
  font-size: 22px;
  line-height: 1;
}

.category-view-all:hover {
  border-color: rgba(244, 211, 140, 0.9);
  box-shadow: 0 20px 34px rgba(73, 47, 24, 0.24);
  transform: translateY(-3px);
}

.product-page-hero {
  position: relative;
  min-height: 315px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 72px 24px 68px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Mix Fruits.png") center / cover no-repeat;
}

.mix-fruits-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Mix Fruits.png") center / cover no-repeat;
}

.vegetales-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Vegetables.png") center / cover no-repeat;
}

.spices-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Spices.png") center / cover no-repeat;
}

.confectionery-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Confectionery.png") center / cover no-repeat;
}

.dehydrated-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Dehydrated Products.png") center / cover no-repeat;
}

.flour-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Flour.png") center / cover no-repeat;
}

.frozen-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Frozen.png") center / cover no-repeat;
}

.makhana-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Makhana  Fox Nuts.png") center / cover no-repeat;
}

.rice-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Rice.png") center / cover no-repeat;
}

.salt-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Salt.png") center / cover no-repeat;
}

.seeds-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Seeds.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(5, 43, 88, 0.9) 0%, rgba(66, 45, 30, 0.78) 52%, rgba(116, 18, 16, 0.88) 100%),
    url("assets/product/Spices.png") center / cover no-repeat;
}

/* Contact page */
.contact-page-body {
  background: #f7f1e8;
}

.contact-page {
  background:
    linear-gradient(120deg, rgba(5, 43, 88, 0.05) 0 1px, transparent 1px) 0 0 / 34px 34px,
    radial-gradient(circle at 12% 16%, rgba(195, 137, 40, 0.1), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(23, 98, 55, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f7f1e8 62%, #fffaf2 100%);
}

.contact-body {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  padding: 0 6vw 64px;
}

.contact-shell {
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid rgba(195, 137, 40, 0.24);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 4px 0 rgba(195, 137, 40, 0.22),
    0 24px 60px rgba(35, 28, 20, 0.12);
}

.contact-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  align-items: stretch;
}

.contact-form-col {
  padding: 46px 48px 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 246, 0.98));
}

.contact-form-kicker {
  margin: 0 0 10px;
  color: #b8771f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-form-col h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(28px, 2.9vw, 40px);
  line-height: 1.15;
}

.contact-form-lead {
  margin: 14px 0 32px;
  max-width: 520px;
  color: #5f5a52;
  font-size: 15px;
  line-height: 1.7;
}

.contact-main-form {
  display: grid;
  gap: 17px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-main-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.contact-main-form input,
.contact-main-form textarea {
  width: 100%;
  border: 1px solid #ded2bf;
  border-radius: 10px;
  padding: 15px 16px;
  color: #2f2a24;
  background: #fffdf8;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-main-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-main-form input::placeholder,
.contact-main-form textarea::placeholder {
  color: #9d9488;
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(195, 137, 40, 0.12);
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 205px;
  padding: 15px 30px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #07325f 0%, #1b5b8f 100%);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(5, 43, 88, 0.22);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn::after {
  content: "\2192";
  font-size: 16px;
}

.contact-submit-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  padding: 42px 34px 36px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 211, 140, 0.18), transparent 36%),
    radial-gradient(circle at 8% 92%, rgba(23, 98, 55, 0.3), transparent 38%),
    linear-gradient(160deg, #062d58 0%, #0e4a78 52%, #0a3a55 100%);
}

.contact-info-col h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(24px, 2.35vw, 31px);
  line-height: 1.25;
}

.contact-info-blocks {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  flex: 1;
}

.contact-info-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-info-block:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(244, 211, 140, 0.22);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-info-block strong {
  display: block;
  margin-bottom: 5px;
  color: #f4d38c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info-block a,
.contact-info-block span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  word-break: break-word;
}

.contact-info-block a:hover {
  color: #f4d38c;
}

.contact-social-wrap {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-social-wrap > p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.contact-social-links {
  display: flex;
  gap: 10px;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-social-links a:hover {
  background: rgba(195, 137, 40, 0.28);
  border-color: rgba(244, 211, 140, 0.35);
  transform: translateY(-2px);
}

.contact-map-section {
  padding: 12px 6vw 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-map-head {
  margin-bottom: 24px;
  text-align: center;
}

.contact-map-kicker {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-map-head h2 {
  margin: 0;
  color: #68140f;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
}

.contact-map-head > p {
  margin: 12px auto 0;
  max-width: 560px;
  color: #6f675d;
  font-size: 15px;
  line-height: 1.65;
}

.contact-map-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #e8e2d8;
  box-shadow: 0 22px 48px rgba(35, 28, 20, 0.12);
  border: 4px solid #fff;
}

.contact-map-frame iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

.contact-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(5, 43, 88, 0.16);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.contact-map-section {
  text-align: center;
}

.contact-maps-link:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .contact-body,
  .contact-map-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-body {
    margin-top: -8px;
    padding-bottom: 40px;
  }

  .contact-form-col {
    padding: 28px 22px 32px;
  }

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

  .contact-info-col {
    padding: 28px 22px 26px;
  }

  .contact-form-actions {
    justify-content: stretch;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .contact-map-frame iframe {
    min-height: 280px;
  }

  .contact-map-section {
    padding-bottom: 56px;
  }
}

/* Contact page refresh */
.contact-hero {
  min-height: 340px;
  padding: 82px 24px 84px;
  background:
    linear-gradient(90deg, rgba(5, 43, 88, 0.88) 0%, rgba(15, 47, 57, 0.62) 45%, rgba(116, 18, 16, 0.82) 100%),
    url("assets/product/Spices.png") center / cover no-repeat;
}

.contact-page {
  background:
    linear-gradient(120deg, rgba(195, 137, 40, 0.04) 0 1px, transparent 1px) 0 0 / 36px 36px,
    radial-gradient(circle at 10% 28%, rgba(195, 137, 40, 0.16), transparent 26%),
    radial-gradient(circle at 92% 54%, rgba(23, 98, 55, 0.1), transparent 24%),
    linear-gradient(180deg, #fffaf2 0%, #f7f0e5 54%, #fffdf8 100%);
}

.contact-body {
  margin-top: -28px;
  padding: 0 6vw 78px;
}

.contact-shell {
  max-width: 1180px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.contact-split-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.contact-form-col,
.contact-info-col {
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(42, 31, 18, 0.13);
}

.contact-form-col {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 42px 44px 44px;
  border: 1px solid rgba(195, 137, 40, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.98));
}

.contact-form-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #052b58, #c38928, #176237);
}

.contact-form-kicker {
  margin-bottom: 12px;
  color: #a56d1e;
}

.contact-form-col h2 {
  max-width: 560px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: 0;
}

.contact-form-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #5f5a52;
}

.contact-main-form {
  gap: 16px;
}

.contact-main-form label {
  gap: 9px;
  color: #062b56;
  font-size: 13px;
  font-weight: 800;
}

.contact-main-form input,
.contact-main-form textarea {
  border-color: #e1d2bd;
  border-radius: 11px;
  background: #fffefa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.contact-main-form input {
  min-height: 52px;
}

.contact-main-form textarea {
  min-height: 138px;
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
  border-color: #c38928;
  box-shadow:
    0 0 0 3px rgba(195, 137, 40, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-submit-btn {
  min-width: 210px;
  border-radius: 11px;
  background: linear-gradient(135deg, #052b58 0%, #124d7b 58%, #c38928 100%);
  box-shadow: 0 16px 30px rgba(5, 43, 88, 0.2);
}

.contact-info-col {
  position: relative;
  overflow: hidden;
  padding: 38px 30px 30px;
  border: 1px solid rgba(244, 211, 140, 0.2);
  background:
    radial-gradient(circle at 92% 6%, rgba(244, 211, 140, 0.2), transparent 28%),
    linear-gradient(160deg, #062b56 0%, #0b4c66 58%, #0b3b43 100%);
}

.contact-info-col::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  pointer-events: none;
}

.contact-info-col h2,
.contact-info-blocks,
.contact-social-wrap {
  position: relative;
  z-index: 1;
}

.contact-info-col h2 {
  max-width: 360px;
  font-size: clamp(24px, 2.25vw, 32px);
}

.contact-info-blocks {
  gap: 11px;
  margin-top: 26px;
}

.contact-info-block {
  min-height: 78px;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #f4d38c;
  background: rgba(255, 255, 255, 0.12);
}

.contact-info-icon svg {
  width: 19px;
  height: 19px;
}

.contact-info-block strong {
  color: #f4d38c;
  font-size: 10px;
}

.contact-info-block a,
.contact-info-block span {
  font-size: 14px;
}

.contact-social-wrap {
  margin-top: 22px;
  padding-top: 22px;
}

.contact-social-links a {
  border-color: rgba(244, 211, 140, 0.18);
}

.contact-map-section {
  max-width: 1180px;
  padding: 0 6vw 88px;
}

.contact-map-head {
  margin-bottom: 26px;
}

.contact-map-head h2 {
  color: #68140f;
  font-size: clamp(30px, 3vw, 44px);
}

.contact-map-frame {
  max-width: 940px;
  margin: 0 auto;
  border: 8px solid #fff;
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(42, 31, 18, 0.13),
    0 0 0 1px rgba(195, 137, 40, 0.16);
}

.contact-map-frame iframe {
  min-height: 390px;
}

.contact-maps-link {
  margin-top: 22px;
  background: linear-gradient(135deg, #052b58, #c38928);
}

@media (max-width: 1024px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    min-height: 260px;
    padding: 58px 18px 62px;
  }

  .contact-body {
    margin-top: -16px;
    padding-bottom: 54px;
  }

  .contact-split-grid {
    gap: 18px;
  }

  .contact-form-col,
  .contact-info-col {
    border-radius: 15px;
  }

  .contact-form-col {
    padding: 30px 20px 28px;
  }

  .contact-info-col {
    padding: 30px 20px 24px;
  }

  .contact-map-section {
    padding-bottom: 64px;
  }
}

/* Contact page reference-style layout */
.contact-hero {
  min-height: 330px;
  place-items: center start;
  padding: 78px 9vw 86px;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(5, 43, 88, 0.96) 0%, rgba(4, 53, 74, 0.88) 52%, rgba(3, 35, 55, 0.7) 100%),
    url("assets/product/Spices.png") center / cover no-repeat;
}

.contact-hero .product-page-hero-content {
  width: min(720px, 100%);
}

.contact-hero .product-page-hero-content::before {
  content: "Home / Contact Us";
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.contact-hero p {
  display: none;
}

.contact-hero h1 {
  position: relative;
  display: inline-block;
  font-size: clamp(44px, 4.6vw, 70px);
  text-transform: uppercase;
}

.contact-hero h1::first-letter {
  color: #fff;
}

.contact-hero h1 span {
  color: #f36f24;
}

.contact-hero h1::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: #f36f24;
}

.contact-body {
  margin-top: 0;
  padding: 78px 6vw 72px;
  background:
    radial-gradient(circle at 18% 12%, rgba(243, 111, 36, 0.08), transparent 26%),
    linear-gradient(180deg, #fffaf7 0%, #f7fbfd 100%);
}

.contact-shell {
  max-width: 1290px;
  padding: 48px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(7, 43, 63, 0.12);
}

.contact-split-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: stretch;
}

.contact-info-col {
  order: 1;
  padding: 0;
  color: #0a3548;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-info-col::before {
  display: none;
}

.contact-info-col h2 {
  max-width: 520px;
  color: #0a3548;
  font-size: clamp(30px, 2.7vw, 42px);
}

.contact-info-col h2::before {
  content: "Get in Touch";
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #f36f24;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-info-col h2::after {
  content: "Fill out the form or contact us directly using the details below. We look forward to hearing from you.";
  display: block;
  max-width: 560px;
  margin-top: 18px;
  color: #71818d;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.contact-info-blocks {
  gap: 18px;
  margin-top: 34px;
}

.contact-info-block {
  min-height: 108px;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid #e7edf0;
  border-left: 4px solid #f36f24;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 42, 61, 0.07);
}

.contact-info-block:hover {
  border-color: #dbe6eb;
  border-left-color: #f36f24;
  background: #fff;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  color: #fff;
  background: #083a51;
  box-shadow: 0 12px 24px rgba(8, 58, 81, 0.2);
}

.contact-info-block strong {
  margin-bottom: 6px;
  color: #0a3548;
  font-size: 13px;
  letter-spacing: 0.6px;
}

.contact-info-block a,
.contact-info-block span {
  color: #7a8992;
  font-size: 15px;
  font-weight: 700;
}

.contact-info-block a:hover {
  color: #f36f24;
}

.contact-social-wrap {
  margin-top: 24px;
  padding-top: 0;
  border-top: 0;
}

.contact-social-wrap > p {
  color: #f36f24;
}

.contact-social-links a {
  color: #0a3548;
  border-color: #dce8ee;
  background: #f6fafc;
}

.contact-social-links a:hover {
  color: #fff;
  background: #f36f24;
  border-color: #f36f24;
}

.contact-form-col {
  order: 2;
  padding: 44px 42px;
  color: #fff;
  border: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 0%, rgba(243, 111, 36, 0.18), transparent 28%),
    linear-gradient(160deg, #102f3f 0%, #071c28 100%);
  box-shadow: 0 30px 70px rgba(5, 24, 36, 0.28);
}

.contact-form-col::before {
  display: none;
}

.contact-form-kicker {
  color: #f36f24;
}

.contact-form-col h2 {
  max-width: 470px;
  color: #fff;
  font-size: clamp(28px, 2.5vw, 38px);
}

.contact-form-col h2::before {
  content: "";
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-right: 16px;
  border-radius: 50%;
  vertical-align: middle;
  background: #f36f24;
  box-shadow: 0 12px 30px rgba(243, 111, 36, 0.35);
}

.contact-form-lead {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-main-form {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-main-form label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-main-form input,
.contact-main-form textarea {
  color: #eaf4f8;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.contact-main-form input:focus,
.contact-main-form textarea:focus {
  border-color: #f36f24;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(243, 111, 36, 0.16);
}

.contact-submit-btn {
  min-width: 190px;
  color: #fff;
  background: linear-gradient(135deg, #ffb01f 0%, #f36f24 100%);
  box-shadow: 0 16px 34px rgba(243, 111, 36, 0.28);
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto 86px;
  padding: 48px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 26px 76px rgba(7, 43, 63, 0.11);
  text-align: left;
}

.contact-map-head {
  margin: 0;
}

.contact-map-kicker {
  color: #f36f24;
}

.contact-map-head h2 {
  color: #0a3548;
}

.contact-map-head > p {
  margin-left: 0;
  color: #71818d;
}

.contact-map-frame {
  max-width: none;
  width: 100%;
  border: 8px solid #eff8f5;
  border-radius: 18px;
}

.contact-map-frame iframe {
  min-height: 360px;
}

.contact-maps-link {
  grid-column: 1;
  justify-self: start;
  margin-top: -128px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffb01f 0%, #f36f24 100%);
}

@media (max-width: 980px) {
  .contact-shell {
    padding: 28px;
  }

  .contact-split-grid,
  .contact-map-section {
    grid-template-columns: 1fr;
  }

  .contact-maps-link {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 58px 18px 64px;
  }

  .contact-body {
    padding: 42px 16px 54px;
  }

  .contact-shell,
  .contact-map-section {
    padding: 22px;
    border-radius: 14px;
  }

  .contact-form-col {
    padding: 30px 22px;
  }

  .contact-info-block {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }
}

.certificate-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.9) 0%, rgba(66, 45, 30, 0.78) 52%, rgba(116, 18, 16, 0.9) 100%),
    radial-gradient(circle at 50% 120%, rgba(255, 216, 112, 0.18), transparent 42%);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.88) 0%, rgba(66, 45, 30, 0.74) 52%, rgba(116, 18, 16, 0.88) 100%);
}

/* About page sections */
.about-page-who {
  padding: 80px 3vw 48px;
  background:
    radial-gradient(circle at 8% 20%, rgba(195, 137, 40, 0.06), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, #fff 100%);
}

.about-page-who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.about-page-who-copy {
  position: relative;
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--gold);
}

.about-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(195, 137, 40, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-page-kicker-icon {
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}

.about-page-who-copy h2 {
  margin: 0 0 22px;
  color: #68140f;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.18;
}

.about-page-who-copy p {
  margin: 0 0 16px;
  color: #4a433c;
  font-size: 15px;
  line-height: 1.78;
}

.about-page-who-copy p:last-child {
  margin-bottom: 0;
}

.about-page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.about-page-gallery-row {
  display: contents;
}

.about-page-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(195, 137, 40, 0.14);
  box-shadow: 0 12px 28px rgba(35, 28, 20, 0.09);
}

.about-page-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-page-gallery figure:hover img {
  transform: scale(1.05);
}

.about-page-gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}

.about-page-gallery-main img {
  object-position: left center;
}

.about-page-gallery-row figure {
  aspect-ratio: 1;
  min-height: 0;
}

.about-page-features {
  max-width: 980px;
  margin: -12px auto 52px;
  padding: 0 3vw;
}

.about-page-features.features {
  margin-top: -12px;
  margin-bottom: 52px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-page-features .feature-card {
  min-height: 92px;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
}

.about-page-features .feature-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
  border-width: 2px;
}

.about-page-features .feature-card h2 {
  margin-bottom: 4px;
  font-size: 14px;
}

.about-page-features .feature-card p {
  font-size: 12px;
  line-height: 1.45;
}

.about-page-ceo {
  padding: 0 3vw 72px;
  background: #fff;
}

.about-page-ceo-shell {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr) minmax(120px, 160px);
  gap: 28px 40px;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 211, 140, 0.14), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(135deg, #073528 0%, #0d432f 52%, #0a3629 100%);
  box-shadow: 0 20px 48px rgba(7, 53, 40, 0.2);
  border: 1px solid rgba(244, 211, 140, 0.12);
}

.about-page-ceo-photo {
  margin: 0;
  padding: 7px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-page-ceo-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
}

.about-page-kicker-light {
  color: #f4d38c;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 211, 140, 0.2);
}

.about-page-kicker-light .about-page-kicker-icon {
  color: #f4d38c;
}

.about-page-ceo-copy h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.16;
}

.about-page-ceo-copy p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.68;
}

.about-page-ceo-signature {
  margin: 18px 0 6px !important;
  color: #f4d38c !important;
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-size: clamp(26px, 2.6vw, 34px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
}

.about-page-ceo-role {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.about-page-ceo-seal {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  padding: 8px 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-page-ceo-emblem {
  width: 84px;
  height: 84px;
  color: #e8c56d;
}

.about-page-ceo-emblem svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-page-ceo-seal > p {
  margin: 0;
  color: #f4d38c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .about-page-who-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-page-who-copy {
    padding-left: 20px;
  }

  .about-page-features.features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }

  .about-page-ceo-shell {
    grid-template-columns: 200px 1fr;
    padding: 28px 28px;
  }

  .about-page-ceo-seal {
    grid-column: 1 / -1;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-page-ceo-seal > p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .about-page-who {
    padding: 56px 16px 60px;
  }

  .about-page-who-copy {
    padding-left: 16px;
  }

  .about-page-features {
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .about-page-features.features {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .about-page-ceo {
    padding: 0 16px 56px;
  }

  .about-page-ceo-shell {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .about-page-ceo-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .about-page-ceo-photo img {
    max-height: 220px;
  }

  .about-page-ceo-seal {
    flex-direction: column;
  }

  .about-page-ceo-seal > p {
    text-align: center;
  }

  .about-page-gallery {
    gap: 10px;
  }

  .about-page-gallery-main {
    aspect-ratio: 16 / 10;
  }
}

.certificate-page {
  padding: 58px 6vw 70px;
  background:
    radial-gradient(circle at 20% 16%, rgba(195, 137, 40, 0.08), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f5efe7 100%);
}

.certificate-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  color: #5a4638;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 34px 26px;
  max-width: 1260px;
  margin: 0 auto;
}

.certificate-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  isolation: isolate;
}

.certificate-preview-trigger {
  width: 100%;
  display: grid;
  justify-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.certificate-preview-trigger:focus-visible {
  outline: 3px solid rgba(11, 58, 104, 0.35);
  outline-offset: 8px;
  border-radius: 18px;
}

.certificate-frame {
  position: relative;
  width: 100%;
  max-width: 310px;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  border: 12px solid var(--white);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(73, 47, 24, 0.13);
  overflow: hidden;
}

.certificate-thumb {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  object-fit: contain;
  pointer-events: none;
}

.certificate-frame::before {
  content: none;
  position: absolute;
  inset: -35%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.72) 48%, transparent 66%);
  opacity: 0;
  transform: translateX(-45%) rotate(8deg);
}

.certificate-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.certificate-card:hover .certificate-frame {
  transform: none;
  border-color: var(--white);
  background: #fff;
  box-shadow: 0 14px 28px rgba(73, 47, 24, 0.13);
}

.certificate-card:hover .certificate-frame::before {
  opacity: 0;
  transform: none;
}

.certificate-placeholder {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
}

.certificate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #68140f;
  background: rgba(195, 137, 40, 0.16);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.certificate-card:hover .certificate-badge {
  color: #68140f;
  background: rgba(195, 137, 40, 0.16);
  box-shadow: none;
  transform: none;
}

.certificate-placeholder p {
  margin: 0;
  color: #6d5645;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.certificate-card h2 {
  margin: 0;
  color: #68140f;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.certificate-card:hover h2 {
  color: #68140f;
  transform: none;
}

.certificate-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  padding: 24px;
  background: #061728;
}

.certificate-preview-modal.is-open {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.certificate-preview-backdrop {
  position: absolute;
  inset: 0;
  background: #061728;
}

.certificate-preview-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 96vw);
  height: min(820px, 92vh);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.certificate-preview-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(9, 48, 86, 0.12);
  background: #fff;
}

.certificate-preview-head h2 {
  min-width: 0;
  margin: 0;
  color: #68140f;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
}

.certificate-preview-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 6px;
  color: #fff;
  background: #0b3a68;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.certificate-preview-close {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #68140f;
  background: rgba(104, 20, 15, 0.1);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.certificate-preview-close:hover,
.certificate-preview-open:hover {
  filter: brightness(1.08);
}

.certificate-preview-dialog object {
  width: 100%;
  height: 100%;
  border: 0;
  background: #f7f1e8;
}

.certificate-preview-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 28px;
  color: #5a4638;
  text-align: center;
}

.certificate-preview-fallback p {
  margin: 0;
  font-weight: 700;
}

.certificate-preview-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 6px;
  color: #fff;
  background: #0b3a68;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

body.certificate-preview-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .certificate-preview-modal {
    padding: 10px;
  }

  .certificate-preview-dialog {
    width: 100%;
    height: 94vh;
  }

  .certificate-preview-head {
    grid-template-columns: 1fr auto;
  }

  .certificate-preview-open {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 36px;
  }

  .certificate-preview-close {
    grid-column: 2;
    grid-row: 1;
  }
}

.product-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(150deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 80px 80px;
}

.product-page-hero-content {
  position: relative;
  z-index: 1;
}

.product-page-hero p {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 7px 18px;
  border-radius: 999px;
  color: #ffd870;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-page-hero h1 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
}

.product-image-page {
  padding: 58px 6vw 70px;
  background:
    radial-gradient(circle at 20% 16%, rgba(195, 137, 40, 0.08), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f5efe7 100%);
}

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 34px 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-image-card {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.product-image-card img {
  width: 100%;
  max-width: 216px;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border: 12px solid var(--white);
  border-radius: 14px;
  background: #fff6e8;
  box-shadow: 0 14px 28px rgba(73, 47, 24, 0.13);
}

.product-image-card h2 {
  margin: 0;
  color: #68140f;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.why-choose {
  padding: 58px 6vw 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(195, 137, 40, 0.08), transparent 36%),
    linear-gradient(180deg, #fffaf0 0%, #fff8ee 100%);
}

.why-heading {
  max-width: 980px;
  margin: 0 auto 66px;
  text-align: center;
}

.why-heading>p:first-child {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(42px, 3.45vw, 62px);
  font-weight: 800;
  line-height: 1.02;
}

.why-divider {
  width: 110px;
  height: 1px;
  display: block;
  margin: 24px auto 18px;
  background: #6f9a77;
}

.why-intro {
  max-width: 820px;
  margin: 0 auto;
  color: #2f1712;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1.55;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 22px;
  max-width: 1540px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  min-height: 260px;
  padding: 78px 22px 24px;
  border: 1px solid rgba(205, 157, 83, 0.4);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.82);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(195, 137, 40, 0.8);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(195, 137, 40, 0.14);
}

.why-icon {
  position: absolute;
  left: 50%;
  top: -45px;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  color: #f6d486;
  border: 3px solid #d0a15a;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #143f2e 0%, #0a3329 100%);
  box-shadow:
    0 0 0 10px #fff8ee,
    0 0 0 11px rgba(208, 161, 90, 0.48),
    0 12px 24px rgba(35, 56, 34, 0.16);
  line-height: 1;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover .why-icon {
  transform: translateX(-50%) translateY(-4px) scale(1.03);
  box-shadow:
    0 0 0 10px var(--white),
    0 0 0 11px rgba(195, 137, 40, 0.48),
    0 16px 28px rgba(195, 137, 40, 0.22);
}

.why-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-dot {
  width: 8px;
  height: 8px;
  display: block;
  margin: -10px auto 18px;
  background: #c49a55;
  transform: rotate(45deg);
}

.why-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(19px, 1.05vw, 23px);
  font-weight: 800;
  line-height: 1.08;
}

.why-card-line {
  width: 44px;
  height: 1px;
  display: block;
  margin: 15px auto 14px;
  background: rgba(195, 137, 40, 0.74);
}

.why-card p {
  margin: 0;
  color: #2b211f;
  font-size: clamp(14px, 0.82vw, 16px);
  font-weight: 500;
  line-height: 1.5;
}

.export-process {
  position: relative;
  overflow: hidden;
  padding: 58px 1.2vw 42px;
  background:
    radial-gradient(circle at 8% 92%, rgba(29, 79, 43, 0.12), transparent 14%),
    radial-gradient(circle at 94% 95%, rgba(121, 24, 28, 0.1), transparent 16%),
    linear-gradient(180deg, #fffdf8 0%, #fbf1df 100%);
}

.export-process::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 49% 34%, transparent 0 36%, rgba(196, 154, 85, 0.18) 36.4%, transparent 36.8%),
    radial-gradient(circle at 20% 20%, rgba(205, 157, 83, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 79% 18%, rgba(205, 157, 83, 0.16) 0 4px, transparent 5px);
  pointer-events: none;
}

.export-process::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: 48%;
  height: 2px;
  background-image: linear-gradient(90deg, #c89542 45%, transparent 0);
  background-size: 15px 2px;
  opacity: 0.72;
  transform: translateY(-50%);
}

.process-heading {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto 56px;
  text-align: center;
}

.process-heading h2 {
  margin: 0;
  color: #7a1719;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(42px, 4.1vw, 70px);
  font-weight: 800;
  line-height: 0.98;
}

.process-heading h2 span {
  color: #1d4f2b;
}

.process-heading p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 0;
  color: #4d433b;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 500;
}

.process-heading p::before,
.process-heading p::after {
  content: "";
  width: 50px;
  height: 1px;
  background: #d3a24b;
}

.process-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  padding-top: 18px;
}

.process-number {
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(52, 30, 18, 0.18);
}

.process-icon {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin-top: -2px;
  border: 5px solid currentColor;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 45%, rgba(255, 255, 255, 0.74), rgba(255, 248, 229, 0.84) 62%, rgba(255, 244, 213, 0.68));
  box-shadow:
    0 0 0 5px rgba(255, 250, 240, 0.85),
    0 12px 22px rgba(69, 45, 25, 0.16);
}

.process-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -88px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px #fbf1df;
  transform: translateX(-50%);
}

.process-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-green {
  color: #1d4f2b;
}

.process-maroon {
  color: var(--gold);
}

.process-green .process-number {
  background: linear-gradient(145deg, #285f32, #143e26);
}

.process-maroon .process-number {
  background: linear-gradient(145deg, #d89830, #a0782d);
}

.process-card {
  width: min(100%, 196px);
  min-height: 106px;
  display: grid;
  place-items: center;
  margin-top: 80px;
  padding: 20px 16px;
  border: 1px solid rgba(205, 157, 83, 0.54);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.48),
    0 14px 26px rgba(75, 49, 24, 0.12);
}

.process-card::before {
  content: "";
  width: 28px;
  height: 14px;
  display: block;
  margin: 0 auto 10px;
  background:
    radial-gradient(circle at 50% 50%, #d3a24b 0 3px, transparent 4px),
    linear-gradient(25deg, transparent 42%, #d3a24b 43% 49%, transparent 50%),
    linear-gradient(155deg, transparent 42%, #d3a24b 43% 49%, transparent 50%);
  opacity: 0.78;
}

.process-card h3 {
  margin: 0;
  color: currentColor;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(18px, 1.1vw, 22px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.process-badges {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px auto 0;
  border: 1px solid rgba(205, 157, 83, 0.4);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 24px rgba(75, 49, 24, 0.1);
}

.process-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  color: #344830;
  font-size: 14px;
  font-weight: 700;
}

.process-badges span+span {
  border-left: 1px solid rgba(205, 157, 83, 0.35);
}

.process-badges svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #1d4f2b;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials {
  padding: 72px 6vw 78px;
  background: linear-gradient(180deg, #fff8ee 0%, #ffffff 100%);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(40px, 3.8vw, 62px);
  line-height: 1.04;
}

.testimonial-slider-container {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonial-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-slider-track .testimonial-card {
  flex: 0 0 calc((100% - (2 * 24px)) / 3);
  box-sizing: border-box;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

/* Arrow Buttons */
.slider-btn {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(195, 137, 40, 0.3);
  color: var(--navy);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(5, 43, 88, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(195, 137, 40, 0.25);
}

.slider-btn:active {
  transform: translateY(0) scale(0.98);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Dots Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(5, 43, 88, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot:hover {
  background: rgba(5, 43, 88, 0.3);
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 6px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid rgba(195, 137, 40, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 32px rgba(18, 39, 70, 0.08);
}

.testimonial-stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card>p {
  margin: 0 0 26px;
  color: #283141;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
  font-weight: 800;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: var(--text);
  font-size: 17px;
}

.testimonial-author small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.cta-section {
  margin: 0;
  padding: 48px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 43, 88, 0.96), rgba(6, 35, 75, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(195, 137, 40, 0.28), transparent 28%);
}

.cta-section p {
  margin: 0 0 8px;
  color: #e4b86b;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cta-section h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.02;
}

.cta-section a {
  min-width: 230px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 28px;
  color: var(--navy-dark);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.cta-section a span {
  color: var(--gold-dark);
  font-size: 24px;
}

.site-footer {
  --footer-content-width: 1500px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.04), transparent 32%),
    linear-gradient(180deg, #0a4a35 0%, var(--footer-green-dark) 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid #052e22;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(195, 137, 40, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(160px, 0.8fr) minmax(290px, 1.2fr) minmax(360px, 1.15fr);
  gap: 58px;
  width: 100%;
  max-width: var(--footer-content-width);
  margin: 0 auto;
  padding: 44px 18px 32px;
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  width: 200px;
  height: 82px;
  overflow: hidden;
}

.footer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-brand p {
  max-width: 400px;
  margin: 16px 0 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: lowercase;
}

.footer-socials .social-icon .social-svg,
.contact-social-links .social-svg {
  width: 17px;
  height: 17px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1200;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 32px rgba(7, 53, 40, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-whatsapp:hover {
  background: #1fbd5a;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7, 53, 40, 0.3);
}

.floating-whatsapp-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.floating-whatsapp-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 78px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }
}

.footer-socials .social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(195, 137, 40, 0.25);
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  position: relative;
  padding-bottom: 8px;
  font-weight: 700;
}

.footer-column h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.footer-column a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}

.footer-column a::before {
  content: "→";
  position: absolute;
  left: -16px;
  opacity: 0;
  color: var(--gold);
  transition: all 0.25s ease;
}

.footer-column a:hover {
  color: var(--gold);
  padding-left: 20px;
}

.footer-column a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0 46px;
  align-content: start;
}

.footer-products h2 {
  grid-column: 1 / -1;
}

.footer-products a {
  margin-bottom: 9px;
  line-height: 1.35;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item a,
.footer-contact-item p {
  margin: 0;
  padding: 0;
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--gold);
  padding-left: 0;
}

.footer-contact-item a::before {
  display: none !important;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.phone-icon {
  background: rgba(23, 98, 55, 0.2);
  border: 1px solid rgba(23, 98, 55, 0.4);
  color: #2fb56e;
}

.email-icon {
  background: rgba(195, 137, 40, 0.16);
  border: 1px solid rgba(195, 137, 40, 0.35);
  color: #f4d38c;
}

.base-icon {
  background: rgba(121, 24, 28, 0.16);
  border: 1px solid rgba(121, 24, 28, 0.35);
  color: #ff6f69;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px max(24px, calc((100% - var(--footer-content-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--footer-green-dark-2);
  box-sizing: border-box;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

@media (max-width: 1180px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .top-content {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 10px 0;
    gap: 8px;
  }

  .top-social {
    justify-content: center;
  }

  .navbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    height: auto;
    min-height: 52px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-links a {
    height: 52px;
  }

  .nav-item,
  .nav-item>a {
    height: 52px;
  }

  .dropdown-menu {
    top: 100%;
    left: 0;
    width: 235px;
    transform: translateY(8px);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    transform: translateY(0);
  }

  .nav-links .active::after {
    bottom: 8px;
  }

  .hero-slide {
    min-height: 560px;
  }

  .hero-copy {
    width: min(560px, 55vw);
    margin-left: 38px;
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(40px, 4.8vw, 56px);
  }

  .hero-subtitle {
    font-size: clamp(26px, 3.3vw, 36px);
  }

  .hero-text {
    max-width: 500px;
    font-size: 18px;
  }

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

  .about-section {
    justify-content: center;
    padding: 36px 24px;
    background: #f8ead4;
    min-height: auto;
  }

  .about-section::before {
    display: none;
  }

  .about-panel-visual {
    display: block;
    margin: 0 0 18px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(195, 137, 40, 0.35);
    background: rgba(255, 252, 246, 0.9);
  }

  .about-panel-visual img {
    width: 100%;
    height: clamp(140px, 38vw, 200px);
    object-fit: cover;
    object-position: center 25%;
    display: block;
  }

  .about-panel {
    position: relative;
    width: min(760px, 92vw);
    background: rgba(255, 248, 236, 0.94);
  }

  .trust-section {
    padding: 80px 24px 60px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .trust-section::before {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
    transform: none;
  }

  .trust-commitment-card {
    grid-column: span 2;
    max-width: 580px;
    justify-self: center;
    width: 100%;
  }

  .product-categories {
    padding: 55px 24px 62px;
  }

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

  .category-card {
    min-height: 310px;
  }

  .product-page-hero {
    min-height: 285px;
  }

  .product-image-page {
    padding: 48px 24px 60px;
  }

  .product-image-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    max-width: 760px;
  }

  .certificate-page {
    padding: 48px 24px 60px;
  }

  .certificate-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    max-width: 760px;
  }

  .why-choose {
    padding: 54px 24px 48px;
  }

  .why-heading {
    margin-bottom: 58px;
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    row-gap: 66px;
  }

  .export-process {
    padding: 52px 24px 46px;
  }

  .export-process::after {
    display: none;
  }

  .process-heading {
    margin-bottom: 34px;
  }

  .process-timeline {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    row-gap: 34px;
    max-width: 820px;
  }

  .process-step {
    padding-top: 0;
  }

  .process-icon {
    width: 118px;
    height: 118px;
  }

  .process-icon::after {
    display: none;
  }

  .process-icon svg {
    width: 56px;
    height: 56px;
  }

  .process-card {
    margin-top: 18px;
  }

  .testimonial-slider-track .testimonial-card {
    flex: 0 0 calc((100% - (1 * 24px)) / 2);
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 760px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-center {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .navbar {
    min-height: 66px;
    gap: 16px;
  }

  .brand {
    margin-left: 0;
  }

  .brand-logo {
    width: 108px;
    height: 46px;
  }

  .quote-btn {
    display: none;
  }

  .hero-slide {
    min-height: 620px;
    padding: 34px 0 48px;
    background-position: 62% center;
  }

  .hero-slide::before {
    background: linear-gradient(90deg,
        rgba(255, 250, 243, 0.96) 0%,
        rgba(255, 250, 243, 0.92) 58%,
        rgba(255, 250, 243, 0.38) 100%);
  }

  .hero-copy {
    width: min(430px, calc(100% - 32px));
    margin-left: 16px;
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .hero-subtitle {
    margin: 12px 0 22px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero-text {
    max-width: 380px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-btn {
    min-width: 0;
    width: min(100%, 330px);
    height: 54px;
    gap: 16px;
    padding: 0 20px;
    font-size: 15px;
  }

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

  .about-section {
    min-height: auto;
    padding: 28px 16px;
    background: #f8ead4;
  }

  .about-panel-visual img {
    height: clamp(130px, 34vw, 170px);
  }

  .about-panel {
    width: 100%;
    padding: 24px 18px;
    border-radius: 18px;
    background: rgba(255, 248, 236, 0.96);
    box-shadow:
      inset 0 0 0 5px rgba(255, 248, 236, 0.5),
      0 18px 36px rgba(98, 67, 30, 0.12);
  }

  .about-kicker {
    gap: 10px;
    font-size: 18px;
  }

  .about-kicker::before,
  .about-kicker::after {
    width: 28px;
  }

  .about-panel h2 {
    font-size: clamp(38px, 10vw, 48px);
  }

  .about-tagline {
    margin-bottom: 24px;
    font-size: clamp(27px, 8vw, 36px);
  }

  .about-highlights {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .about-text {
    margin-bottom: 24px;
  }

  .about-cta {
    display: none;
  }

  .trust-section {
    padding: 60px 16px 50px;
    margin-bottom: 0;
  }

  .trust-section::before {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    transform: none;
  }

  .trust-commitment-card {
    grid-column: auto;
    max-width: none;
  }

  .trust-card-new {
    padding: 54px 20px 32px;
  }

  .product-categories {
    padding: 40px 16px 48px;
  }

  .category-heading {
    margin-bottom: 24px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-card {
    min-height: 300px;
    padding: 14px 14px 18px;
  }

  .category-image {
    width: 100%;
    margin-bottom: 0;
  }

  .category-card h3 {
    width: calc(100% + 28px);
    margin: 0 -14px;
    font-size: 23px;
  }

  .product-page-hero {
    min-height: 240px;
    padding: 54px 16px 50px;
  }

  .product-page-hero p {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .product-image-page {
    padding: 38px 16px 48px;
  }

  .product-image-grid {
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    gap: 24px 18px;
  }

  .certificate-page {
    padding: 38px 16px 48px;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
    gap: 24px 18px;
  }

  .certificate-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .product-image-card img {
    border-width: 10px;
    border-radius: 12px;
  }

  .why-choose {
    padding: 40px 16px 44px;
  }

  .why-heading {
    margin-bottom: 56px;
  }

  .why-heading>p:first-child {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .why-heading h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .why-divider {
    margin: 22px auto 18px;
  }

  .why-intro {
    font-size: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .why-card {
    min-height: 238px;
    padding: 76px 22px 24px;
  }

  .why-icon {
    width: 86px;
    height: 86px;
    top: -42px;
    font-size: 30px;
  }

  .why-icon svg {
    width: 40px;
    height: 40px;
  }

  .export-process {
    padding: 40px 16px 38px;
  }

  .process-heading {
    margin-bottom: 28px;
  }

  .process-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .process-heading p {
    display: block;
    font-size: 15px;
    line-height: 1.45;
  }

  .process-heading p::before,
  .process-heading p::after {
    display: none;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    grid-template-columns: 72px 1fr;
    align-items: center;
    justify-items: start;
    gap: 14px;
  }

  .process-number {
    position: absolute;
    left: 48px;
    top: 3px;
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .process-icon {
    width: 82px;
    height: 82px;
    border-width: 3px;
  }

  .process-icon svg {
    width: 42px;
    height: 42px;
  }

  .process-card {
    width: 100%;
    min-height: 82px;
    margin-top: 0;
    padding: 16px 18px;
    place-items: center start;
  }

  .process-card::before {
    margin-left: 0;
  }

  .process-card h3 {
    text-align: left;
    white-space: nowrap;
    font-size: clamp(14px, 3.6vw, 17px);
  }

  .process-card h3 br {
    display: none;
  }

  .process-badges {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .process-badges span+span {
    border-top: 1px solid rgba(205, 157, 83, 0.35);
    border-left: 0;
  }

  .testimonials {
    padding: 44px 16px 50px;
  }

  .testimonial-slider-container {
    gap: 12px;
  }

  .testimonial-slider-track .testimonial-card {
    flex: 0 0 100%;
  }

  .slider-btn {
    display: none;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .cta-section {
    padding: 36px 16px;
  }

  .cta-section a {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 16px 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }
}

/* Final export process polish */
.export-process {
  padding: 68px 5vw 58px;
  background:
    radial-gradient(circle at 0% 96%, rgba(29, 79, 43, 0.13), transparent 18%),
    radial-gradient(circle at 100% 94%, rgba(121, 24, 28, 0.1), transparent 18%),
    linear-gradient(180deg, #fffdf8 0%, #fbf1e0 100%);
}

.export-process::before {
  opacity: 0.28;
  background:
    radial-gradient(ellipse at 50% 28%, transparent 0 38%, rgba(196, 154, 85, 0.16) 38.2%, transparent 38.8%),
    radial-gradient(circle at 11% 14%, rgba(205, 157, 83, 0.14) 0 5px, transparent 6px),
    radial-gradient(circle at 90% 17%, rgba(205, 157, 83, 0.14) 0 5px, transparent 6px);
}

.export-process::after {
  display: none;
}

.process-heading {
  margin-bottom: 44px;
}

.process-heading h2 {
  color: #7b1719;
  font-size: clamp(40px, 3.8vw, 64px);
  line-height: 1.02;
}

.process-heading h2 span {
  color: #194f2d;
}

.process-heading p {
  margin-top: 16px;
  color: #4e4339;
  font-size: clamp(14px, 0.94vw, 17px);
}

.process-heading p::before,
.process-heading p::after {
  width: 54px;
  background: rgba(195, 137, 40, 0.72);
}

.process-timeline {
  grid-template-columns: repeat(6, minmax(145px, 1fr));
  gap: 22px;
  max-width: 1480px;
  align-items: stretch;
}

.process-step {
  min-height: 270px;
  align-content: start;
  padding: 28px 16px 20px;
  border: 1px solid rgba(205, 157, 83, 0.52);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 240, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(211, 162, 75, 0.12), transparent 54%);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.42),
    0 18px 34px rgba(65, 43, 21, 0.13);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #194f2d, #d3a24b, #7b1719);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 2;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(195, 137, 40, 0.25), rgba(195, 137, 40, 0.9));
}

.process-number {
  position: absolute;
  top: 16px;
  right: 18px;
  left: auto;
  width: 40px;
  height: 40px;
  font-size: 17px;
}

.process-icon {
  width: 94px;
  height: 94px;
  margin-top: 18px;
  color: #f7d68a;
  border: 3px solid #d3a24b;
  background: linear-gradient(145deg, #103c2c, #072c23);
  box-shadow:
    0 0 0 8px rgba(255, 250, 240, 0.92),
    0 12px 24px rgba(41, 48, 30, 0.18);
}

.process-maroon .process-icon {
  background: linear-gradient(145deg, #d89830, #a0782d);
}

.process-icon::after {
  display: none;
}

.process-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2.4;
}

.process-card {
  width: 100%;
  min-height: 0;
  margin-top: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-card::before {
  width: 46px;
  height: 2px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #d3a24b;
  opacity: 1;
}

.process-card h3 {
  font-size: clamp(19px, 1vw, 23px);
  line-height: 1.08;
}

.process-badges {
  width: min(820px, 92vw);
  margin-top: 34px;
  overflow: hidden;
  border-color: rgba(205, 157, 83, 0.48);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
}

.process-badges span {
  min-height: 62px;
  color: #263f2b;
  font-size: 14px;
  font-weight: 800;
}

.process-badges svg {
  color: #194f2d;
  stroke: currentColor;
}

@media (max-width: 1180px) {
  .process-timeline {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    max-width: 850px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .export-process {
    padding: 42px 16px 40px;
  }

  .process-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-step {
    min-height: 0;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px;
  }

  .process-step::before {
    top: 16px;
    bottom: 16px;
    left: 0;
    right: auto;
    width: 4px;
    height: auto;
    border-radius: 0 999px 999px 0;
  }

  .process-number {
    top: 10px;
    left: 62px;
    right: auto;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .process-icon {
    width: 76px;
    height: 76px;
    margin-top: 0;
  }

  .process-icon svg {
    width: 38px;
    height: 38px;
  }

  .process-card {
    margin-top: 0;
  }

  .process-card::before {
    margin: 0 0 10px;
  }

  .process-card h3 {
    text-align: left;
  }
}

/* Export process color and hover refinement */
.export-process {
  background:
    radial-gradient(circle at 8% 14%, rgba(29, 79, 43, 0.12), transparent 18%),
    radial-gradient(circle at 92% 18%, rgba(195, 137, 40, 0.14), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(121, 24, 28, 0.08), transparent 26%),
    linear-gradient(180deg, #fff9ec 0%, #f4ead8 52%, #fffaf1 100%);
}

.export-process::before {
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 50% 28%, transparent 0 38%, rgba(29, 79, 43, 0.18) 38.2%, transparent 38.8%),
    radial-gradient(circle at 12% 18%, rgba(195, 137, 40, 0.16) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 20%, rgba(121, 24, 28, 0.12) 0 5px, transparent 6px);
}

.process-step {
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.process-step::after {
  transition: opacity 0.28s ease;
}

.process-step .process-icon,
.process-step .process-number {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.process-step::before {
  transition: left 0.28s ease, right 0.28s ease;
}

.process-step:hover {
  border-color: rgba(195, 137, 40, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 232, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(195, 137, 40, 0.18), transparent 58%);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.56),
    0 24px 42px rgba(65, 43, 21, 0.18);
  transform: translateY(-8px);
}

.process-step:hover::before {
  left: 10%;
  right: 10%;
}

.process-step:hover .process-icon {
  box-shadow:
    0 0 0 8px rgba(255, 250, 240, 0.98),
    0 18px 30px rgba(41, 48, 30, 0.24);
  transform: translateY(-4px) scale(1.04);
}

.process-step:hover .process-number {
  transform: translateY(-3px) scale(1.05);
}

.process-step:hover .process-card h3 {
  color: #5f1015;
}

.process-step:hover .process-card::before {
  width: 62px;
}

.process-card::before {
  transition: width 0.28s ease;
}

.process-badges {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 234, 0.92));
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.process-badges:hover {
  box-shadow: 0 16px 30px rgba(75, 49, 24, 0.14);
  transform: translateY(-3px);
}

/* Dark export process theme */
.export-process {
  background:
    radial-gradient(circle at 9% 12%, rgba(211, 162, 75, 0.2), transparent 18%),
    radial-gradient(circle at 90% 16%, rgba(228, 184, 107, 0.24), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(211, 162, 75, 0.12), transparent 28%),
    linear-gradient(135deg, #072c23 0%, #0d3b2d 42%, #102b30 72%, #a0782d 100%);
}

.export-process::before {
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0 38%, rgba(255, 225, 164, 0.28) 38.2%, transparent 38.8%),
    radial-gradient(circle at 14% 18%, rgba(255, 218, 142, 0.24) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 20%, rgba(255, 218, 142, 0.2) 0 5px, transparent 6px);
}

.process-heading h2 {
  color: #f4d38c;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.process-heading h2 span {
  color: #ffffff;
}

.process-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.process-heading p::before,
.process-heading p::after {
  background: rgba(244, 211, 140, 0.78);
}

.process-step {
  border-color: rgba(244, 211, 140, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 50% 0%, rgba(244, 211, 140, 0.16), transparent 58%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 38px rgba(0, 0, 0, 0.22);
}

.process-step:hover {
  border-color: rgba(244, 211, 140, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 50% 0%, rgba(244, 211, 140, 0.24), transparent 60%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 26px 48px rgba(0, 0, 0, 0.3);
}

.process-step::before {
  background: linear-gradient(90deg, #f4d38c, #ffffff, #c38928);
}

.process-icon {
  color: #f4d38c;
  border-color: rgba(244, 211, 140, 0.82);
  background: linear-gradient(145deg, #092f25, #061f1a);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.08),
    0 14px 26px rgba(0, 0, 0, 0.28);
}

.process-maroon .process-icon {
  background: linear-gradient(145deg, #a0782d, #634515);
}

.process-card h3 {
  color: #fff7e6;
}

.process-step:hover .process-card h3 {
  color: #f4d38c;
}

.process-card::before {
  background: #f4d38c;
}

.process-badges {
  border-color: rgba(244, 211, 140, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.process-badges:hover {
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.26);
}

.process-badges span {
  color: #fff7e6;
}

.process-badges span+span {
  border-color: rgba(244, 211, 140, 0.26);
}

.process-badges svg {
  color: #f4d38c;
}

/* Contact and CTA redesign */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 78px 6vw 74px;
  background:
    radial-gradient(circle at 12% 8%, rgba(195, 137, 40, 0.13) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 78%, rgba(90, 45, 18, 0.16) 0 3px, transparent 4px),
    linear-gradient(180deg, #fff2d9 0%, #f8e9ca 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-copy,
.contact-form {
  border: 1px solid rgba(195, 137, 40, 0.34);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 22px 46px rgba(73, 47, 24, 0.1);
}

.contact-copy {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: #fff7e8;
  background:
    radial-gradient(circle at 86% 14%, rgba(244, 211, 140, 0.22), transparent 24%),
    linear-gradient(145deg, #073528 0%, #0d432f 58%, #a0782d 100%);
}

.contact-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(244, 211, 140, 0.18);
  border-radius: 50%;
}

.contact-kicker {
  margin: 0 0 12px;
  color: #f4d38c;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 3.5vw, 58px);
  line-height: 1.03;
}

.contact-copy>p:not(.contact-kicker) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(244, 211, 140, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-list span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f4d38c;
  background: rgba(255, 255, 255, 0.1);
}

.contact-list svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list strong {
  color: #f4d38c;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(195, 137, 40, 0.28);
  border-radius: 12px;
  padding: 14px 16px;
  color: #102b30;
  background: #fffdf8;
  font: inherit;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(195, 137, 40, 0.76);
  box-shadow: 0 0 0 4px rgba(195, 137, 40, 0.12);
}

.contact-form button {
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  color: #fff7e8;
  background: linear-gradient(135deg, #0d432f, var(--gold));
  box-shadow: 0 16px 28px rgba(73, 47, 24, 0.18);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-form button:hover {
  box-shadow: 0 20px 34px rgba(73, 47, 24, 0.24);
  transform: translateY(-3px);
}

.cta-section {
  position: relative;
  overflow: hidden;
  width: min(1280px, 88vw);
  margin: 80px auto 78px;
  padding: 54px 48px;
  border: 1px solid rgba(244, 211, 140, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 20%, rgba(244, 211, 140, 0.22), transparent 26%),
    linear-gradient(135deg, #082f25 0%, #0e3d31 52%, #a0782d 100%);
  box-shadow: 0 24px 48px rgba(37, 24, 14, 0.18);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.65s ease;
}

.cta-section:hover::before {
  transform: translateX(100%);
}

.cta-section p,
.cta-section h2,
.cta-section a {
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: #f4d38c;
}

.cta-section a {
  color: #0d342a;
  background: #fff7e8;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cta-section a:hover {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

@media (max-width: 1180px) {
  .contact-section {
    padding: 62px 24px 60px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .cta-section {
    width: calc(100% - 48px);
    margin-top: 60px;
    margin-bottom: 62px;
    padding: 46px 36px;
  }
}

@media (max-width: 760px) {
  .contact-section {
    padding: 44px 16px 46px;
  }

  .contact-copy,
  .contact-form {
    border-radius: 18px;
  }

  .contact-copy {
    padding: 28px 22px;
  }

  .contact-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .contact-copy>p:not(.contact-kicker) {
    font-size: 15px;
  }

  .contact-list a,
  .contact-list div {
    grid-template-columns: 42px 1fr;
    padding: 13px;
  }

  .contact-list span {
    width: 42px;
    height: 42px;
  }

  .contact-form {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-section {
    width: calc(100% - 32px);
    margin-top: 40px;
    margin-bottom: 46px;
    padding: 38px 22px;
    border-radius: 20px;
  }
}

/* Category grid and product page card sizing */
.category-grid {
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  max-width: 1220px;
}

.product-image-grid {
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 20px;
  max-width: 1220px;
}

.product-image-card {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  gap: 0;
  padding: 14px 14px 20px;
  overflow: hidden;
  border: 1px solid rgba(86, 128, 82, 0.34);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(82, 61, 37, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-image-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8d251f 0 36%, #1b6a41 36% 100%);
  pointer-events: none;
}

.product-image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 128, 82, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 34px rgba(82, 61, 37, 0.13);
}

.product-image-card img {
  width: 100%;
  max-width: none;
  aspect-ratio: 1.02;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  border: 0;
  border-radius: 10px 10px 0 0;
  background: #fff3d8;
  box-shadow: none;
}

.product-image-card h2 {
  position: relative;
  width: calc(100% + 28px);
  margin: 0 -14px;
  padding: 18px 12px 18px;
  color: #4b120d;
  border-top: 1px solid rgba(86, 128, 82, 0.16);
  background: #fffdf8;
  font-size: clamp(20px, 1.35vw, 24px);
  z-index: 1;
}

.product-image-card h2::after {
  content: "";
  width: 58px;
  height: 1px;
  display: block;
  margin: 12px auto 0;
  background: rgba(109, 154, 114, 0.72);
}

@media (max-width: 1180px) {

  .category-grid,
  .product-image-grid {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    max-width: 900px;
  }
}

@media (max-width: 760px) {

  .category-grid,
  .product-image-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .product-image-card {
    min-height: 300px;
    padding: 14px 14px 18px;
  }

  .product-image-card h2 {
    font-size: 23px;
  }
}

/* Export process spacing cleanup */
.export-process {
  margin: 64px 0;
  padding: 74px 5vw 70px;
}

.export-process::before {
  display: none;
}

.process-timeline {
  gap: 18px;
  max-width: 1420px;
}

@media (max-width: 1180px) {
  .export-process {
    margin: 52px 0;
    padding: 60px 24px 58px;
  }
}

@media (max-width: 760px) {
  .export-process {
    margin: 38px 0;
    padding: 46px 16px 44px;
  }
}

/* Why choose spacing */
.why-choose {
  margin: 0;
  padding-top: 78px;
  padding-bottom: 72px;
}

@media (max-width: 1180px) {
  .why-choose {
    margin: 0;
    padding-top: 64px;
    padding-bottom: 62px;
  }
}

@media (max-width: 760px) {
  .why-choose {
    margin: 0;
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

/* Scroll Reveal Animations */
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-down {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-down {
  transform: translateY(-50px);
}

@media (max-width: 760px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }
}

/* Revealed State */
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed,
.reveal-down.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
  transition: 
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Quote Request Modal */
body.quote-modal-open {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 24, 0.72);
  backdrop-filter: blur(4px);
}

.quote-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  border: 2px solid #d4a63a;
  border-radius: 22px;
  overflow: hidden;
  background: #faf7f1;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s ease;
}

.quote-modal.is-open .quote-modal-dialog {
  transform: translateY(0) scale(1);
}

.quote-modal-info {
  position: relative;
  color: #fff;
  background:
  linear-gradient(180deg, rgba(8, 14, 28, 0.94) 0%, rgba(5, 10, 22, 0.98) 100%),
  radial-gradient(circle at 20% 20%, rgba(212, 166, 58, 0.08), transparent 34%);
}

.quote-modal-info::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(150deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.quote-modal-info-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 28px 24px 24px;
  display: grid;
  align-content: start;
  gap: 18px;
  overflow-y: auto;
}

.quote-modal-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.quote-modal-brand img {
  width: 118px;
  height: auto;
  display: block;
}

.quote-modal-feature {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 166, 58, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.quote-modal-feature img {
  width: 100%;
  height: 150px;
  display: block;
  object-fit: cover;
}

.quote-modal-kicker {
  margin: 4px 0 0;
  color: #d4a63a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.quote-modal-tagline {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
  font-weight: 700;
}

.quote-modal-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.quote-modal-contact-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(212, 166, 58, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
}

.quote-modal-contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(212, 166, 58, 0.14);
}

.quote-modal-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: #e8c56d;
}

.quote-modal-contact-text {
  display: grid;
  gap: 3px;
}

.quote-modal-contact-text strong {
  color: #d4a63a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.quote-modal-contact-text span:last-child {
  font-size: 14px;
  line-height: 1.35;
}

.quote-modal-form-wrap {
  position: relative;
  background: #faf7f1;
  overflow-y: auto;
}

.quote-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #8a8175;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.quote-modal-close:hover {
  color: #4d4338;
}

.quote-modal-form-content {
  padding: 34px 34px 28px;
}

.quote-modal-form-content h2 {
  margin: 0 0 10px;
  color: #1a2233;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.1;
}

.quote-modal-subtitle {
  margin: 0 0 22px;
  max-width: 520px;
  color: #6f675d;
  font-size: 14px;
  line-height: 1.6;
}

.quote-modal-form {
  display: grid;
  gap: 14px;
}

.quote-modal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-modal-field {
  position: relative;
  display: block;
}

.quote-modal-field-full {
  grid-column: 1 / -1;
}

.quote-modal-field-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
}

.quote-modal-field-icon-top {
  top: 16px;
  transform: none;
}

.quote-modal-field-icon svg {
  width: 18px;
  height: 18px;
  fill: #b0a796;
}

.quote-modal-field input,
.quote-modal-field select,
.quote-modal-field textarea {
  width: 100%;
  border: 1px solid #d4a63a;
  border-radius: 12px;
  background: #fff;
  color: #2f2a24;
  font: inherit;
  font-size: 14px;
  padding: 14px 14px 14px 44px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-modal-field textarea {
  min-height: 112px;
  resize: vertical;
  padding-top: 14px;
}

.quote-modal-field input:focus,
.quote-modal-field select:focus,
.quote-modal-field textarea:focus {
  border-color: #b8891f;
  box-shadow: 0 0 0 3px rgba(212, 166, 58, 0.14);
}

.quote-modal-field select {
  appearance: none;
  cursor: pointer;
}

.quote-modal-select-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #8a8175;
  font-size: 18px;
  pointer-events: none;
}

.quote-modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 15px 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #c59335 0%, #e5c05b 100%);
  color: #1f1a14;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(197, 147, 53, 0.28);
}

.quote-modal-submit:hover {
  filter: brightness(1.03);
}

.quote-modal-submit-icon svg,
.quote-modal-submit-arrow {
  display: inline-flex;
}

.quote-modal-submit-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.quote-modal-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  color: #8d8478;
  font-size: 13px;
}

.quote-modal-note-icon svg {
  width: 16px;
  height: 16px;
  fill: #c59335;
}

@media (max-width: 920px) {
  .quote-modal-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
  }

  .quote-modal-info-inner {
    padding: 22px 20px 18px;
    gap: 14px;
  }

  .quote-modal-feature img {
    height: 120px;
  }

  .quote-modal-contact-list {
    grid-template-columns: 1fr;
  }

  .quote-modal-form-content {
    padding: 26px 22px 22px;
  }

  .quote-modal-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .quote-modal {
    padding: 10px;
  }

  .quote-modal-dialog {
    border-radius: 16px;
  }

  .quote-modal-form-content h2 {
    font-size: 28px;
  }
}

/* Contact page final polish: match certificate/product page language */
.contact-page-body {
  background: #f5efe7;
}

.contact-page {
  background:
    radial-gradient(circle at 18% 14%, rgba(195, 137, 40, 0.08), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(23, 98, 55, 0.06), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f5efe7 100%);
}

.contact-hero {
  min-height: 315px;
  display: grid;
  place-items: center;
  padding: 72px 24px 68px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.9) 0%, rgba(66, 45, 30, 0.78) 52%, rgba(116, 18, 16, 0.9) 100%),
    radial-gradient(circle at 50% 120%, rgba(255, 216, 112, 0.18), transparent 42%);
}

.contact-hero .product-page-hero-content {
  width: auto;
}

.contact-hero .product-page-hero-content::before {
  display: none;
}

.contact-hero p {
  display: inline-flex;
}

.contact-hero h1 {
  display: block;
  text-transform: none;
  font-size: clamp(48px, 5vw, 78px);
}

.contact-hero h1 span {
  color: inherit;
}

.contact-hero h1::after {
  display: none;
}

.contact-body {
  margin-top: 0;
  padding: 58px 6vw 70px;
  background: transparent;
}

.contact-shell {
  width: min(1180px, 100%);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
  align-items: stretch;
}

.contact-form-col,
.contact-info-col {
  position: relative;
  order: initial;
  overflow: hidden;
  border: 1px solid rgba(195, 137, 40, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 44px rgba(82, 61, 37, 0.1);
}

.contact-form-col {
  padding: 38px 40px 40px;
}

.contact-form-col::before,
.contact-info-col::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #8d251f 0 36%, #1b6a41 36% 100%);
  pointer-events: none;
}

.contact-form-kicker,
.contact-info-col h2::before,
.contact-map-kicker {
  color: var(--gold-dark);
}

.contact-form-col h2,
.contact-info-col h2,
.contact-map-head h2 {
  color: #68140f;
  font-family: "Times New Roman", Times, serif;
  font-weight: 800;
}

.contact-form-col h2 {
  max-width: 560px;
  font-size: clamp(32px, 3vw, 46px);
}

.contact-form-col h2::before {
  display: none;
}

.contact-form-lead {
  max-width: 610px;
  color: #5f554b;
}

.contact-main-form {
  gap: 16px;
  padding-top: 0;
  border-top: 0;
}

.contact-main-form label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.contact-main-form input,
.contact-main-form textarea {
  min-height: 52px;
  border: 1px solid #e3d4bf;
  border-radius: 10px;
  color: #2f2a24;
  background: #fffefa;
  box-shadow: none;
}

.contact-main-form textarea {
  min-height: 136px;
}

.contact-main-form input::placeholder,
.contact-main-form textarea::placeholder {
  color: #9d9488;
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(195, 137, 40, 0.12);
}

.contact-submit-btn {
  min-width: 205px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #154a78 100%);
  box-shadow: 0 14px 28px rgba(5, 43, 88, 0.2);
}

.contact-submit-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  padding: 38px 34px 34px;
  color: var(--text);
}

.contact-info-col h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.1;
}

.contact-info-col h2::before {
  content: "Contact Details";
  display: block;
  margin-bottom: 12px;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info-col h2::after {
  content: "Reach our export team for product inquiries, packing details, shipment coordination and documentation support.";
  display: block;
  margin-top: 14px;
  color: #5f554b;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.contact-info-blocks {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  flex: 1;
}

.contact-info-block {
  min-height: 82px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(86, 128, 82, 0.18);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(82, 61, 37, 0.07);
}

.contact-info-block:hover {
  border-color: rgba(86, 128, 82, 0.42);
  background: #fff;
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: none;
}

.contact-info-block:nth-child(even) .contact-info-icon {
  background: var(--navy-dark);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-block strong {
  display: block;
  margin-bottom: 5px;
  color: #68140f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info-block a,
.contact-info-block span {
  color: #3f463f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-info-block a:hover {
  color: var(--gold-dark);
}

.contact-social-wrap {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(195, 137, 40, 0.18);
}

.contact-social-wrap > p {
  color: var(--gold-dark);
}

.contact-social-links a {
  color: var(--navy);
  border: 1px solid rgba(195, 137, 40, 0.22);
  background: #fff;
}

.contact-social-links a:hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.contact-map-section {
  display: block;
  width: min(1180px, calc(100% - 12vw));
  max-width: 1180px;
  margin: 0 auto 78px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.contact-map-head {
  margin-bottom: 24px;
}

.contact-map-head h2 {
  color: #68140f;
  font-size: clamp(34px, 3.4vw, 52px);
}

.contact-map-head > p {
  margin: 12px auto 0;
  max-width: 590px;
  color: #5f554b;
}

.contact-map-frame {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border: 8px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 20px 44px rgba(82, 61, 37, 0.12),
    0 0 0 1px rgba(195, 137, 40, 0.16);
}

.contact-map-frame iframe {
  min-height: 390px;
}

.contact-maps-link {
  grid-column: auto;
  justify-self: auto;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
}

@media (max-width: 1024px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-body {
    padding: 42px 16px 52px;
  }

  .contact-hero {
    min-height: 250px;
    padding: 56px 18px 58px;
  }

  .contact-form-col,
  .contact-info-col {
    padding: 28px 20px;
    border-radius: 15px;
  }

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

  .contact-form-actions {
    justify-content: stretch;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .contact-map-section {
    width: calc(100% - 32px);
    margin-bottom: 56px;
  }

  .contact-map-frame iframe {
    min-height: 280px;
  }
}

/* Refined contact map card */
.contact-map-section {
  width: min(1180px, calc(100% - 12vw));
  max-width: 1180px;
  margin: 0 auto 82px;
  padding: 0;
}

.contact-map-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(195, 137, 40, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 12%, rgba(195, 137, 40, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 236, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 24px 60px rgba(82, 61, 37, 0.13);
}

.contact-map-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8d251f 0 34%, #c38928 34% 66%, #176237 66% 100%);
}

.contact-map-card .contact-map-head {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 16px 8px 16px 4px;
  text-align: left;
}

.contact-map-card .contact-map-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-map-card .contact-map-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.contact-map-card .contact-map-head h2 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(34px, 3.1vw, 50px);
  line-height: 1.02;
  text-align: left;
}

.contact-map-card .contact-map-head > p {
  margin: 16px 0 0;
  max-width: 420px;
  color: #5f554b;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.contact-map-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-map-details div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(86, 128, 82, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-map-details strong {
  color: #68140f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-map-details span {
  color: #3f463f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-map-card .contact-map-frame {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 18px 42px rgba(82, 61, 37, 0.14),
    0 0 0 1px rgba(195, 137, 40, 0.16);
}

.contact-map-card .contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.contact-map-card .contact-maps-link {
  width: fit-content;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy) 0%, #154a78 58%, var(--gold) 100%);
  box-shadow: 0 14px 28px rgba(5, 43, 88, 0.16);
}

@media (max-width: 980px) {
  .contact-map-card {
    grid-template-columns: 1fr;
  }

  .contact-map-card .contact-map-head {
    padding: 12px 4px 0;
  }
}

@media (max-width: 640px) {
  .contact-map-section {
    width: calc(100% - 32px);
    margin-bottom: 58px;
  }

  .contact-map-card {
    gap: 22px;
    padding: 20px;
    border-radius: 18px;
  }

  .contact-map-card .contact-map-head h2 {
    font-size: 34px;
  }

  .contact-map-card .contact-map-frame,
  .contact-map-card .contact-map-frame iframe {
    min-height: 300px;
  }
}

/* Contact form color refinement */
.contact-form-col,
.contact-info-col {
  border-color: rgba(195, 137, 40, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(195, 137, 40, 0.07), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff8ed 100%);
}

.contact-form-col::before,
.contact-info-col::before {
  left: 18px;
  right: 18px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, var(--navy) 100%);
}

.contact-form-kicker,
.contact-info-col h2::before,
.contact-social-wrap > p {
  color: #9a681e;
}

.contact-form-col h2,
.contact-info-col h2 {
  color: var(--navy);
}

.contact-form-lead,
.contact-info-col h2::after {
  color: #4f5a4f;
}

.contact-main-form label {
  color: #083154;
}

.contact-main-form input,
.contact-main-form textarea {
  border-color: rgba(195, 137, 40, 0.32);
  background: rgba(255, 255, 255, 0.82);
}

.contact-main-form input:hover,
.contact-main-form textarea:hover {
  border-color: rgba(23, 98, 55, 0.36);
}

.contact-submit-btn {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  box-shadow: 0 14px 28px rgba(5, 43, 88, 0.18);
}

.contact-info-block {
  border-color: rgba(195, 137, 40, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 248, 0.92));
}

.contact-info-block:hover {
  border-color: rgba(23, 98, 55, 0.38);
}

.contact-info-icon {
  color: #fff;
  background: linear-gradient(145deg, var(--green), #0c4a2b);
}

.contact-info-block:nth-child(even) .contact-info-icon {
  background: linear-gradient(145deg, var(--navy), #082140);
}

.contact-info-block strong {
  color: #7a1719;
}

.contact-info-block a,
.contact-info-block span {
  color: #20372d;
}

.contact-social-links a {
  color: var(--navy);
  border-color: rgba(195, 137, 40, 0.3);
  background: #fffdf8;
}

.contact-social-links a:hover {
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--navy));
  border-color: transparent;
}

/* Contact section final color pass */
.contact-form-col,
.contact-info-col {
  border-color: rgba(195, 137, 40, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(195, 137, 40, 0.1), transparent 32%),
    linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 20px 50px rgba(82, 61, 37, 0.11);
}

.contact-form-col::before,
.contact-info-col::before {
  background: linear-gradient(90deg, #7a1719 0%, #c38928 48%, #176237 100%);
}

.contact-form-kicker,
.contact-info-col h2::before,
.contact-social-wrap > p {
  color: #b67921;
}

.contact-form-col h2,
.contact-info-col h2 {
  color: #7a1719;
}

.contact-form-lead,
.contact-info-col h2::after {
  color: #4f463e;
}

.contact-main-form label {
  color: #052b58;
}

.contact-main-form input,
.contact-main-form textarea {
  border-color: rgba(195, 137, 40, 0.36);
  background: #fff;
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
  border-color: #b67921;
  box-shadow: 0 0 0 3px rgba(195, 137, 40, 0.14);
}

.contact-submit-btn {
  background: linear-gradient(135deg, #7a1719 0%, #b67921 100%);
  box-shadow: 0 16px 28px rgba(122, 23, 25, 0.18);
}

.contact-info-block {
  border-color: rgba(195, 137, 40, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.contact-info-block:hover {
  border-color: rgba(195, 137, 40, 0.52);
  box-shadow: 0 14px 28px rgba(82, 61, 37, 0.1);
}

.contact-info-icon,
.contact-info-block:nth-child(even) .contact-info-icon {
  color: #7a1719;
  border: 1px solid rgba(195, 137, 40, 0.42);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(145deg, #fff4df, #f6d998);
}

.contact-info-block:nth-child(2) .contact-info-icon,
.contact-info-block:nth-child(4) .contact-info-icon {
  color: #052b58;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.86), transparent 35%),
    linear-gradient(145deg, #eef6f8, #c7dde3);
}

.contact-info-block:nth-child(3) .contact-info-icon,
.contact-info-block:nth-child(5) .contact-info-icon {
  color: #176237;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.86), transparent 35%),
    linear-gradient(145deg, #eff8ef, #cfe6cc);
}

.contact-info-icon svg {
  width: 19px;
  height: 19px;
}

.contact-info-block strong {
  color: #8d251f;
}

.contact-info-block a,
.contact-info-block span {
  color: #263429;
}

.contact-social-links a {
  color: #7a1719;
  border-color: rgba(195, 137, 40, 0.35);
  background: #fff;
}

.contact-social-links a:hover {
  color: #fff;
  background: #7a1719;
}

/* Contact page background contrast */
.contact-page-body {
  background: #eef5f1;
}

.contact-page {
  background:
    radial-gradient(circle at 10% 18%, rgba(23, 98, 55, 0.13), transparent 28%),
    radial-gradient(circle at 88% 34%, rgba(5, 43, 88, 0.1), transparent 30%),
    linear-gradient(180deg, #f7fbf8 0%, #eef5f1 46%, #f9f3e8 100%);
}

.contact-body {
  background: transparent;
}

.contact-form-col,
.contact-info-col {
  background:
    radial-gradient(circle at 100% 0%, rgba(195, 137, 40, 0.09), transparent 30%),
    linear-gradient(180deg, #fffefa 0%, #fff8ec 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 22px 54px rgba(18, 51, 40, 0.12);
}

.contact-map-card {
  background:
    radial-gradient(circle at 8% 12%, rgba(195, 137, 40, 0.1), transparent 30%),
    linear-gradient(135deg, #fffefa, #fff7eb);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 24px 60px rgba(18, 51, 40, 0.12);
}

/* About page final design */
.about-page-body {
  background: #fff;
}

.about-page-main {
  background: #fff;
}

.about-page-body .about-hero {
  min-height: 340px;
  padding: 88px 24px 80px;
  background:
    linear-gradient(135deg, rgba(7, 53, 40, 0.9) 0%, rgba(10, 74, 53, 0.85) 100%);
}

.about-page-body .about-page-who {
  padding: 76px 6vw 28px;
  background: #fff;
}

.about-page-body .about-page-who-grid {
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 52px;
  max-width: 1280px;
}

.about-page-body .about-page-who-copy {
  align-self: center;
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--gold);
}

.about-page-body .about-page-kicker {
  width: fit-content;
  padding: 8px 14px;
  color: #5d4a38;
  background: #fff7e6;
  border: 1px solid rgba(195, 137, 40, 0.16);
  font-size: 12px;
  letter-spacing: 1.8px;
}

.about-page-body .about-page-kicker-icon {
  color: var(--gold);
}

.about-page-body .about-page-who-copy h2 {
  margin-bottom: 22px;
  color: #7a1719;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.02;
}

.about-page-body .about-page-who-copy p:not(.about-page-kicker) {
  color: #4d4d4d;
  font-size: 15px;
  line-height: 1.75;
}

.about-page-body .about-page-gallery {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-page-body .about-page-gallery figure {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(82, 61, 37, 0.12);
}

.about-page-body .about-page-gallery-main {
  aspect-ratio: 2.15 / 1;
  border-radius: 14px;
}

.about-page-body .about-page-gallery-row figure {
  aspect-ratio: 1.28;
}

.about-page-body .about-page-features.features {
  max-width: 780px;
  margin: 18px auto 58px;
  gap: 12px;
}

.about-page-body .about-page-features .feature-card {
  min-height: 82px;
  grid-template-columns: 38px 1fr;
  padding: 13px 15px;
  border: 1px solid #edf0ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 39, 70, 0.08);
}

.about-page-body .about-page-features .feature-icon {
  width: 34px;
  height: 34px;
  color: var(--green);
  border-color: rgba(23, 98, 55, 0.7);
  font-size: 15px;
}

.about-page-body .about-page-features .feature-card h2 {
  color: var(--navy);
  font-size: 13px;
}

.about-page-body .about-page-features .feature-card p {
  color: #4d4d4d;
}

.about-page-body .about-page-ceo {
  padding: 0 6vw 74px;
  background: #fff;
}

.about-page-body .about-page-ceo-shell {
  max-width: 1160px;
  grid-template-columns: 180px minmax(0, 1fr) 160px;
  padding: 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(195, 137, 40, 0.22), transparent 34%),
    linear-gradient(135deg, #0b4a32 0%, #104f35 52%, #0a3b29 100%);
  box-shadow: 0 24px 52px rgba(7, 53, 40, 0.22);
}

.about-page-body .about-page-ceo-photo {
  padding: 7px;
  border-radius: 12px;
  background: #f6ddb3;
}

.about-page-body .about-page-ceo-photo img {
  max-height: 190px;
  border-radius: 8px;
}

.about-page-body .about-page-ceo-copy h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(26px, 2.4vw, 38px);
}

.about-page-body .about-page-ceo-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.about-page-body .about-page-ceo-signature {
  color: #f4d38c !important;
}

.about-page-body .about-page-ceo-seal {
  border-left-color: rgba(244, 211, 140, 0.2);
}

.about-page-body .trust-section {
  padding: 86px 6vw 82px;
  background:
    radial-gradient(ellipse at 50% 36%, transparent 0 38%, rgba(195, 137, 40, 0.14) 38.2%, transparent 38.8%),
    radial-gradient(circle at 8% 12%, rgba(195, 137, 40, 0.08), transparent 24%),
    linear-gradient(180deg, #fffaf0 0%, #f6ecd8 100%);
}

.about-page-body .trust-header {
  margin-bottom: 72px;
}

.about-page-body .trust-subtitle-new {
  color: #b07828;
}

.about-page-body .trust-header h2 {
  color: #0d4a35;
  font-size: clamp(38px, 3.6vw, 58px);
}

.about-page-body .trust-header h2 span.italic-text {
  color: #b07828;
}

.about-page-body .trust-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  max-width: 960px;
  gap: 28px;
}

.about-page-body .trust-card-new {
  padding: 58px 32px 42px;
  border: 1px solid rgba(195, 137, 40, 0.14);
  border-radius: 12px;
  background: #fff;
}

.about-page-body .trust-icon-box {
  width: 58px;
  height: 58px;
  top: -29px;
  background: #9a252c;
}

.about-page-body .trust-card-new h3 {
  color: #0d4a35;
}

.about-page-body .why-choose {
  margin: 0;
  padding: 84px 6vw 84px;
  background: #fff8ed;
}

.about-page-body .why-heading {
  margin-bottom: 64px;
}

.about-page-body .why-heading > p:first-child {
  color: var(--gold-dark);
}

.about-page-body .why-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--navy);
}

.about-page-body .why-intro {
  color: #3c2c28;
}

.about-page-body .why-grid {
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  max-width: 1220px;
  gap: 18px;
}

.about-page-body .why-card {
  min-height: 250px;
  padding: 72px 20px 24px;
  border-color: rgba(195, 137, 40, 0.32);
  border-radius: 10px;
  background: #fffdf8;
}

.about-page-body .why-icon {
  width: 82px;
  height: 82px;
  top: -40px;
  color: #f4d38c;
  background: #0d4a35;
  box-shadow:
    0 0 0 8px #fff8ed,
    0 0 0 10px rgba(195, 137, 40, 0.45),
    0 14px 26px rgba(35, 56, 34, 0.18);
}

.about-page-body .why-icon svg {
  width: 38px;
  height: 38px;
}

.about-page-body .why-card h3 {
  color: var(--navy);
}

.about-page-body .why-card p {
  color: #3d332f;
}

.about-page-body .cta-section {
  width: min(1020px, calc(100% - 48px));
  margin: 78px auto 78px;
  padding: 46px 42px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 211, 140, 0.26), transparent 34%),
    linear-gradient(135deg, #0d4a35 0%, #124f38 54%, #a0782d 100%);
}

.about-page-body .cta-section h2 {
  max-width: 620px;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(34px, 3.4vw, 56px);
}

.about-page-body .cta-section a {
  color: #0d342a;
  background: #fff7e8;
}

@media (max-width: 1180px) {
  .about-page-body .why-grid {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    gap: 54px 18px;
  }
}

@media (max-width: 1024px) {
  .about-page-body .about-page-who-grid,
  .about-page-body .about-page-ceo-shell {
    grid-template-columns: 1fr;
  }

  .about-page-body .about-page-ceo-photo {
    max-width: 220px;
  }

  .about-page-body .about-page-ceo-seal {
    border-left: 0;
    border-top: 1px solid rgba(244, 211, 140, 0.2);
  }

  .about-page-body .trust-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 54px;
  }
}

@media (max-width: 640px) {
  .about-page-body .about-page-who,
  .about-page-body .why-choose,
  .about-page-body .trust-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-page-body .about-page-who-copy {
    padding-left: 16px;
  }

  .about-page-body .about-page-features.features {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .about-page-body .why-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-page-body .cta-section {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }
}

/* About page visible redesign override */
body.about-page-body {
  background: #fffaf1 !important;
}

body.about-page-body .about-page-main {
  background:
    radial-gradient(circle at 12% 12%, rgba(195, 137, 40, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fff7ea 100%) !important;
}

body.about-page-body .about-hero {
  min-height: 330px !important;
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.9) 0%, rgba(72, 52, 26, 0.74) 48%, rgba(116, 18, 16, 0.88) 100%) !important;
}

body.about-page-body .about-page-who {
  padding: 82px 6vw 36px !important;
  background: #fff !important;
}

body.about-page-body .about-page-who-grid {
  max-width: 1260px !important;
  gap: 56px !important;
}

body.about-page-body .about-page-who-copy {
  padding: 30px 0 30px 30px !important;
  border-left: 4px solid #c38928 !important;
}

body.about-page-body .about-page-who-copy h2,
body.about-page-body .trust-header h2,
body.about-page-body .why-heading h2 {
  font-family: "Times New Roman", Times, serif !important;
}

body.about-page-body .about-page-who-copy h2 {
  color: #7a1719 !important;
  font-size: clamp(38px, 3.8vw, 58px) !important;
  line-height: 1.02 !important;
}

body.about-page-body .about-page-gallery figure {
  border-radius: 14px !important;
  box-shadow: 0 18px 40px rgba(82, 61, 37, 0.16) !important;
}

body.about-page-body .about-page-features.features {
  max-width: 860px !important;
  margin: 22px auto 62px !important;
}

body.about-page-body .about-page-features .feature-card {
  border: 1px solid rgba(195, 137, 40, 0.18) !important;
  background: #fff !important;
  box-shadow: 0 14px 30px rgba(18, 39, 70, 0.08) !important;
}

body.about-page-body .about-page-ceo-shell {
  max-width: 1160px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 211, 140, 0.24), transparent 34%),
    linear-gradient(135deg, #0b4a32 0%, #0e4f37 58%, #0a3828 100%) !important;
  box-shadow: 0 26px 58px rgba(7, 53, 40, 0.24) !important;
}

body.about-page-body .trust-section {
  padding: 92px 6vw 88px !important;
  background:
    radial-gradient(ellipse at 50% 35%, transparent 0 38%, rgba(195, 137, 40, 0.16) 38.2%, transparent 38.8%),
    linear-gradient(180deg, #fffaf0 0%, #f4ead7 100%) !important;
}

body.about-page-body .trust-card-new {
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 18px 38px rgba(82, 61, 37, 0.1) !important;
}

body.about-page-body .why-choose {
  padding: 88px 6vw 88px !important;
  background: #fff8ed !important;
}

body.about-page-body .why-card {
  border-radius: 12px !important;
  background: #fffdf8 !important;
  box-shadow: 0 16px 34px rgba(82, 61, 37, 0.08) !important;
}

body.about-page-body .why-icon {
  background: #0d4a35 !important;
  color: #f4d38c !important;
}

body.about-page-body .cta-section {
  margin: 84px auto !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 211, 140, 0.26), transparent 34%),
    linear-gradient(135deg, #0d4a35 0%, #124f38 54%, #a0782d 100%) !important;
}

.product-image-page .product-image-card,
.product-categories .category-card {
  cursor: pointer;
}

/* Contact page motion polish */
.contact-form-col,
.contact-info-col,
.contact-map-card {
  will-change: transform, opacity;
}

.contact-main-form label {
  will-change: transform, opacity;
}

.contact-main-form input,
.contact-main-form textarea {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.contact-main-form input:hover,
.contact-main-form textarea:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(82, 61, 37, 0.08);
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
  transform: translateY(-2px);
}

.contact-submit-btn {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.contact-submit-btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.45) 50%, transparent 68%);
  opacity: 0;
  transform: translateX(-65%) rotate(8deg);
  transition:
    opacity 0.35s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(122, 23, 25, 0.24);
}

.contact-submit-btn:hover::before {
  opacity: 1;
  transform: translateX(65%) rotate(8deg);
}

.thank-you-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.thank-you-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.thank-you-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(4px);
}

.thank-you-popup-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 34px 28px 28px;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  text-align: center;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.thank-you-popup.is-open .thank-you-popup-card {
  transform: translateY(0) scale(1);
}

.thank-you-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.thank-you-popup-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #18794e;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.thank-you-popup-card h2 {
  margin: 0 0 10px;
  font-size: 30px;
  color: #172033;
}

.thank-you-popup-card p {
  margin: 0;
  color: #5b6474;
  line-height: 1.6;
}

.thank-you-popup-action {
  margin-top: 22px;
  min-width: 120px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  background: #18794e;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.contact-info-block {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s ease,
    box-shadow 0.36s ease,
    background 0.36s ease;
}

.contact-info-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(195, 137, 40, 0.1), transparent);
  opacity: 0;
  transform: translateX(-55%);
  transition:
    opacity 0.35s ease,
    transform 0.65s ease;
}

.contact-info-block:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 34px rgba(42, 31, 18, 0.14);
}

.contact-info-block:hover::after {
  opacity: 1;
  transform: translateX(55%);
}

.contact-info-icon {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.contact-info-block:hover .contact-info-icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 12px 22px rgba(5, 43, 88, 0.16);
  border-color: rgba(195, 137, 40, 0.68);
}

.contact-social-links a {
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-social-links a:hover {
  transform: translateY(-5px) rotate(-4deg);
  box-shadow: 0 14px 22px rgba(122, 23, 25, 0.18);
}

.contact-map-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.contact-map-card:hover {
  transform: translateY(-8px);
  border-color: rgba(195, 137, 40, 0.42);
  box-shadow: 0 30px 70px rgba(42, 31, 18, 0.16);
}

.contact-map-card .contact-map-frame iframe {
  transition: filter 0.4s ease, transform 0.4s ease;
}

.contact-map-card:hover .contact-map-frame iframe {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.01);
}

.contact-map-details div {
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.contact-map-details div:hover {
  transform: translateX(6px);
  border-color: rgba(195, 137, 40, 0.48);
  background: #fff;
  box-shadow: 0 12px 24px rgba(82, 61, 37, 0.1);
}

/* Mobile header and footer layout */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .top-bar {
    display: none;
  }

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

  .navbar {
    position: relative;
    min-height: 68px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-logo {
    width: 118px;
    height: 50px;
    object-fit: contain;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    border: 1px solid rgba(195, 137, 40, 0.32);
    border-radius: 12px;
    color: var(--navy);
    background: #fffaf2;
    box-shadow: 0 10px 22px rgba(6, 35, 75, 0.1);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.28s ease,
      opacity 0.22s ease;
  }

  body.mobile-nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.mobile-nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    z-index: 120;
    height: auto;
    max-height: calc(100vh - 94px);
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 4px;
    padding: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(195, 137, 40, 0.25);
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 24px 60px rgba(6, 35, 75, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  body.mobile-nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a,
  .nav-item > a {
    width: 100%;
    height: auto;
    min-height: 46px;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.2;
  }

  .nav-links a:hover,
  .nav-links a:focus,
  .nav-links .active {
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--gold-dark));
  }

  .nav-links .active::after {
    display: none;
  }

  .nav-item {
    width: 100%;
    height: auto;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 4px 0 8px;
    padding: 8px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    box-shadow: none;
    background: rgba(5, 43, 88, 0.05);
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      opacity 0.24s ease,
      visibility 0.24s ease,
      transform 0.24s ease;
  }

  .dropdown.is-mobile-open .dropdown-menu {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .dropdown-menu a {
    min-height: 38px;
    margin: 0;
    padding: 10px 12px;
    color: #223247;
    font-size: 14px;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus {
    color: var(--gold-dark);
    background: #fff;
  }

  .quote-btn {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 38px 18px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 15px;
  }

  .footer-column h2 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .footer-column a {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact-item {
    align-items: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
    text-align: center;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }
}

@media (max-width: 430px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

/* Mobile nav correction */
@media (max-width: 760px) {
  .navbar .brand {
    width: 150px;
    min-width: 150px;
    overflow: hidden;
  }

  .navbar .brand-logo {
    width: 150px;
    height: 58px;
    object-fit: cover;
    object-position: center;
  }

  .navbar .mobile-menu-toggle {
    position: relative;
    display: block;
    padding: 0;
    border: 2px solid rgba(5, 43, 88, 0.9);
    background: #fff;
  }

  .navbar .mobile-menu-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    margin: 0;
    background: #052b58;
    transform: translate(-50%, -50%);
  }

  .navbar .mobile-menu-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .navbar .mobile-menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .navbar .mobile-menu-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
  }

  body.mobile-nav-open .navbar .mobile-menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.mobile-nav-open .navbar .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.mobile-nav-open .navbar .mobile-menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .navbar .nav-links {
    left: 18px;
    right: 18px;
    padding: 18px 16px;
    gap: 8px;
    background: #fffdf7;
  }

  .navbar .nav-item.dropdown {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
  }

  .navbar .nav-item.dropdown > a {
    color: #fff;
    background: linear-gradient(135deg, #052b58 0%, #b67921 100%);
  }

  .navbar .dropdown-menu,
  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown:focus-within .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    max-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(195, 137, 40, 0.24);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px) !important;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      opacity 0.24s ease,
      visibility 0.24s ease,
      transform 0.24s ease;
  }

  .navbar .dropdown.is-mobile-open .dropdown-menu,
  .navbar .dropdown.is-mobile-open:hover .dropdown-menu,
  .navbar .dropdown.is-mobile-open:focus-within .dropdown-menu {
    max-height: 560px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) !important;
  }

  .navbar .dropdown-menu a {
    width: 100%;
    min-height: 38px;
    justify-content: flex-start;
    padding: 9px 10px;
    color: #1f2f42;
    background: transparent;
    white-space: normal;
  }

  .navbar .dropdown-menu a:hover,
  .navbar .dropdown-menu a:focus {
    color: #fff;
    background: #052b58;
  }
}

/* Mobile footer redesign */
@media (max-width: 760px) {
  .site-footer {
    border-top-width: 2px;
    border-top-color: #052e22;
    background:
      radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.05), transparent 34%),
      linear-gradient(180deg, #0a4a35 0%, var(--footer-green-dark) 100%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    padding: 28px 18px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-logo-box {
    width: min(230px, 74vw);
    height: 92px;
    margin: 0 auto;
    padding: 8px 18px;
    border-radius: 12px;
  }

  .footer-logo-box img {
    object-fit: cover;
    object-position: center;
  }

  .footer-brand p {
    max-width: 340px;
    margin: 14px auto 16px;
    font-size: 15px;
    line-height: 1.6;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-column {
    min-width: 0;
  }

  .footer-column h2 {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 20px;
  }

  .footer-column h2::after {
    width: 32px;
  }

  .footer-column a {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  .footer-contact {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .footer-contact h2 {
    text-align: center;
  }

  .footer-contact h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-item {
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 14px;
  }

  .footer-contact-item:last-child {
    margin-bottom: 0;
  }

  .footer-contact-item a,
  .footer-contact-item p {
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-bottom {
    min-height: auto;
    padding: 16px 18px 18px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .footer-logo-box {
    width: min(220px, 82vw);
    height: 88px;
  }

  .footer-grid {
    gap: 22px 14px;
  }
}

/* Export process mobile redesign */
@media (max-width: 760px) {
  .export-process {
    margin: 34px 0 0;
    padding: 42px 16px 44px;
    overflow: hidden;
    background:
      radial-gradient(circle at 12% 0%, rgba(244, 211, 140, 0.2), transparent 28%),
      radial-gradient(circle at 100% 76%, rgba(195, 137, 40, 0.22), transparent 30%),
      linear-gradient(180deg, #083226 0%, #082b25 52%, #102c2f 100%);
  }

  .export-process::before,
  .export-process::after {
    display: none;
  }

  .process-heading {
    max-width: 330px;
    margin: 0 auto 28px;
  }

  .process-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.02;
    letter-spacing: 0;
    text-shadow: none;
  }

  .process-heading p {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
  }

  .process-heading p::before,
  .process-heading p::after {
    display: none;
  }

  .process-timeline {
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 auto;
  }

  .process-step {
    min-height: 0;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px 15px;
    border: 1px solid rgba(244, 211, 140, 0.28);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
      rgba(6, 39, 34, 0.76);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }

  .process-step::before,
  .process-step::after,
  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-number {
    top: 8px;
    left: 48px;
    right: auto;
    z-index: 4;
    width: 29px;
    height: 29px;
    border: 2px solid #083226;
    font-size: 12px;
    box-shadow: none;
  }

  .process-icon {
    width: 58px;
    height: 58px;
    margin: 0;
    border-width: 2px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
  }

  .process-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2.35;
  }

  .process-card {
    width: 100%;
    min-height: 0;
    display: block;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .process-card::before {
    width: 38px;
    height: 2px;
    margin: 0 0 8px;
    background: #f4d38c;
  }

  .process-card h3 {
    color: #fff7e6;
    font-size: clamp(14px, 3.6vw, 17px);
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
  }

  .process-card h3 br {
    display: none;
  }

  .process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 211, 140, 0.54);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
      rgba(7, 48, 41, 0.82);
  }

  .process-step:hover .process-icon,
  .process-step:hover .process-number {
    transform: none;
  }

  .process-badges {
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 28px auto 0;
    padding: 12px;
    border: 1px solid rgba(244, 211, 140, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  }

  .process-badges span {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid rgba(244, 211, 140, 0.16);
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.065);
    font-size: 14px;
    text-align: left;
  }

  .process-badges svg {
    width: 24px;
    height: 24px;
    color: #f4d38c;
  }
}

@media (max-width: 380px) {
  .process-step {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 12px;
  }

  .process-icon {
    width: 54px;
    height: 54px;
  }

  .process-card h3 {
    font-size: clamp(13px, 3.4vw, 16px);
  }
}

/* Home hero mobile redesign */
@media (max-width: 760px) {
  .hero {
    background: #fffaf2;
  }

  .hero-slide {
    min-height: min(560px, calc(100vh - 68px));
    display: grid;
    align-items: start;
    padding: 118px 0 20px;
    background-position: 68% 96%;
    background-size: auto 112%;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.92) 43%, rgba(255, 250, 242, 0.58) 72%, rgba(255, 250, 242, 0.16) 100%),
      linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.28));
  }

  .hero-copy {
    width: min(100% - 36px, 390px);
    margin: 0 auto;
    padding-top: 10px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .hero h1 span {
    display: inline;
  }

  .hero-subtitle {
    max-width: 330px;
    margin: 12px 0 18px;
    font-size: clamp(21px, 6.2vw, 26px);
    line-height: 1.08;
  }

  .hero-text {
    max-width: 335px;
    margin: 0 0 26px;
    color: #2f3d4b;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-btn {
    width: min(100%, 335px);
    min-width: 0;
    height: 52px;
    justify-content: space-between;
    padding: 0 18px 0 22px;
    border: 2px solid #c38928;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 12px 24px rgba(5, 43, 88, 0.16);
  }

  .hero-btn span {
    width: 28px;
    text-align: right;
    font-size: 22px;
  }

  .hero-slide-2,
  .hero-slide-4 {
    background-position: 78% 96%;
    background-size: auto 112%;
  }
}

@media (max-width: 390px) {
  .hero-slide {
    min-height: 540px;
    padding-top: 108px;
  }

  .hero-copy {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: clamp(29px, 8.6vw, 34px);
  }

  .hero-subtitle {
    font-size: clamp(20px, 6vw, 24px);
  }

  .hero-text {
    font-size: 14.5px;
  }
}

/* Feature cards mobile redesign */
@media (max-width: 760px) {
  .features,
  .about-page-body .about-page-features.features {
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card,
  body.about-page-body .about-page-features .feature-card {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 16px 16px 16px 18px;
    overflow: hidden;
    border: 1px solid rgba(195, 137, 40, 0.2) !important;
    border-radius: 16px !important;
    background:
      linear-gradient(135deg, #ffffff 0%, #fffaf0 100%) !important;
    box-shadow: 0 14px 30px rgba(18, 39, 70, 0.08) !important;
  }

  .feature-card::before,
  body.about-page-body .about-page-features .feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #176237, #c38928);
  }

  .feature-card::after,
  body.about-page-body .about-page-features .feature-card::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -42px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(23, 98, 55, 0.07);
    pointer-events: none;
  }

  .feature-icon,
  body.about-page-body .about-page-features .feature-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, #176237, #0b3a68);
    box-shadow: 0 10px 22px rgba(23, 98, 55, 0.2);
    font-size: 18px;
  }

  .feature-card > div,
  body.about-page-body .about-page-features .feature-card > div {
    position: relative;
    z-index: 1;
  }

  .feature-card h2,
  body.about-page-body .about-page-features .feature-card h2 {
    margin: 0 0 6px;
    color: #052b58;
    font-size: 16px;
    line-height: 1.2;
  }

  .feature-card p,
  body.about-page-body .about-page-features .feature-card p {
    margin: 0;
    color: #3f4d5b;
    font-size: 14px;
    line-height: 1.45;
  }

  .feature-card:hover,
  body.about-page-body .about-page-features .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(18, 39, 70, 0.12) !important;
  }
}

@media (max-width: 390px) {
  .feature-card,
  body.about-page-body .about-page-features .feature-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 14px 15px 16px;
  }

  .feature-icon,
  body.about-page-body .about-page-features .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

/* About page mobile intro redesign */
@media (max-width: 760px) {
  body.about-page-body .about-page-who {
    padding: 44px 16px 26px;
  }

  body.about-page-body .about-page-who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100%, 430px);
    margin: 0 auto;
  }

  body.about-page-body .about-page-who-copy {
    position: relative;
    padding: 22px 18px;
    border: 1px solid rgba(195, 137, 40, 0.2);
    border-radius: 18px;
    background:
      radial-gradient(circle at 100% 0%, rgba(195, 137, 40, 0.12), transparent 34%),
      linear-gradient(180deg, #fffdf8 0%, #fff7ea 100%);
    box-shadow: 0 18px 38px rgba(82, 61, 37, 0.1);
  }

  body.about-page-body .about-page-who-copy::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #176237, #c38928, #7a1719);
  }

  body.about-page-body .about-page-kicker {
    margin: 0 0 12px;
    color: #9a681e;
    font-size: 11px;
    letter-spacing: 1.7px;
  }

  body.about-page-body .about-page-kicker-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  body.about-page-body .about-page-who-copy h2 {
    margin: 0 0 16px;
    color: #052b58;
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.05;
  }

  body.about-page-body .about-page-who-copy p:not(.about-page-kicker) {
    margin: 0 0 12px;
    color: #3f4d5b;
    font-size: 14.5px;
    line-height: 1.65;
  }

  body.about-page-body .about-page-who-copy p:last-child {
    margin-bottom: 0;
  }

  body.about-page-body .about-page-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
  }

  body.about-page-body .about-page-gallery-main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
    border-radius: 18px !important;
  }

  body.about-page-body .about-page-gallery-row {
    display: contents;
  }

  body.about-page-body .about-page-gallery-row figure {
    aspect-ratio: 1 / 0.82;
    border-radius: 13px !important;
  }

  body.about-page-body .about-page-gallery figure {
    overflow: hidden;
    border: 1px solid rgba(195, 137, 40, 0.16) !important;
    box-shadow: 0 14px 28px rgba(82, 61, 37, 0.12) !important;
  }

  body.about-page-body .about-page-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-section {
    padding: 38px 16px;
    background: #f8ead4;
  }

  .about-panel {
    padding: 22px 18px;
    border-radius: 18px;
    background: rgba(255, 248, 236, 0.96);
  }

  .about-panel h2 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.04;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-highlights article {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.54);
  }

  .about-text p {
    font-size: 14.5px;
    line-height: 1.65;
  }
}

/* ===== About Page — Unified Design ===== */
body.about-page-body {
  --about-gold: #c38928;
  --about-gold-light: #d4a24e;
  --about-navy: #1a2f4a;
  --about-green: #0f5c42;
  --about-green-deep: #0a4532;
  --about-text: #5c6678;
  --about-bg-a: #fafaf8;
  --about-bg-b: #f3f5f8;
  --about-bg-c: #f8f6f2;
  --about-bg-d: #f2f0ec;
  --about-max: 1180px;
}

body.about-page-body .about-page-main {
  background: var(--about-bg-a);
}

body.about-page-body .about-hero {
  min-height: 315px;
  display: grid;
  place-items: center;
  padding: 72px 24px 68px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(16, 69, 43, 0.9) 0%, rgba(66, 45, 30, 0.78) 52%, rgba(116, 18, 16, 0.9) 100%),
    radial-gradient(circle at 50% 120%, rgba(255, 216, 112, 0.18), transparent 42%);
}

body.about-page-body .about-hero .product-page-hero-content {
  width: auto;
}

body.about-page-body .about-hero::before {
  animation: aboutHeroPattern 8s ease-in-out infinite alternate;
}

body.about-page-body .about-hero .product-page-hero-content {
  animation: aboutHeroTextIn 0.9s ease backwards;
}

body.about-page-body .about-company-card:hover,
body.about-page-body .about-leadership-card:hover,
body.about-page-body .about-manager-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(7, 53, 40, 0.28);
}

body.about-page-body .about-company-card.revealed:hover,
body.about-page-body .about-leadership-card.revealed:hover,
body.about-page-body .about-manager-card.revealed:hover {
  transform: translateY(-6px) !important;
}

body.about-page-body .about-company-card,
body.about-page-body .about-leadership-card,
body.about-page-body .about-manager-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@keyframes aboutHeroTextIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aboutHeroPattern {
  from {
    opacity: 0.12;
    transform: scale(1);
  }

  to {
    opacity: 0.24;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.about-page-body .about-hero::before,
  body.about-page-body .about-hero .product-page-hero-content {
    animation: none;
  }
}

/* — Intro / Who We Are — */
.about-intro-section {
  position: relative;
  padding: 88px 24px 80px;
  background: var(--about-bg-a);
  overflow: hidden;
}

.about-intro-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 137, 40, 0.2), transparent);
  pointer-events: none;
}

.about-intro-section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(-60px, calc((100% - 1240px) / 2 - 100px));
  width: min(400px, 34vw);
  height: min(400px, 34vw);
  transform: translateY(-50%);
  border: 1px solid rgba(195, 137, 40, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.about-intro-shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.05fr);
  gap: 48px 56px;
  align-items: center;
}

.about-intro-copy {
  padding: 6px 0 6px 22px;
  border-left: 2px solid var(--about-gold);
}

.about-intro-label {
  margin: 0 0 14px;
  color: var(--about-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-intro-copy h2 {
  margin: 0 0 14px;
  color: var(--about-navy);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 800;
  line-height: 1.12;
}

.about-intro-line {
  display: block;
  width: 48px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--about-gold);
}

.about-intro-copy p {
  margin: 0 0 16px;
  color: var(--about-text);
  font-size: 15.5px;
  line-height: 1.82;
}

.about-intro-copy p:last-child {
  margin-bottom: 0;
}

.about-company-card {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(195, 137, 40, 0.14);
  box-shadow:
    0 8px 28px rgba(26, 47, 74, 0.06),
    0 18px 44px rgba(26, 47, 74, 0.05);
}

.about-company-card-photo {
  margin: 0;
  overflow: hidden;
  min-height: 300px;
}

.about-company-card-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.about-company-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 26px 24px;
}

.about-company-card-copy .about-intro-label {
  margin-bottom: 8px;
  font-size: 10.5px;
}

.about-company-card-copy h3 {
  margin: 0 0 4px;
  color: var(--about-navy);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 800;
  line-height: 1.2;
}

.about-company-tagline {
  margin: 0 0 12px;
  color: var(--about-gold);
  font-size: 12.5px;
  font-weight: 600;
}

.about-company-card-copy .about-intro-line {
  width: 40px;
  margin-bottom: 12px;
}

.about-company-message {
  margin: 0 0 10px;
  color: var(--about-text);
  font-size: 13px;
  line-height: 1.68;
}

.about-company-footer {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(195, 137, 40, 0.18);
  color: var(--about-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.about-ceo-portrait {
  object-fit: cover;
  object-position: center 8%;
}

/* — Leadership — */
.about-leadership-section {
  position: relative;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(195, 137, 40, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--about-bg-b) 0%, #eef1f5 100%);
  overflow: hidden;
}

.about-leadership-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--about-gold), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.about-leadership-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(26, 47, 74, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.about-leadership-shell {
  position: relative;
  z-index: 1;
  max-width: var(--about-max);
  margin: 0 auto;
}

.about-leadership-card {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  border: 1.5px solid rgba(195, 137, 40, 0.72);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 18%, rgba(195, 137, 40, 0.16) 0%, transparent 24%),
    radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 30%),
    linear-gradient(135deg, #073528 0%, #064431 48%, #03291f 100%);
  box-shadow: 0 18px 46px rgba(7, 53, 40, 0.24);
}

.about-leadership-photo {
  margin: 22px 0 22px 22px;
  overflow: hidden;
  border: 1.5px solid rgba(195, 137, 40, 0.75);
  border-radius: 10px;
  background: linear-gradient(180deg, #0b241c 0%, #143d30 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.about-leadership-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}

.about-leadership-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}

.about-leadership-label {
  margin: 0 0 8px;
  color: #d8a44b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-leadership-quote {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 72px;
  height: 60px;
  color: #d8a44b;
  opacity: 0.16;
  pointer-events: none;
}

.about-leadership-quote svg {
  width: 100%;
  height: 100%;
}

.about-leadership-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.14;
}

.about-leadership-line {
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 18px;
  background: #c38928;
}

.about-leadership-body p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.78;
}

.about-leadership-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(195, 137, 40, 0.26);
}

.about-leadership-signature {
  margin: 0 0 4px !important;
  color: #d8a44b !important;
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-size: clamp(26px, 2.4vw, 32px) !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
}

.about-leadership-role {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Manager */
.about-manager-section {
  position: relative;
  padding: 0 24px 88px;
  background: linear-gradient(180deg, #eef1f5 0%, var(--about-bg-c) 100%);
}

.about-manager-shell {
  max-width: var(--about-max);
  margin: 0 auto;
}

.about-manager-card {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  border: 1.5px solid rgba(195, 137, 40, 0.72);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 18%, rgba(195, 137, 40, 0.16) 0%, transparent 24%),
    radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 30%),
    linear-gradient(135deg, #073528 0%, #064431 48%, #03291f 100%);
  box-shadow: 0 18px 46px rgba(7, 53, 40, 0.24);
}

.about-manager-photo {
  margin: 22px 0 22px 22px;
  overflow: hidden;
  border: 1.5px solid rgba(195, 137, 40, 0.75);
  border-radius: 10px;
  background: linear-gradient(180deg, #0b241c 0%, #143d30 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.about-manager-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 8%;
}

.about-manager-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}

.about-manager-copy .about-leadership-label {
  color: #d8a44b;
}

.about-manager-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 800;
  line-height: 1.16;
}

.about-manager-name {
  margin: 0 0 4px;
  color: #d8a44b;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
}

.about-manager-role {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.about-manager-copy .about-leadership-line {
  background: #c38928;
}

.about-manager-copy .about-leadership-body p {
  color: rgba(255, 255, 255, 0.86);
}

.about-manager-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-manager-highlights span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(195, 137, 40, 0.16);
  border: 1px solid rgba(195, 137, 40, 0.42);
  font-size: 12px;
  font-weight: 700;
}

/* — Values — */
.about-values-section {
  position: relative;
  padding: 88px 24px 96px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(195, 137, 40, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--about-bg-c) 0%, #f5f2ec 100%);
  overflow: hidden;
}

.about-values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 137, 40, 0.22), transparent);
  pointer-events: none;
}

.about-values-section::after {
  display: none;
}

.about-values-shell {
  position: relative;
  z-index: 1;
  max-width: var(--about-max);
  margin: 0 auto;
}

.about-values-header {
  text-align: center;
  margin-bottom: 52px;
}

.about-values-header .about-intro-label {
  margin-bottom: 10px;
}

.about-values-header h2 {
  margin: 0 0 18px;
  color: var(--about-navy);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.14;
}

.about-values-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-values-divider span {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--about-gold), transparent);
}

.about-values-divider i {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--about-gold);
  box-shadow: 0 0 0 3px rgba(195, 137, 40, 0.1);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 14px;
}

.about-value-card {
  position: relative;
  text-align: center;
  padding: 30px 14px 26px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid rgba(195, 137, 40, 0.22);
  box-shadow: 0 6px 22px rgba(26, 47, 74, 0.05);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
  animation: aboutValueIn 0.65s ease backwards;
}

.about-value-card:nth-child(1) {
  border-color: rgba(195, 137, 40, 0.38);
}

.about-value-card:nth-child(2) {
  border-color: rgba(26, 47, 74, 0.22);
}

.about-value-card:nth-child(3) {
  border-color: rgba(15, 92, 66, 0.28);
}

.about-value-card:nth-child(4) {
  border-color: rgba(212, 120, 42, 0.32);
}

.about-value-card:nth-child(5) {
  border-color: rgba(139, 58, 90, 0.28);
}

.about-value-card:nth-child(6) {
  border-color: rgba(45, 122, 79, 0.3);
}

.about-value-card:nth-child(1) { animation-delay: 0.05s; }
.about-value-card:nth-child(2) { animation-delay: 0.12s; }
.about-value-card:nth-child(3) { animation-delay: 0.19s; }
.about-value-card:nth-child(4) { animation-delay: 0.26s; }
.about-value-card:nth-child(5) { animation-delay: 0.33s; }
.about-value-card:nth-child(6) { animation-delay: 0.4s; }

@keyframes aboutValueIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--about-gold), var(--about-navy));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.about-value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(195, 137, 40, 0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about-value-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 48px rgba(26, 47, 74, 0.08),
    0 0 0 1px rgba(195, 137, 40, 0.06);
}

.about-value-card:nth-child(1):hover { border-color: #c38928; }
.about-value-card:nth-child(2):hover { border-color: #1a2f4a; }
.about-value-card:nth-child(3):hover { border-color: #0f5c42; }
.about-value-card:nth-child(4):hover { border-color: #d4782a; }
.about-value-card:nth-child(5):hover { border-color: #8b3a5a; }
.about-value-card:nth-child(6):hover { border-color: #2d7a4f; }

.about-value-card:hover::before {
  transform: scaleX(1);
}

.about-value-card:hover::after {
  opacity: 1;
}

.about-value-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border: 2px solid var(--about-gold);
  border-radius: 50%;
  color: var(--about-gold);
  background: rgba(195, 137, 40, 0.1);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-value-card:nth-child(1) .about-value-icon {
  border-color: #c38928;
  color: #c38928;
  background: rgba(195, 137, 40, 0.12);
}

.about-value-card:nth-child(2) .about-value-icon {
  border-color: #1a2f4a;
  color: #1a2f4a;
  background: rgba(26, 47, 74, 0.08);
}

.about-value-card:nth-child(3) .about-value-icon {
  border-color: #0f5c42;
  color: #0f5c42;
  background: rgba(15, 92, 66, 0.1);
}

.about-value-card:nth-child(4) .about-value-icon {
  border-color: #d4782a;
  color: #d4782a;
  background: rgba(212, 120, 42, 0.1);
}

.about-value-card:nth-child(5) .about-value-icon {
  border-color: #8b3a5a;
  color: #8b3a5a;
  background: rgba(139, 58, 90, 0.1);
}

.about-value-card:nth-child(6) .about-value-icon {
  border-color: #2d7a4f;
  color: #2d7a4f;
  background: rgba(45, 122, 79, 0.1);
}

.about-value-card:nth-child(1):hover .about-value-icon {
  color: #fff;
  border-color: #c38928;
  background: linear-gradient(145deg, #d4a24e, #c38928);
  box-shadow: 0 10px 24px rgba(195, 137, 40, 0.32);
}

.about-value-card:nth-child(2):hover .about-value-icon {
  color: #fff;
  border-color: #1a2f4a;
  background: linear-gradient(145deg, #2a4568, #1a2f4a);
  box-shadow: 0 10px 24px rgba(26, 47, 74, 0.28);
}

.about-value-card:nth-child(3):hover .about-value-icon {
  color: #fff;
  border-color: #0f5c42;
  background: linear-gradient(145deg, #1a7a58, #0f5c42);
  box-shadow: 0 10px 24px rgba(15, 92, 66, 0.28);
}

.about-value-card:nth-child(4):hover .about-value-icon {
  color: #fff;
  border-color: #d4782a;
  background: linear-gradient(145deg, #e89240, #d4782a);
  box-shadow: 0 10px 24px rgba(212, 120, 42, 0.3);
}

.about-value-card:nth-child(5):hover .about-value-icon {
  color: #fff;
  border-color: #8b3a5a;
  background: linear-gradient(145deg, #a84d72, #8b3a5a);
  box-shadow: 0 10px 24px rgba(139, 58, 90, 0.28);
}

.about-value-card:nth-child(6):hover .about-value-icon {
  color: #fff;
  border-color: #2d7a4f;
  background: linear-gradient(145deg, #3d9a66, #2d7a4f);
  box-shadow: 0 10px 24px rgba(45, 122, 79, 0.28);
}

.about-value-card:nth-child(1)::before { background: linear-gradient(90deg, #c38928, #d4a24e); }
.about-value-card:nth-child(2)::before { background: linear-gradient(90deg, #1a2f4a, #3a5a80); }
.about-value-card:nth-child(3)::before { background: linear-gradient(90deg, #0f5c42, #1a7a58); }
.about-value-card:nth-child(4)::before { background: linear-gradient(90deg, #d4782a, #e89240); }
.about-value-card:nth-child(5)::before { background: linear-gradient(90deg, #8b3a5a, #a84d72); }
.about-value-card:nth-child(6)::before { background: linear-gradient(90deg, #2d7a4f, #3d9a66); }

.about-value-card:hover .about-value-icon {
  transform: scale(1.12) translateY(-2px);
}

.about-value-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.about-value-card:hover .about-value-icon svg {
  transform: scale(1.05);
}

.about-value-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--about-navy);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.about-value-card:hover h3 {
  color: var(--about-gold);
}

.about-value-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--about-text);
  font-size: 12.5px;
  line-height: 1.58;
  transition: color 0.3s ease;
}

.about-value-card:hover p {
  color: #3d4a56;
}

/* — Mission & Vision — */
.about-mv-section {
  position: relative;
  padding: 88px 24px 100px;
  background:
    radial-gradient(ellipse 75% 55% at 12% 25%, rgba(195, 137, 40, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 65% 50% at 88% 70%, rgba(15, 92, 66, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.7) 0%, transparent 70%),
    linear-gradient(155deg, #dce9e3 0%, #e8f2ed 35%, #f0f5f2 65%, #f7f4ef 100%);
  overflow: hidden;
}

.about-mv-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--about-green-deep), var(--about-gold), var(--about-green-deep));
  opacity: 0.55;
  pointer-events: none;
}

.about-mv-section::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 95vw);
  height: min(720px, 95vw);
  border: 1px solid rgba(15, 92, 66, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.about-mv-shell {
  position: relative;
  z-index: 1;
  max-width: var(--about-max);
  margin: 0 auto;
}

.about-mv-shell::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(195, 137, 40, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.about-mv-header {
  text-align: center;
  margin-bottom: 44px;
}

.about-mv-header .about-intro-label {
  color: var(--about-gold);
}

.about-mv-header h2 {
  margin: 0 0 14px;
  color: var(--about-navy);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
}

.about-mv-header h2 .about-amp {
  font-family: Inter, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.about-mv-header .about-values-divider span {
  background: linear-gradient(90deg, transparent, var(--about-gold), transparent);
}

.about-mv-header .about-values-divider i {
  background: var(--about-gold);
  box-shadow: 0 0 0 3px rgba(195, 137, 40, 0.12);
}

.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-mv-card {
  display: grid;
  grid-template-columns: 40% 60%;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(26, 47, 74, 0.08);
  border: 1px solid rgba(26, 47, 74, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(26, 47, 74, 0.12);
}

.about-mv-photo {
  margin: 0;
  overflow: hidden;
}

.about-mv-photo img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.about-mv-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 26px 32px;
  color: #fff;
  background: linear-gradient(160deg, var(--about-green-deep) 0%, var(--about-green) 100%);
}

.about-mv-panel h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.about-mv-badge {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #e8c56d;
  flex-shrink: 0;
}

.about-mv-badge svg {
  width: 20px;
  height: 20px;
}

.about-mv-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  line-height: 1.72;
  padding-right: 40px;
}

.about-mv-emblem {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 197, 109, 0.5);
  border-radius: 50%;
  color: #e8c56d;
}

.about-mv-emblem svg {
  width: 22px;
  height: 22px;
}

/* — Global Reach — */
.about-global-section {
  padding: 80px 24px 88px;
  background: linear-gradient(180deg, #fafaf8 0%, #f5f3ef 100%);
}

.about-global-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.about-global-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 1.05fr);
  gap: 40px 48px;
  align-items: center;
}

.about-global-copy .about-intro-label {
  margin-bottom: 12px;
}

.about-global-copy h2 {
  margin: 0 0 16px;
  color: var(--about-green-deep);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 800;
  line-height: 1.16;
}

.about-global-intro {
  margin: 0 0 28px;
  color: var(--about-text);
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 520px;
}

.about-global-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-global-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px 18px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid rgba(15, 92, 66, 0.15);
  box-shadow: 0 6px 20px rgba(26, 47, 74, 0.05);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.about-global-stat--gold { border-color: rgba(195, 137, 40, 0.38); }
.about-global-stat--navy { border-color: rgba(26, 47, 74, 0.22); }
.about-global-stat--green { border-color: rgba(15, 92, 66, 0.32); }
.about-global-stat--orange { border-color: rgba(212, 120, 42, 0.35); }

.about-global-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(26, 47, 74, 0.1);
}

.about-global-stat--gold:hover { border-color: #c38928; }
.about-global-stat--navy:hover { border-color: #1a2f4a; }
.about-global-stat--green:hover { border-color: #0f5c42; }
.about-global-stat--orange:hover { border-color: #d4782a; }

.about-global-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  transition: background 0.3s ease, color 0.3s ease;
}

.about-global-stat--gold .about-global-stat-icon { color: #c38928; background: rgba(195, 137, 40, 0.1); }
.about-global-stat--navy .about-global-stat-icon { color: #1a2f4a; background: rgba(26, 47, 74, 0.08); }
.about-global-stat--green .about-global-stat-icon { color: #0f5c42; background: rgba(15, 92, 66, 0.1); }
.about-global-stat--orange .about-global-stat-icon { color: #d4782a; background: rgba(212, 120, 42, 0.1); }

.about-global-stat--gold:hover .about-global-stat-icon { color: #fff; background: #c38928; }
.about-global-stat--navy:hover .about-global-stat-icon { color: #fff; background: #1a2f4a; }
.about-global-stat--green:hover .about-global-stat-icon { color: #fff; background: #0f5c42; }
.about-global-stat--orange:hover .about-global-stat-icon { color: #fff; background: #d4782a; }

.about-global-stat-icon svg {
  width: 22px;
  height: 22px;
}

.about-global-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--about-green-deep);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.about-global-stat span:last-child {
  color: var(--about-text);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
}

.about-global-map {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 47, 74, 0.08);
  border: 1px solid rgba(15, 92, 66, 0.1);
}

.about-global-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f5f3ef;
}

/* — About Page Responsive — */
@media (max-width: 1100px) {
  .about-intro-section::after {
    right: -40px;
    width: 280px;
    height: 280px;
    opacity: 0.5;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 680px;
    margin: 0 auto;
  }

  .about-intro-copy {
    padding-left: 20px;
  }

  .about-company-card {
    grid-template-columns: 40% 60%;
  }

  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
  }

  .about-value-card:hover {
    transform: translateY(-6px);
  }

  .about-global-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 680px;
    margin: 0 auto;
  }

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

@media (max-width: 1024px) {
  .about-leadership-card {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .about-manager-card {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .about-leadership-photo img {
    min-height: 280px;
    max-height: 300px;
  }

  .about-manager-photo img {
    min-height: 280px;
    max-height: 300px;
  }

  .about-mv-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  body.about-page-body .about-hero {
    min-height: 315px;
  }

  .about-intro-section,
  .about-leadership-section,
  .about-manager-section,
  .about-values-section,
  .about-mv-section,
  .about-global-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-manager-section {
    padding-bottom: 72px;
  }

  .about-manager-card {
    padding: 0;
  }

  .about-leadership-photo {
    margin: 18px 18px 0;
  }

  .about-manager-photo {
    margin: 18px 18px 0;
  }

  .about-manager-highlights {
    justify-content: center;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-value-card {
    padding: 24px 12px 22px;
  }

  .about-value-card:hover {
    transform: translateY(-5px);
  }

  .about-mv-card {
    grid-template-columns: 1fr;
  }

  .about-mv-photo img {
    min-height: 180px;
    max-height: 200px;
  }

  .about-company-card {
    grid-template-columns: 1fr;
  }

  .about-company-card-photo {
    min-height: 200px;
  }

  .about-company-card-photo img {
    min-height: 200px;
    max-height: 220px;
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .about-global-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-global-stat {
    padding: 16px 8px 14px;
  }

  .about-global-stat strong {
    font-size: 18px;
  }
}

.top-social a[aria-label="LinkedIn"],
.footer-socials a[aria-label="LinkedIn"],
.contact-social-links a[aria-label="LinkedIn"] {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
}

.top-social a[aria-label="Instagram"],
.footer-socials a[aria-label="Instagram"],
.contact-social-links a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
  border-color: #dd2a7b;
  color: #fff;
}

.top-social a[aria-label="Facebook"],
.footer-socials a[aria-label="Facebook"],
.contact-social-links a[aria-label="Facebook"] {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.top-social a[aria-label="LinkedIn"]:hover,
.footer-socials a[aria-label="LinkedIn"]:hover,
.contact-social-links a[aria-label="LinkedIn"]:hover {
  background: #004182;
  border-color: #004182;
  color: #fff;
}

.top-social a[aria-label="Instagram"]:hover,
.footer-socials a[aria-label="Instagram"]:hover,
.contact-social-links a[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 56%, #962fbf 78%, #4f5bd5 100%);
  border-color: #d62976;
  color: #fff;
}

.top-social a[aria-label="Facebook"]:hover,
.footer-socials a[aria-label="Facebook"]:hover,
.contact-social-links a[aria-label="Facebook"]:hover {
  background: #0f5dc8;
  border-color: #0f5dc8;
  color: #fff;
}
