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

body {
  font-family: "Montserrat", Sans-serif;
  color: #333;
  background: #fff;
  overflow-x: auto;
  background-image: url(../images/bg-image.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Removed global inherit to prevent breaking icon fonts */


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

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

ul {
  list-style: none;
}

/* === VARIABLES === */
:root {
  --green: #223D2A;
  --green-mid: #14301C;
  --primary: #66615b;
  --text: #333333;
  --grey: #9A9A9A;
  --white: #ffffff;
  --font: 'Montserrat', sans-serif;
}

/* ====================== */
/* ===  HEADER         === */
/* ====================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background .3s, box-shadow .3s;
}

.hdr-top {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.hdr-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hdr-top-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, .88);
}

.hdr-top-phone img {
  width: 13px;
  height: 13px;
  opacity: .8;
  flex-shrink: 0;
}

.hdr-top-tagline {
  font-size: 12.5px;
  font-style: italic;
  color: rgba(255, 255, 255, .7);
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.hdr-main {
  background: transparent;
}

.header-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-link img {
  height: 52px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav>ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav>ul>li {
  position: relative;
  list-style: none;
}

.main-nav>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 85px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  transition: color .2s;
  white-space: nowrap;
  cursor: pointer;
}

.main-nav>ul>li>a::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: transparent;
  transition: background .2s;
}

.main-nav>ul>li>a .arr {
  font-size: 10px;
  opacity: .8;
  margin-top: 2px;
}

.main-nav>ul>li.nav-active>a::before,
.main-nav>ul>li>a:hover::before {
  background: #fff;
}

header.is-solid {
  background: var(--green);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

header.is-solid .hdr-top {
  border-bottom-color: rgba(255, 255, 255, .15);
  display: none;
}

header.is-solid .hdr-top-phone {
  color: #fff;
}

header.is-solid .hdr-top-tagline {
  color: #fff;
  border-left-color: rgba(255, 255, 255, .2);
}

header.is-solid .main-nav>ul>li>a {
  color: #fff;
}

header.is-solid .main-nav>ul>li.nav-active>a::before,
header.is-solid .main-nav>ul>li>a:hover::before {
  background: #fff;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 215px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.main-nav>ul>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  position: relative;
  list-style: none;
}

.sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--primary);
  border-bottom: 1px solid #f0f0ee;
  transition: color .2s, background .2s;
}

.sub-menu li a:hover {
  color: var(--green);
  background: #f6f6f4;
}

.sub-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 210px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .13);
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
  transition: opacity .2s, visibility .2s;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.sub-menu li:hover>.sub-sub-menu {
  opacity: 1;
  visibility: visible;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

/* === PAGE SHELL === */
.page-wrapper {
  padding-top: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--green);
  border: 2px solid var(--green);
  color: #fff;
  border-radius: 30px;
  transition: all .22s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.btn-outline-white {
  display: inline-block;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  transition: all .22s;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--green);
}

.btn-green-touch {
  display: inline-block;
  padding: 13px 36px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: var(--green);
  border: 2px solid var(--green);
  color: #fff;
  border-radius: 30px;
  transition: all .22s;
}

.btn-green-touch:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff;
  border-radius: 3px;
  transition: all .2s;
}

.btn-show-more:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}

/* ====================== */
/* ====  HOMEPAGE      === */
/* ====================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('https://hanfimex.com/wp-content/uploads/2020/09/wallpaperflare.com_wallpaper-2.jpg');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: transparent;
  min-height: 100vh;
}

.hero-video-wrap {
  width: 100%;
  max-width: 560px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
}

.hero-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 60px 60px 40px;
  min-height: 100vh;
}

.hero-text-box {
  text-align: center;
  color: #fff;
  max-width: 480px;
}

.hero-text-box h2 {
  font-size: 50.4px;
  font-weight: 300;
  line-height: 1.2em;
  margin-bottom: 4px;
  color: #fff;
}

.hero-text-box p {
  font-size: 18.9px;
  font-weight: 300;
  line-height: 1.5em;
  color: rgba(255, 255, 255, .9);
  margin: 17px 0 28px;
}

.concept-section {
  background: #fff;
  padding: 60px 0 0;
}

.concept-title-wrap {
  text-align: center;
  padding: 0 20px 40px;
}

.concept-title-wrap h2 {
  font-size: 39.2px;
  font-weight: 300;
  color: #333333;
  line-height: 1.2em;
  margin-bottom: 4px;
}

.concept-title-wrap p {
  font-size: 18.9px;
  font-weight: 300;
  color: #9A9A9A;
  line-height: 1.4em;
  max-width: 720px;
  margin: 0 auto;
}

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

.concept-card {
  position: relative;
  min-height: 357px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.concept-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  transition: background .3s;
}

.concept-card:hover::before {
  background: rgba(0, 0, 0, 0.38);
}

.concept-card-inner {
  position: relative;
  z-index: 2;
  padding: 30px 24px;
  color: #fff;
}

.concept-card-inner h3 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.icon-ring {
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: border-color .2s;
}

.concept-card:hover .icon-ring {
  border-color: #fff;
}

.icon-ring i,
.icon-ring svg {
  font-size: 26px;
  color: #fff;
  fill: #fff;
  width: 26px;
  height: 26px;
}

.why-section {
  position: relative;
  padding: 80px 0;
  background-image: url('https://hanfimex.com/wp-content/uploads/2020/09/the-how-photographer.jpg');
  background-size: cover;
  background-position: center center;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
}

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

.why-title {
  text-align: center;
  color: #fff;
  font-size: 33.6px;
  font-weight: 300;
  line-height: 1.3em;
  margin-bottom: 50px;
}

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

.why-card {
  padding: 48px 44px;
  min-height: 281px;
  text-align: center;
  color: #fff;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.35);
  transition: background .2s;
}

.why-card:nth-child(1) {
  border-width: 0 1px 1px 0;
}

.why-card:nth-child(2) {
  border-width: 0 0 1px 0;
}

.why-card:nth-child(3) {
  border-width: 0 1px 0 0;
}

.why-card:nth-child(4) {
  border-width: 0;
}

.why-card:hover {
  background: rgba(255, 255, 255, .06);
}

.why-card i {
  font-size: 47.5px;
  color: #fff;
  padding-top: 25px;
  display: block;
}

.why-card h3 {
  font-size: 22.4px;
  font-weight: 300;
  color: #fff;
  padding: 30px 0 0;
  margin-bottom: 12px;
  line-height: 1.2em;
}

.why-card p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5em;
}

.products-home-section {
  padding: 70px 0 0;
  background: #fff;
}

.products-head {
  text-align: center;
  padding: 0 20px 10px;
}

.products-head h2 {
  font-size: 39.2px;
  font-weight: 300;
  color: #333;
  margin-bottom: 4px;
}

.products-quote {
  font-size: 18.9px;
  font-weight: 300;
  color: #9A9A9A;
  line-height: 1.4em;
  max-width: 700px;
  margin: 12px auto 40px;
  font-style: italic;
}

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

.prod-card {
  position: relative;
  min-height: 462px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}


.prod-card:hover::before {
  background: rgba(70, 70, 70, 0.92);
}

.prod-card-inner {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.50);
  margin: 40px 50px;
  padding: 28px 20px;
  width: calc(100% - 100px);
  text-align: center;
  color: #fff;
  transition: border-color 0.3s;
}

.prod-card:hover .prod-card-inner {
  border-color: #B7AE73;
}

.prod-card-inner i {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
  color: #fff;
}

.prod-card-inner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.prod-card-inner p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .75);
}

.cert-bar {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.cert-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 20px;
}

.cert-row img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: .85;
  transition: all .2s;
}

.cert-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.work-section {
  position: relative;
  padding: 80px 0 70px;
  background-image: url('https://hanfimex.com/wp-content/uploads/2020/10/kristaps-ungurs-L2WP0v1kSsM-unsplash-scaled.jpg');
  background-size: cover;
  background-position: bottom center;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
}

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

.work-title-wrap {
  color: #fff;
  margin-bottom: 20px;
}

.work-title-wrap h2 {
  font-size: 39.2px;
  font-weight: 300;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.2em;
}

.work-title-wrap p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  max-width: 700px;
}

.work-steps {
  margin: 30px 0 36px;
}

.work-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

.work-step:last-child {
  border-bottom: none;
}

.work-step img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .9;
}

.work-step-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.work-step-text h4 a {
  color: rgba(255, 255, 255, .9);
}

.work-step-text p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}

/* ====================== */
/* === INNER PAGE HERO === */
/* ====================== */
.inner-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.10);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}

.inner-hero-content h1 {
  font-size: 65px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2em;
  margin-bottom: 16px;
}

.inner-hero-line {
  width: 15%;
  height: 2.2px;
  background: #fff;
  margin: 0 auto;
}

/* Darker overlay variant for product/other pages */
.inner-hero.dark-overlay .inner-hero-overlay {
  background: rgba(0, 0, 0, 0.25);
}

/* ============================ */
/* === SUSTAINABILITY PAGE  === */
/* ============================ */

/* Section Titles */
.sus-section-title {
  font-size: 39.2px;
  font-weight: 300;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.sus-section-title::before {
  content: '';
  display: block;
  width: 12px;
  height: 4px;
  background: var(--green);
}

/* Timeline */
.sus-timeline-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.sus-timeline {
  position: relative;
  padding-left: 100px;
  /* Space for the year */
}

.sus-timeline::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 30px;
  left: 100px;
  width: 1px;
  background: #ccc;
}

.sus-tl-item {
  position: relative;
  padding-bottom: 50px;
  padding-left: 30px;
  /* Space from dot to text */
}

.sus-tl-item:last-child {
  padding-bottom: 0;
}

.sus-tl-year {
  position: absolute;
  left: -80px;
  top: -2px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.sus-tl-dot {
  position: absolute;
  left: -5px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}

.sus-tl-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}

.sus-tl-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Vision & Value Cards */
.vision-title {
  font-size: 39.2px;
  font-weight: 300;
  color: #333;
  margin-bottom: 50px;
}

.sus-cards-wrap {
  background: #fff;
  padding: 0 20px 100px;
}

.sus-card {
  display: flex;
  gap: 70px;
  margin-bottom: 80px;
  align-items: center;
}

.sus-card.rev {
  flex-direction: row-reverse;
}

.sus-card-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.sus-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sus-card-content {
  flex: 1;
  padding: 0;
}

.sus-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.sus-tag.blue {
  color: #00AEEF;
}

.sus-tag.red {
  color: #ED1C24;
}

.sus-tag.green {
  color: #00D287;
}

.sus-card-title {
  font-size: 30px;
  font-weight: 300;
  color: #333;
  margin: 0 0 20px 0;
}

.sus-card-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 15px;
}

.sus-card-author {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.sus-card-author strong {
  color: #333;
  font-weight: 600;
}

.sus-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.sus-card-list li {
  font-size: 15px;
  color: #888;
  margin-bottom: 5px;
}

.sus-card-list li strong {
  color: #F7B84B;
  display: inline-block;
  width: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .vision-title {
    font-size: 28px;
  }

  .sus-card,
  .sus-card.rev {
    flex-direction: column;
    gap: 30px;
  }

  .sus-card-img,
  .sus-card-content {
    width: 100%;
  }

  .sus-timeline {
    padding-left: 60px;
  }

  .sus-timeline::before {
    left: 60px;
  }

  .sus-tl-year {
    left: -60px;
    font-size: 14px;
  }

  .sus-tl-item {
    padding-left: 20px;
  }
}

.inner-hero.dark-overlay .inner-hero-content h1 {
  font-size: 55px;
  font-weight: 700;
}

/* ====================== */
/* === QUOTE SECTION   === */
/* ====================== */
.quote-section {
  padding: 90px 20px;
  background-color: #fff;
  background-image: url('https://hanfimex.com/wp-content/uploads/2020/09/Loop_bg_all_cdz.jpg');
  background-position: left top;
  background-repeat: repeat;
  background-size: auto;
  text-align: center;
}

.quote-inner {
  max-width: 700px;
  margin: 0 auto;
}

.quote-text {
  font-family: "Coming Soon", cursive, sans-serif;
  font-size: 28px;
  font-style: italic;
  color: #464646;
  line-height: 1.3em;
  margin-bottom: 20px;
}

.quote-attr {
  font-size: 14px;
  color: #9A9A9A;
  font-weight: 400;
  text-align: right;
}

/* ====================== */
/* === ORG CHART       === */
/* ====================== */
.org-section {
  padding: 20px 0 50px;
  background: #fff;
}

.org-title {
  text-align: center;
  font-size: 39.2px;
  font-weight: 300;
  color: #333;
  margin: 25px 0 30px;
  line-height: 1.2em;
}

.org-carousel-wrap {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}

.org-slides {
  position: relative;
}

.org-slide {
  display: none;
}

.org-slide.active {
  display: block;
}

.org-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.org-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #51BCDA;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
  padding: 10px 14px;
  line-height: 1;
}

.org-btn-prev {
  left: 0;
}

.org-btn-next {
  right: 0;
}

.org-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.org-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background .2s;
  border: none;
}

.org-dot.active {
  background: #51BCDA;
}

/* ====================== */
/* === STRUCTURE POST  === */
/* ====================== */
.structure-post-section {
  padding: 50px 20px 100px;
  text-align: center;
}

.structure-post-inner {
  max-width: 950px;
  margin: 0 auto;
}

.structure-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #51BCDA;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.structure-post-inner h2 {
  font-size: 25.55px;
  font-weight: 300;
  color: #444;
  line-height: 1.4em;
  margin-bottom: 18px;
}

.structure-post-inner p {
  font-size: 15px;
  font-weight: 300;
  color: #9A9A9A;
  line-height: 1.5em;
  margin-bottom: 14px;
}

.structure-author {
  font-size: 15px;
  font-weight: 300;
  color: #333;
}

/* ====================== */
/* === INNER CONTENT   === */
/* ====================== */
.inner-content {
  padding: 60px 0;
}

.inner-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 18px;
  line-height: 1.4;
}

.inner-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-mid);
  margin: 26px 0 10px;
}

.inner-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
}

.inner-content ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}

.inner-content ul li {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 7px;
}

.hl {
  background: var(--green);
  color: #fff;
  padding: 32px 40px;
  margin: 32px 0;
}

.hl h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 10px;
}

.hl p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 36px 0;
}

.info-card {
  background: #f8f8f5;
  padding: 28px;
  border-top: 3px solid var(--green);
}

.info-card i {
  font-size: 26px;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

.info-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 8px;
}

.info-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 36px 0;
}

.two-col img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.two-col.rev {
  direction: rtl;
}

.two-col.rev>* {
  direction: ltr;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px 0;
}

.stat-box {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid #eee;
}

.stat-box h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
}

.plg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.plc {
  border: 1px solid #eee;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s;
}

.plc:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
}

.plc-img {
  height: 230px;
  overflow: hidden;
}

.plc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

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

.plc-body {
  padding: 20px;
}

.plc-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 9px;
}

.plc-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.plc-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.75;
}

.prod-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(34, 61, 42, .65);
}

.prod-hero-c {
  position: relative;
  color: #fff;
}

.prod-hero-c h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 8px;
}

.prod-hero-c p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .75);
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px 0;
}

.spec-item {
  padding: 24px 18px;
  border: 1px solid #eee;
  text-align: center;
}

.spec-item h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 7px;
}

.spec-item p {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.news-page-wrap {
  background: #EFEFEF; /* Light grey top part if needed, or beige */
  padding-bottom: 100px;
}

.news-header-sec {
  background: #F4F4F4; /* Top section background from screenshot */
  padding: 80px 20px;
  text-align: left;
}

.news-header-sec .container {
  max-width: 1200px;
  margin: 0 auto;
}

.news-header-sec h1 {
  font-size: 42px;
  font-weight: 300;
  color: #333;
  margin: 0;
  text-transform: none;
}

.news-main-sec {
  background: #F2EFE8; /* Beige pattern-like background from screenshot */
  padding: 60px 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.nc {
  background: #F2EFE8; /* Same as background or slightly different */
  overflow: hidden;
  transition: transform .3s;
  display: flex;
  flex-direction: column;
}

.nc:hover {
  transform: translateY(-5px);
}

.nc-img {
  height: 250px;
  overflow: hidden;
}

.nc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

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

.nc-body {
  padding: 25px 20px 20px 0; /* Padding left 0 to match screenshot */
}

.nc-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: #126b2b; /* Green title from screenshot */
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s;
}

.nc-body h3:hover {
  color: #F7B84B;
}

.nc-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nc-date i {
  color: #666;
}

.nc-body p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Pagination if needed */
.news-pagination {
  text-align: center;
  margin-top: 60px;
}

.news-pagination a {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 5px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.news-pagination a.active {
  background: #126b2b;
  color: #fff;
  border-color: #126b2b;
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-header-sec h1 {
    font-size: 32px;
  }
}

.cg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.ci-item i {
  font-size: 17px;
  color: var(--green);
  margin-top: 2px;
  width: 20px;
  flex-shrink: 0;
}

.ci-item h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: #333;
}

.ci-item p,
.ci-item a {
  font-size: 13.5px;
  color: #777;
  line-height: 1.7;
}

.cf input,
.cf textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-family: var(--font);
  font-size: 13.5px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s;
}

.cf input:focus,
.cf textarea:focus {
  border-color: var(--green);
}

.cf textarea {
  height: 130px;
  resize: vertical;
}

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

.btn-cf {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 13px 34px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background .2s;
}

.btn-cf:hover {
  background: var(--green-mid);
}

/* ====================== */
/* ===  FOOTER         === */
/* ====================== */
.site-footer {
  background: #223D2A;
  color: rgba(255, 255, 255, .8);
  display: block;
  width: 100%;
  min-width: 1200px;
}

.ft-top {
  padding: 62px 0 46px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 2fr 1fr;
  gap: 40px;
}

.ft-logo img {
  height: 54px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.ft-logo p {
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

.ft-col h4 {
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.ft-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-col ul li {
  margin-bottom: 9px;
}

.ft-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.ft-col ul li a:hover {
  color: #fff;
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 13px;
}

.ft-contact-item i {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  margin-top: 3px;
  width: 15px;
  flex-shrink: 0;
}

.ft-contact-item p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin: 0;
}

.ft-contact-item p strong {
  color: rgba(255, 255, 255, .85);
}

.ft-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ft-social a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.ft-social a:hover {
  background: rgba(255, 255, 255, .22);
}

.ft-social a i {
  color: #fff;
  font-size: 15px;
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 0;
}

.ft-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-bottom-inner p {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  margin: 0;
}

.ft-bottom-inner .ft-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  margin-left: 16px;
  transition: color .2s;
}

.ft-bottom-inner .ft-links a:hover {
  color: #fff;
}

/* ====================== */
/* === FARM PAGE       === */
/* ====================== */
.farm-wrap {
  padding: 0 0 100px;
  background: #fff;
}

/* title above cards */
.farm-section-title {
  text-align: center;
  font-size: 39.2px;
  font-weight: 300;
  color: #333;
  margin: 40px 0 30px;
  line-height: 1.2em;
}

/* body paragraph text between/around cards */
.farm-para {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 30px;
  font-size: 19.2px;
  font-weight: 300;
  color: #66615B;
  line-height: 1.4em;
  text-align: center;
}

.farm-para.justify {
  text-align: justify;
}

/* ── IMAGE CARD (rounded, centred) ─────────────────────── */
.farm-card-wrap {
  max-width: 1120px;
  margin: 0 auto 10px;
  padding: 0 30px;
}

.farm-card {
  position: relative;
  max-width: 1120px;
  min-height: 480px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.farm-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .20);
  border-radius: 12px;
}

/* ── QUOTE INSIDE CARD (top area) ───────────────────────── */
.farm-card-quote {
  position: relative;
  z-index: 2;
  padding: 44px 48px 0;
  max-width: 900px;
  margin: 0 auto;
}

.farm-card-quote p.quote-body {
  font-family: "Coming Soon", cursive;
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.4em;
  text-align: center;
  margin-bottom: 6px;
}

.farm-card-quote p.quote-by {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: right;
  margin: 0;
  padding-right: 60px;
}

/* ── SINGLE PROCESSBAR (FRESH FARM) ─────────────────────── */
.farm-single-pb {
  position: absolute;
  bottom: 80px;
  right: 25%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.farm-spb-crosshair {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.farm-spb-line {
  position: absolute;
  top: -60px;
  bottom: -60px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-50%);
}

.farm-spb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
}

.farm-spb-text h3 {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.farm-spb-text p {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5em;
  margin: 2px 0 0;
}

/* ── VERTICAL ALTERNATING PROCESSBAR ────────────────────── */
.farm-vpb {
  position: relative;
  z-index: 2;
  padding: 60px 44px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.farm-vpb::before {
  content: '';
  position: absolute;
  top: 80px;
  bottom: 80px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 10%, rgba(255, 255, 255, 0.6) 90%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.farm-vpb-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  min-height: 130px;
}

/* center column: top-line + dot + bottom-line */
.farm-vpb-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.farm-vpb-line {
  display: none;
}

.farm-vpb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform .35s ease;
}

.farm-vpb-dot::before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: -16px;
  left: -16px;
  right: -16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  transition: border-color .35s ease, transform .35s ease;
}

.farm-vpb-item:hover .farm-vpb-dot {
  transform: scale(1.5);
}

.farm-vpb-item:hover .farm-vpb-dot::before {
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(0.8);
}

/* left & right text cells */
.farm-vpb-left {
  padding: 8px 30px 8px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.farm-vpb-right {
  padding: 8px 0 8px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.farm-vpb-text-wrap {
  display: flex;
  flex-direction: column;
}

.farm-vpb-left .farm-vpb-text-wrap {
  align-items: flex-end;
  text-align: right;
}

.farm-vpb-right .farm-vpb-text-wrap {
  align-items: flex-start;
  text-align: left;
}

.farm-vpb-heading {
  display: block;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2em;
  margin-bottom: 4px;
}

.farm-vpb-desc {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4em;
}

/* ── HOVER: subtle text brighten on item hover ─────────── */
.farm-vpb-item {
  transition: opacity .25s ease;
}

.farm-vpb:hover .farm-vpb-item {
  opacity: .65;
}

.farm-vpb:hover .farm-vpb-item:hover {
  opacity: 1;
}

.farm-vpb-item:hover .farm-vpb-heading,
.farm-vpb-item:hover .farm-vpb-desc {
  text-shadow: 0 0 18px rgba(255, 255, 255, .4);
}

.farm-vpb-heading,
.farm-vpb-desc {
  transition: text-shadow .3s ease;
}

/* ── RESPONSIVENESS ────────────────────────────────────── */
@media (max-width: 900px) {
  .farm-card-quote p.quote-body {
    font-size: 22px;
  }

  .farm-single-pb {
    right: 20px;
    bottom: 40px;
  }
}

@media (max-width: 768px) {
  .farm-para {
    padding: 20px 15px;
    font-size: 16px;
  }

  .farm-card-wrap {
    padding: 0 15px;
  }

  .farm-card-quote {
    padding: 30px 20px 0;
  }

  .farm-card-quote p.quote-body {
    font-size: 18px;
  }

  .farm-card-quote p.quote-by {
    font-size: 14px;
    padding-right: 0;
  }

  /* Single PB */
  .farm-single-pb {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    padding: 30px 20px;
    margin-top: 20px;
  }

  /* Vertical Process Bar */
  .farm-vpb {
    padding: 40px 20px;
  }

  .farm-vpb::before {
    left: 35px;
    /* 20px padding + 15px (half of 30px column) */
    transform: none;
  }

  .farm-vpb-item {
    grid-template-columns: 30px 1fr;
    grid-template-areas: "center text";
    min-height: auto;
    margin-bottom: 30px;
  }

  .farm-vpb-item:last-child {
    margin-bottom: 0;
  }

  .farm-vpb-center {
    grid-area: center;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .farm-vpb-left:empty,
  .farm-vpb-right:empty {
    display: none;
  }

  .farm-vpb-left,
  .farm-vpb-right {
    grid-area: text;
    padding: 0 0 0 15px;
    justify-content: flex-start;
  }

  .farm-vpb-left .farm-vpb-text-wrap,
  .farm-vpb-right .farm-vpb-text-wrap {
    align-items: flex-start;
    text-align: left;
  }

  .farm-vpb-heading {
    font-size: 24px;
  }

  .farm-vpb-desc {
    font-size: 14px;
  }
}

/* ====================== */
/* === FACTORY PAGE   === */
/* ====================== */

/* Quote Section */
.factory-quote-sec {
  background: #F8F6F0;
  /* Beige paper color from screenshot */
  padding: 80px 20px;
  text-align: center;
}

.fq-text {
  font-family: "Coming Soon", cursive;
  font-size: 26px;
  color: #333;
  margin: 0 auto 20px;
  max-width: 800px;
  line-height: 1.4;
}

.fq-author {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Factory Cards List */
.factory-list-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.factory-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 60px;
  margin-bottom: 80px;
}

.fc-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-height: 350px;
}

.fc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Image Slider Overlays */
.fc-slides {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fc-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.fc-slide.active {
  opacity: 1;
  z-index: 1;
}

.fc-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
  z-index: 2;
}

.fc-arrows i {
  font-size: 20px;
  cursor: pointer;
  pointer-events: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s;
}

.fc-arrows i:hover {
  opacity: 0.7;
}

.fc-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.fc-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Carousel Themes */
.theme-cashew .fc-dots span {
  background: #F7B84B;
  opacity: 0.4;
}

.theme-cashew .fc-dots span.active {
  opacity: 1;
  transform: scale(1.3);
}

.theme-cashew .fc-arrows i {
  color: #F7B84B;
}

.theme-pepper .fc-dots span {
  background: #42D2D2;
  opacity: 0.4;
}

.theme-pepper .fc-dots span.active {
  opacity: 1;
  transform: scale(1.3);
}

.theme-pepper .fc-arrows i {
  color: #42D2D2;
}

.theme-coffee .fc-dots span {
  background: #F35D46;
  opacity: 0.4;
}

.theme-coffee .fc-dots span.active {
  opacity: 1;
  transform: scale(1.3);
}

.theme-coffee .fc-arrows i {
  color: #F35D46;
}

.theme-spices .fc-dots span {
  background: #F39C46;
  opacity: 0.4;
}

.theme-spices .fc-dots span.active {
  opacity: 1;
  transform: scale(1.3);
}

.theme-spices .fc-arrows i {
  color: #F39C46;
}

/* Card Content */
.fc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fc-text-inner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.fc-title {
  font-size: 32px;
  font-weight: 300;
  color: #333;
  margin: 0 0 15px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.fc-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.fc-loc {
  font-size: 13px;
  color: #333;
  margin-bottom: 25px;
}

/* Dropdown */
.fc-dropdown {
  width: 100%;
  border: 1px solid #555;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: left;
}

.fcd-header {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.fcd-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.fc-dropdown.open .fcd-body {
  max-height: 400px;
  padding: 0 20px 20px;
}

.fcd-body p {
  font-size: 13px;
  color: #555;
  margin: 0 0 10px 0;
}

.fcd-body p:last-child {
  margin: 0;
}

/* Button */
.fc-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 25px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.fc-btn:hover {
  opacity: 0.8;
}

/* Responsive Factory */
@media (max-width: 900px) {
  .factory-card {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .fc-image {
    width: 100%;
    min-height: 300px;
  }

  .fc-content {
    width: 100%;
  }
}

/* ============================ */
/* === ALL PRODUCTS PAGE    === */
/* ============================ */
.quote-section-products {
  background: #F4EFE6;
  padding: 80px 20px;
  text-align: center;
}

.quote-section-products .fq-text {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 26px;
  color: #555;
  margin-bottom: 20px;
}

.quote-section-products .fq-author {
  font-size: 13px;
  color: #777;
  letter-spacing: 0.5px;
}

.products-grid-section {
  padding: 80px 20px 100px;
  background: #fff;
}

.products-grid-title {
  font-size: 44px;
  font-weight: 300;
  color: #333;
  margin-bottom: 70px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 50px;
  max-width: 1150px;
  margin: 0 auto;
}

.prod-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prod-card-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.12);
  margin-bottom: 25px;
}

.prod-card-img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.prod-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.prod-card-title {
  font-size: 34px;
  font-weight: 300;
  color: #333;
  margin-bottom: 15px;
}

.prod-card-desc {
  font-size: 15px;
  color: #999;
  line-height: 1.8;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

.prod-card-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 30px;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.prod-card-btn:hover {
  opacity: 0.8;
}

/* Perfected soft pastel colors */
.tag-cashew {
  color: #FCCC6B;
}

.btn-cashew {
  background: #FCCC6B;
}

.tag-pepper {
  color: #60D4C8;
}

.btn-pepper {
  background: #60D4C8;
}

.tag-cinnamon {
  color: #FFA057;
}

.btn-cinnamon {
  background: #FFA057;
}

.tag-coconut {
  color: #76D792;
}

.btn-coconut {
  background: #76D792;
}

.tag-coffee {
  color: #EF6C57;
}

.btn-coffee {
  background: #EF6C57;
}

.tag-staranise {
  color: #FCCC6B;
}

.btn-staranise {
  background: #FCCC6B;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

/* ============================ */
/* === CASHEW PAGE          === */
/* ============================ */
.cashew-intro-section {
  padding: 80px 20px;
  background: #fdf6f2; /* Light beige/pinkish background from design */
  text-align: center;
}

.cashew-intro-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cashew-intro-inner h2 {
  font-size: 32px;
  font-weight: 300;
  color: #333;
  margin-bottom: 30px;
  text-transform: none;
}

.cashew-intro-inner p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cashew-variants-list {
  padding: 80px 20px;
  background: #fff;
}

.cashew-variant-item {
  display: flex;
  gap: 60px;
  margin-bottom: 100px;
  align-items: flex-start;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.cv-image-side {
  flex: 1;
  max-width: 500px;
}

.cv-content-side {
  flex: 1;
}

.cv-image-side .fc-carousel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  position: relative;
}

.cv-image-side .fc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv-content-side h3 {
  font-size: 36px;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.cv-content-side .cv-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cv-content-side .cv-origin {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

.cv-content-side .fc-dropdown {
  margin-bottom: 25px;
  border-color: #ddd;
}

.cv-content-side .fcd-header {
  font-weight: 400;
  color: #555;
  padding: 10px 15px;
}

.cv-btn {
  display: inline-block;
  background: #F7B84B;
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cv-btn:hover {
  opacity: 0.8;
}

.cashew-bottom-quote {
  padding: 100px 20px;
  background: #1a2e26; /* Dark green footer section */
  color: #fff;
  text-align: center;
}

.cbq-text {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 28px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.cbq-btn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff !important;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.cbq-btn:hover {
  background: #fff;
  color: #1a2e26 !important;
}

@media (max-width: 991px) {
  .cashew-variant-item {
    flex-direction: column;
    gap: 40px;
  }
  .cv-image-side, .cv-content-side {
    max-width: 100%;
  }
}

/* === BUSINESS COLLABORATION PAGE === */
.bc-circles-sec {
  padding: 80px 0;
  position: relative;
  background: #fff;
  overflow: hidden;
}

.bc-circles-sec::before, .bc-circles-sec::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.bc-circles-sec::before {
  left: -50px;
  top: 50px;
  background-image: url('https://hanfimex.com/wp-content/themes/hanfimex/assets/images/leaf-left.png'); /* Placeholder if needed */
}

.bc-circles-sec::after {
  right: -50px;
  bottom: 50px;
  background-image: url('https://hanfimex.com/wp-content/themes/hanfimex/assets/images/leaf-right.png');
}

.bc-circles-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.bc-circle-item {
  width: 250px;
  text-align: center;
}

.bc-circle-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #126B2B;
  margin: 0 auto 20px;
  overflow: hidden;
}

.bc-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-circle-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #126B2B;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bc-circle-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* Letter Section */
.bc-letter-sec {
  position: relative;
  padding: 100px 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.bc-letter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.bc-letter-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bc-letter-content h5 {
  color: #F7B84B;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.bc-letter-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.bc-letter-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.bc-letter-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.bc-letter-list li {
  font-size: 14px;
  opacity: 0.9;
}

/* Certifications */
.bc-certs-sec {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.bc-certs-script {
  font-family: 'Coming Soon', cursive;
  font-size: 32px;
  color: #126B2B;
  margin-bottom: 30px;
}

.bc-certs-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.bc-certs-logos img {
  height: 50px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.3s;
}

.bc-certs-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.bc-certs-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .bc-circles-container {
    flex-direction: column;
    align-items: center;
  }
  .bc-letter-content h2 {
    font-size: 24px;
  }
}

/* === HOW IT WORKS PAGE === */

/* --- HOW TO USE SECTION --- */
.htu-sec {
  background-color: #fcfcfc;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  
  background-size: cover;
}

.htu-container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.htu-container h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #333;
}

.htu-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.htu-jar {
  flex: 0 0 300px;
}
.htu-jar img {
  width: 100%;
}

.htu-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.htu-item {
  text-align: left;
  position: relative;
}

.htu-col.left .htu-item {
  text-align: right;
}

.htu-item p {
  font-size: 15px;
  color: #126B2B;
  font-weight: 600;
  line-height: 1.5;
}

/* --- 6F CONCEPT SECTION --- */
.concept-6f-sec {
  padding: 0 0 60px;
  text-align: center;
  background-color: #fcfcfc;
}

.c6f-ribbon {
  background: linear-gradient(90deg, #1f4f34, #2a6a45, #1f4f34);
  color: #fff;
  display: inline-block;
  padding: 15px 60px;
  margin-bottom: 30px;
  position: relative;
}
/* creating ribbon tails */
.c6f-ribbon::before, .c6f-ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  background: inherit;
  z-index: -1;
}
.c6f-ribbon::before {
  left: -15px;
  transform: skewX(-20deg);
}
.c6f-ribbon::after {
  right: -15px;
  transform: skewX(20deg);
}

.c6f-ribbon h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.c6f-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  font-weight: 500;
}

.c6f-icons-wrap {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.c6f-icon-box {
  text-align: center;
}

.c6f-circle {
  width: 90px;
  height: 90px;
  background: #73a942;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(115,169,66,0.3);
}

.c6f-circle img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
}

.c6f-icon-box h3 {
  font-size: 14px;
  color: #73a942;
  font-weight: 700;
  margin: 0;
}

/* --- MAP SECTION --- */
.hiw-map-sec {
  padding: 60px 0;
  text-align: center;
  background-color: #fcfcfc;
}

.map-sec-title {
  color: #73a942;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.map-sec-desc {
  max-width: 800px;
  margin: 40px auto 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* --- BANNER --- */
.hiw-nuts-banner {
  background-image: url('https://hanfimex.com/wp-content/uploads/2023/02/DSC04107-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
  text-align: center;
  color: #fff;
}

.hiw-nuts-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hiw-nuts-banner .container {
  position: relative;
  z-index: 2;
}

.hiw-nuts-banner p {
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hiw-nuts-banner h2 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
}

/* --- NEW PIXEL PERFECT PRODUCT CATALOG --- */
.hiw-catalog-sec {
  padding: 80px 0;
  background-color: #fdfaf4;
}

.catalog-header {
  text-align: center;
  margin-bottom: 80px;
}
.catalog-header h2 {
  font-size: 32px;
  font-weight: 300;
  color: #333;
}

.hiw-prod-item {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.hiw-prod-img-wrap {
  flex: 0 0 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #F29C38;
  font-size: 24px;
  cursor: pointer;
}
.hiw-car-arrow.left { left: -30px; }
.hiw-car-arrow.right { right: -30px; }

.hiw-car-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hiw-car-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f2e3d5;
  display: block;
}
.hiw-car-dots span.active {
  background-color: #F29C38;
}

.hiw-prod-img-wrap img {
  width: 100%;
  display: block;
}

.hiw-prod-info {
  flex: 1;
}

.hiw-prod-title {
  font-size: 36px;
  font-weight: 300;
  color: #555;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hiw-prod-divider {
  border: none;
  border-bottom: 1px solid #eee;
  margin: 0 0 20px 0;
}

.hiw-prod-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hiw-prod-origin {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Accordion */
.hiw-acc {
  border: 1px solid #777;
  border-radius: 25px;
  margin-bottom: 15px;
  overflow: hidden;
}
.hiw-acc-header {
  padding: 15px 20px;
  font-size: 11px;
  font-weight: 700;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.hiw-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.hiw-acc.open .hiw-acc-body {
  max-height: 200px;
  padding: 0 20px 20px;
}
.hiw-acc-body p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.hiw-action-block {
  margin-top: 30px;
}
.hiw-action-block p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.hiw-action-divider {
  border: none;
  border-bottom: 1px solid #f0f0f0;
  margin: 25px 0;
}

.hiw-bottom-action {
  text-align: center;
  margin: 80px 0;
}
.btn-coop {
  background: #25442e; /* dark green */
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

/* Ensure buttons match design */
.btn-amazon, .btn-contact-prod {
  border-radius: 25px !important;
  font-size: 13px !important;
  padding: 12px 30px !important;
  display: inline-block;
  text-align: center;
}
.btn-amazon {
  background: #F29C38 !important; /* warmer orange */
  color: #fff !important;
}
.btn-contact-prod {
  background: #F29C38 !important; /* both are orange in screenshot */
  color: #fff !important;
}

/* Product Catalog existing override */
/* Accordion in Product */
/* Migrated to .fc-dropdown for consistency */


/* Buttons */
.hiw-btns {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-amazon {
  background: #F7B84B;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.btn-contact-prod {
  background: #126B2B;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 992px) {
  .hiw-prod-item {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  .hiw-prod-img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 450px;
  }
  .hiw-6f-row {
    gap: 30px;
    flex-wrap: wrap;
  }
}

/* Specific FAQ Style from Screenshot */
.faq-accordion-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}

.faq-header {
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #777; /* Greyish color from screen */
  transition: color 0.3s;
}

.faq-header i {
  font-size: 10px;
  transition: transform 0.3s;
}

.faq-item.open .faq-header {
  color: #333;
}

.faq-item.open .faq-header i {
  transform: rotate(90deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-item.open .faq-body {
  max-height: 1000px;
  padding: 0 25px 20px;
}

.faq-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ============================ */
/* === HANSIA BRANDS PAGE   === */
/* ============================ */

.hb-hero-sec {
  background-image: url('https://hanfimex.com/wp-content/uploads/2020/07/tijana-drndarski-dFoOWRT97_0-unsplash.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hb-hero-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hb-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hb-hero-content h1 {
  font-size: 54px;
  font-weight: 300;
  letter-spacing: 2px;
}

.hb-brand-banner {
  background: #fdfaf4;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.hb-brand-banner h2 {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 3px;
  color: #333;
}

.hb-story-sec {
  background-image: url('https://hanfimex.com/wp-content/uploads/2023/02/DSC04107-scaled.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
.hb-story-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.hb-story-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.hb-story-inner h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 30px;
}
.hb-story-inner p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 60px;
  color: #eee;
  font-weight: 300;
}

/* ============================ */
/* === RESPONSIBILITY PAGE  === */
/* ============================ */
.resp-quote-sec {
  padding: 80px 20px;
  background: #fdf6f2; /* Light beige/pinkish background */
  text-align: center;
}

.resp-quote-inner {
  max-width: 800px;
  margin: 0 auto;
}

.resp-quote-text {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.resp-quote-author {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
}

.resp-grid-sec {
  padding: 100px 20px;
  background: #fff;
}

.resp-grid-title {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 70px;
  color: #333;
  text-transform: none;
}

.resp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.resp-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.resp-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.cat-customer { color: #F7B84B; }
.cat-social { color: #42D2D2; }
.cat-env { color: #F39C46; }
.cat-emp { color: #42D2D2; }

.resp-card h3 {
  font-size: 28px;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
  text-transform: none;
}

.resp-card-content {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 450px;
  margin: 0 auto;
}

.resp-card-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.resp-card-list li {
  margin-bottom: 8px;
  position: relative;
}

.resp-card-list li::before {
  content: "•";
  margin-right: 8px;
}

@media (max-width: 850px) {
  .resp-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ============================ */
/* === CONTACTS PAGE        === */
/* ============================ */

.contact-page-sec {
  background-color: #fdfaf4;
  padding: 80px 0;
}

.contact-header {
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-country-col h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.contact-country-col h3 svg {
  width: 26px;
  height: 26px;
}

.contact-country-col p.c-comp {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-country-col p.c-label {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.contact-country-col p.c-val {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
  line-height: 1.5;
}

.contact-form-wrap {
  background: #fdfaf4;
  padding: 0;
  max-width: 850px;
}

.contact-form-inner {
  background: #fff;
  padding: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.contact-pixel-form input,
.contact-pixel-form textarea,
.contact-pixel-form select {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  background-color: #fcfcfc;
}

.contact-pixel-form input::placeholder,
.contact-pixel-form textarea::placeholder {
  color: #888;
}

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

.btn-contact-submit {
  background: #25442e;
  color: #fff;
  padding: 15px 35px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.contact-recaptcha-box {
  width: 300px;
  height: 70px;
  background: #fff;
  border: 1px solid #e5e5e5;
  margin-top: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #aaa;
  font-size: 20px;
}

@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================ */
/* === SINGLE NEWS PAGE     === */
/* ============================ */

.sn-hero {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
}

.sn-content-wrapper {
  background-color: #fff;
  padding: 80px 0 20px 0;
}

.sn-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.sn-badge-wrap {
  text-align: center;
  margin-bottom: 25px;
}

.sn-badge {
  background-color: #f7ca18;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 1px;
}

.sn-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

.sn-meta {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
}

.sn-featured-img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 40px;
  display: block;
}

.sn-body {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.sn-body p {
  margin-bottom: 20px;
}

.sn-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 40px 0 15px 0;
}

.sn-body ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.sn-body ul li {
  margin-bottom: 10px;
}

.sn-footer {
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sn-tags {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
}

.sn-tags span {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  margin-left: 10px;
  text-transform: uppercase;
}

.sn-share {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #888;
}

.sn-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.sn-share a.tw { background: #55acee; }
.sn-share a.fb { background: #3b5998; }

/* Related Articles */
.sn-related-sec {
  background-color: #fff;
  padding: 40px 0 80px 0;
}

.sn-related-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.sn-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.sn-related-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sn-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sn-related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sn-related-content {
  padding: 25px;
}

.sn-related-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.5;
}

.sn-related-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}

.sn-related-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sn-related-readmore {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #ddd;
  border-radius: 25px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sn-related-readmore:hover {
  background: #25442e;
  border-color: #25442e;
  color: #fff;
}

@media (max-width: 992px) {
  .sn-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sn-related-grid {
    grid-template-columns: 1fr;
  }
  .sn-footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}