/* =========================================================
   ADAOMA XPRESS LIMITED
   MAIN STYLESHEET
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --adaoma-green: #075b3a;

  --adaoma-green-dark: #043d28;

  --adaoma-green-light: #0b7048;

  --adaoma-gold: #d5a02a;

  --adaoma-gold-light: #e7be55;

  --adaoma-white: #ffffff;

  --adaoma-off-white: #f8f9f5;

  --adaoma-text: #26352e;

  --adaoma-muted: #6b756f;

  --adaoma-border: #e5e9e6;

  --adaoma-shadow: 0 10px 30px rgba(7, 91, 58, 0.08);

  --adaoma-shadow-lg: 0 20px 50px rgba(7, 91, 58, 0.12);
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", serif;

  color: var(--adaoma-text);

  background: var(--adaoma-white);

  line-height: 1.7;
}

a {
  text-decoration: none;
}

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

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;

  color: var(--adaoma-green-dark);

  line-height: 1.2;
}

/* =========================================================
   NAVBAR
========================================================= */

.adaoma-navbar {
  min-height: 82px;

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

  position: relative;

  z-index: 1000;

  transition: all 0.3s ease;
}

.navbar-logo {
  width: 1000px;

  height: 1000px;

  object-fit: contain;
}

.brand-text {
  display: flex;

  flex-direction: column;
  font-weight: 800;
  margin-right: 40px;

  line-height: 1;
}

.brand-name {
  color: var(--adaoma-green);

  font-size: 18px;

  font-weight: 700;

  letter-spacing: 1px;
}

.brand-text small {
  color: var(--adaoma-gold);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 3px;

  margin-top: 5px;
}

.navbar-nav {
  gap: 8px;
}

.navbar .nav-link {
  color: #35433c;

  font-size: 15px;

  font-weight: 600;

  padding: 10px 14px !important;

  position: relative;

  transition: color 0.3s ease;
}

.navbar .nav-link::after {
  content: "";

  position: absolute;

  left: 14px;

  right: 14px;

  bottom: 3px;

  height: 2px;

  background: var(--adaoma-gold);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--adaoma-green);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

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

.btn-adaoma {
  background: var(--adaoma-green);

  border: 1px solid var(--adaoma-green);

  color: white;

  font-weight: 600;

  padding: 11px 21px;

  border-radius: 5px;

  transition: all 0.3s ease;
}

.btn-adaoma:hover {
  background: var(--adaoma-green-dark);

  border-color: var(--adaoma-green-dark);

  color: white;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(7, 91, 58, 0.18);
}

.btn-adaoma-outline {
  background: transparent;

  border: 1px solid var(--adaoma-green);

  color: var(--adaoma-green);

  font-weight: 600;

  padding: 11px 21px;

  border-radius: 5px;

  transition: all 0.3s ease;
}

.btn-adaoma-outline:hover {
  background: var(--adaoma-green);

  color: white;
}

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

.adaoma-footer {
  background: var(--adaoma-green-dark);

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

  padding-top: 70px;
}

.footer-brand img {
  width: 100px;

  height: 100px;

  object-fit: contain;

  background: white;

  border-radius: 50%;

  padding: 5px;
}

.footer-company-name {
  color: white;

  font-family: "DM Sans", sans-serif;

  font-size: 20px;

  font-weight: 700;

  margin-top: 18px;

  margin-bottom: 5px;
}

.footer-tagline {
  color: var(--adaoma-gold-light);

  font-size: 14px;

  font-weight: 600;

  font-style: italic;

  margin-bottom: 15px;
}

.footer-description {
  max-width: 400px;

  font-size: 14px;

  line-height: 1.8;
}

.footer-heading {
  color: white;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  font-weight: 700;

  margin-bottom: 22px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;

  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--adaoma-gold-light);

  padding-left: 4px;
}

.footer-contact p {
  font-size: 14px;

  margin-bottom: 14px;

  display: flex;

  align-items: flex-start;

  gap: 10px;
}

.footer-contact i {
  color: var(--adaoma-gold-light);

  font-size: 16px;

  margin-top: 4px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 55px;

  padding: 22px 0;

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

.copyright {
  font-size: 13px;

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

.footer-legal {
  display: flex;

  justify-content: flex-end;

  gap: 10px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);

  font-size: 13px;

  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--adaoma-gold-light);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .navbar-nav {
    padding: 20px 0;
  }

  .navbar .nav-link {
    padding: 10px 0 !important;
  }

  .navbar .nav-link::after {
    left: 0;

    right: auto;

    width: 30px;
  }

  .navbar-nav .btn-adaoma {
    width: fit-content;
  }
}

@media (max-width: 767px) {
  .adaoma-navbar {
    min-height: 72px;
  }

  .navbar-logo {
    width: 48px;

    height: 48px;
  }

  .brand-name {
    font-size: 15px;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .adaoma-footer {
    padding-top: 50px;
  }
}
/* =========================================================
   HERO SECTION
========================================================= */

/* .hero-section {
  position: relative;

  min-height: 650px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: linear-gradient(110deg, #ffffff 0%, #ffffff 47%, #f4f8f4 100%);
}

.hero-section .container {
  position: relative;

  z-index: 2;
}

.hero-content {
  padding: 70px 20px 70px 0;

  max-width: 620px;
}

.hero-eyebrow {
  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--adaoma-green);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2.5px;

  margin-bottom: 22px;
}

.hero-line {
  display: inline-block;

  width: 35px;

  height: 2px;

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

.hero-title {
  font-size: clamp(48px, 5vw, 74px);

  font-weight: 600;

  letter-spacing: -2px;

  margin-bottom: 25px;
}

.hero-title span {
  display: block;

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

.hero-description {
  max-width: 570px;

  color: var(--adaoma-muted);

  font-size: 17px;

  line-height: 1.8;

  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.hero-primary-btn,
.hero-secondary-btn {
  padding: 13px 22px;

  display: inline-flex;

  align-items: center;

  gap: 12px;
}

.hero-mini-info {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 27px;
}

.hero-mini-info div {
  display: flex;

  align-items: center;

  gap: 7px;

  color: var(--adaoma-muted);

  font-size: 13px;

  font-weight: 600;
}

.hero-mini-info i {
  color: var(--adaoma-green);

  font-size: 15px;
} */

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

/* .hero-image-wrapper {
  position: relative;

  height: 620px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hero-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 560px;

  object-fit: cover;

  object-position: right center;

  border-radius: 0 0 0 120px;

  filter: saturate(1.03);
}

.hero-image-glow {
  position: absolute;

  width: 420px;

  height: 420px;

  right: 20px;

  top: 90px;

  border-radius: 50%;

  background: rgba(213, 160, 42, 0.1);

  filter: blur(20px);
} */

/* =========================================================
   HERO BOTTOM SHAPE
========================================================= */

/* .hero-bottom-shape {
  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  height: 45px;

  background: var(--adaoma-green-dark);

  clip-path: polygon(
    0 65%,
    20% 45%,
    45% 70%,
    70% 35%,
    100% 0,
    100% 100%,
    0 100%
  );
} */
/* =========================================
   HERO SECTION
========================================= */

.hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #102f24;
}

/* Background Image */

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Soft Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background: linear-gradient(
    90deg,
    rgba(5, 25, 19, 0.94) 0%,
    rgba(5, 25, 19, 0.88) 25%,
    rgba(5, 25, 19, 0.72) 45%,
    rgba(5, 25, 19, 0.42) 62%,
    rgba(5, 25, 19, 0.12) 82%,
    rgba(5, 25, 19, 0.02) 100%
  );
}

/* Hero Container */

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 120px;
}

/* Hero Content */

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 45px 55px;
  text-align: center;
  color: #fff;

  background: rgba(4, 24, 18, 0.28);

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

  border-radius: 18px;

  backdrop-filter: blur(2px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Eyebrow */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;

  color: #f4d47a;

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-line {
  width: 38px;
  height: 1px;
  background: #f4d47a;
}

.hero-line {
  width: 34px;
  height: 2px;
  background: var(--adaoma-gold);
}

/* Title */
.hero-title {
  margin: 0 auto 24px;

  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5.5vw, 5.3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;

  color: #ffffff;

  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-title span {
  display: block;

  color: #f4d47a;

  font-weight: 800;

  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Description */

.hero-description {
  max-width: 650px;
  margin: 0 auto 30px;

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

  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Buttons */

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-primary-btn,
.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: white;
  min-height: 48px;
  padding: 12px 22px;

  border-radius: 7px;

  font-size: 0.9rem;
  font-weight: 600;
}

.hero-primary-btn i,
.hero-secondary-btn i {
  font-size: 1rem;
}

/* Mini Information */

.hero-mini-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;

  margin-top: 28px;
}

.hero-mini-info > div {
  display: flex;
  align-items: center;
  gap: 7px;

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

  font-size: 0.82rem;
  font-weight: 500;
}

.hero-mini-info i {
  color: var(--adaoma-gold);
  font-size: 0.9rem;
}

/* Bottom Shape */

.hero-bottom-shape {
  position: absolute;
  left: -5%;
  bottom: -55px;

  width: 110%;
  height: 110px;

  background: var(--adaoma-white);

  border-radius: 50% 50% 0 0 / 100% 100% 0 0;

  z-index: 3;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 680px;
  }

  .hero-container {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 7vw, 4.3rem);
  }

  .hero-description {
    font-size: 0.95rem;
    max-width: 600px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 35, 27, 0.78) 0%,
      rgba(8, 35, 27, 0.6) 50%,
      rgba(8, 35, 27, 0.72) 100%
    );
  }
}

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

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 650px;
  }

  .hero-background-image {
    object-position: center center;
  }

  @media (max-width: 575.98px) {
    .hero-overlay {
      background: linear-gradient(
        180deg,
        rgba(5, 25, 19, 0.72) 0%,
        rgba(5, 25, 19, 0.82) 45%,
        rgba(5, 25, 19, 0.58) 100%
      );
    }

    .hero-content {
      padding: 30px 20px;
      background: rgba(4, 24, 18, 0.25);
      border-radius: 14px;
    }
  }

  .hero-container {
    padding-top: 100px;
    padding-bottom: 105px;
  }

  .hero-content {
    max-width: 92%;
  }

  .hero-eyebrow {
    margin-bottom: 15px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero-line {
    width: 22px;
  }

  .hero-title {
    margin-bottom: 18px;

    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-description {
    margin-bottom: 23px;

    font-size: 0.78rem;
    line-height: 1.65;
  }

  .hero-buttons {
    gap: 8px;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    min-height: 42px;
    padding: 9px 15px;

    font-size: 0.72rem;
  }

  .hero-mini-info {
    gap: 14px;
    margin-top: 20px;
  }

  .hero-mini-info > div {
    font-size: 0.68rem;
  }

  .hero-bottom-shape {
    bottom: -35px;
    height: 70px;
  }
}
/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  background: var(--adaoma-green-dark);

  color: white;

  position: relative;

  z-index: 5;
}

.trust-item {
  min-height: 105px;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 20px 30px;

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

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 48px;

  height: 48px;

  flex: 0 0 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(213, 160, 42, 0.5);

  border-radius: 50%;

  color: var(--adaoma-gold-light);

  font-size: 20px;
}

.trust-item h6 {
  color: white;

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  font-weight: 700;

  margin-bottom: 2px;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.6);

  font-size: 12px;

  margin: 0;
}

/* =========================================================
   GENERAL SECTION
========================================================= */

.section-padding {
  padding: 110px 0;
}

.section-label {
  display: inline-block;

  color: var(--adaoma-gold);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2.5px;

  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(36px, 4vw, 52px);

  margin-bottom: 20px;
}

.section-title span {
  color: var(--adaoma-gold);
}

.section-intro {
  color: var(--adaoma-muted);

  font-size: 16px;

  line-height: 1.8;

  max-width: 700px;

  margin-left: auto;

  margin-right: auto;
}

/* =========================================================
   WHY ADAOMA
========================================================= */

.why-adaoma {
  background: var(--adaoma-white);
}

.why-image-wrapper {
  padding-right: 20px;
}

.why-image-card {
  position: relative;

  min-height: 530px;

  overflow: hidden;

  border-radius: 8px;

  background: var(--adaoma-green);
}

.why-image-card img {
  width: 100%;

  height: 530px;

  object-fit: cover;

  object-position: right center;
}

.why-image-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(180deg, transparent 55%, rgba(4, 61, 40, 0.55));
}

.why-floating-card {
  position: absolute;

  z-index: 3;

  left: 25px;

  bottom: 25px;

  display: flex;

  align-items: center;

  gap: 12px;

  background: white;

  padding: 15px 18px;

  border-radius: 6px;

  box-shadow: var(--adaoma-shadow-lg);
}

.floating-icon {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(7, 91, 58, 0.08);

  color: var(--adaoma-green);

  font-size: 19px;
}

.why-floating-card strong {
  display: block;

  color: var(--adaoma-green-dark);

  font-size: 13px;
}

.why-floating-card small {
  display: block;

  color: var(--adaoma-muted);

  font-size: 11px;

  margin-top: 2px;
}

.why-content {
  padding-left: 25px;
}

.why-content h3 {
  font-size: 38px;

  margin-bottom: 22px;
}

.why-content > p {
  color: var(--adaoma-muted);

  font-size: 15px;

  line-height: 1.8;
}

.why-features {
  margin-top: 30px;

  margin-bottom: 30px;
}

.why-feature {
  display: flex;

  gap: 15px;

  margin-bottom: 20px;
}

.feature-icon {
  width: 43px;

  height: 43px;

  flex: 0 0 43px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 5px;

  background: rgba(7, 91, 58, 0.08);

  color: var(--adaoma-green);

  font-size: 18px;
}

.why-feature h5 {
  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  font-weight: 700;

  margin-bottom: 3px;
}

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

  font-size: 13px;

  margin: 0;

  line-height: 1.6;
}

.text-link {
  color: var(--adaoma-green);

  font-size: 14px;

  font-weight: 700;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  transition: all 0.3s ease;
}

.text-link i {
  transition: transform 0.3s ease;
}

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

.text-link:hover i {
  transform: translateX(5px);
}

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

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 80px 0 40px;

    max-width: 100%;
  }

  .hero-image-wrapper {
    height: 480px;

    margin-top: 10px;
  }

  .hero-image {
    height: 450px;

    border-radius: 0 0 0 80px;
  }

  .why-image-wrapper {
    padding-right: 0;
  }

  .why-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 55px 0 25px;
  }

  .hero-title {
    font-size: 44px;

    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    justify-content: center;
  }

  .hero-mini-info {
    flex-wrap: wrap;

    gap: 12px 20px;
  }

  .hero-image-wrapper {
    height: 350px;
  }

  .hero-image {
    height: 330px;

    border-radius: 0 0 0 50px;
  }

  .hero-image-glow {
    width: 250px;

    height: 250px;
  }

  .trust-item {
    border-right: none;

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

    min-height: 90px;

    padding: 18px 10px;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .section-padding {
    padding: 75px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .why-content h3 {
    font-size: 31px;
  }

  .why-image-card,
  .why-image-card img {
    min-height: 420px;

    height: 420px;
  }

  .why-floating-card {
    left: 15px;

    bottom: 15px;

    right: 15px;
  }
}
/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
  background: var(--adaoma-off-white);
}

.services-intro {
  color: var(--adaoma-muted);

  font-size: 15px;

  line-height: 1.8;

  max-width: 470px;

  margin-left: auto;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
  position: relative;

  height: 100%;

  padding: 38px 32px 32px;

  background: var(--adaoma-white);

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

  border-radius: 7px;

  overflow: hidden;

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

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(7, 91, 58, 0.2);

  box-shadow: var(--adaoma-shadow-lg);
}

.service-card-featured {
  background: var(--adaoma-green);

  border-color: var(--adaoma-green);
}

.service-card-featured h3 {
  color: white;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.service-number {
  position: absolute;

  top: 20px;

  right: 25px;

  color: rgba(7, 91, 58, 0.08);

  font-size: 52px;

  font-family: "Playfair Display", serif;

  font-weight: 700;

  line-height: 1;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.08);
}

.service-icon {
  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 25px;

  border-radius: 6px;

  background: rgba(7, 91, 58, 0.08);

  color: var(--adaoma-green);

  font-size: 25px;
}

.service-card-featured .service-icon {
  background: rgba(213, 160, 42, 0.15);

  color: var(--adaoma-gold-light);
}

.service-card h3 {
  font-size: 25px;

  margin-bottom: 15px;
}

.service-card p {
  color: var(--adaoma-muted);

  font-size: 14px;

  line-height: 1.8;

  margin-bottom: 22px;
}

.service-items {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-bottom: 28px;
}

.service-items span {
  padding: 5px 9px;

  border-radius: 3px;

  background: var(--adaoma-off-white);

  color: var(--adaoma-muted);

  font-size: 11px;

  font-weight: 600;
}

.service-card-featured .service-items span {
  background: rgba(255, 255, 255, 0.09);

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

.service-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--adaoma-green);

  font-size: 13px;

  font-weight: 700;

  transition: gap 0.3s ease;
}

.service-card-featured .service-link {
  color: var(--adaoma-gold-light);
}

.service-link:hover {
  gap: 13px;

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

.service-card-featured .service-link:hover {
  color: white;
}

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

.featured-products {
  background: white;
}

.product-preview-card {
  display: block;

  background: white;

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

  border-radius: 6px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

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

  box-shadow: var(--adaoma-shadow-lg);
}

.product-preview-image {
  position: relative;

  height: 270px;

  overflow: hidden;

  background: var(--adaoma-off-white);
}

.product-preview-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.product-preview-card:hover .product-preview-image img {
  transform: scale(1.06);
}

.product-category {
  position: absolute;

  left: 12px;

  top: 12px;

  padding: 5px 9px;

  border-radius: 3px;

  background: white;

  color: var(--adaoma-green);

  font-size: 10px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.product-preview-info {
  padding: 17px 17px 19px;
}

.product-preview-info h4 {
  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  font-weight: 700;

  color: var(--adaoma-green-dark);

  margin-bottom: 7px;
}

.product-preview-info span {
  color: var(--adaoma-muted);

  font-size: 12px;

  font-weight: 600;
}

.product-preview-info i {
  margin-left: 4px;

  transition: transform 0.3s ease;
}

.product-preview-card:hover .product-preview-info i {
  transform: translate(2px, -2px);
}

/* =========================================================
   GLOBAL CTA
========================================================= */

.global-cta {
  padding: 80px 0;

  background: var(--adaoma-off-white);
}

.global-cta-inner {
  position: relative;

  overflow: hidden;

  padding: 65px 70px;

  border-radius: 8px;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(213, 160, 42, 0.18),
      transparent 30%
    ),
    var(--adaoma-green-dark);
}

.global-cta-inner::after {
  content: "";

  position: absolute;

  width: 280px;

  height: 280px;

  right: -90px;

  bottom: -150px;

  border-radius: 50%;

  border: 1px solid rgba(213, 160, 42, 0.3);
}

.cta-label {
  display: block;

  color: var(--adaoma-gold-light);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2.5px;

  margin-bottom: 12px;
}

.global-cta h2 {
  color: white;

  font-size: clamp(34px, 4vw, 50px);

  margin-bottom: 15px;
}

.global-cta p {
  max-width: 650px;

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

  font-size: 15px;

  line-height: 1.8;

  margin-bottom: 0;
}

.btn-gold {
  position: relative;

  z-index: 2;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 24px;

  border: 1px solid var(--adaoma-gold);

  border-radius: 5px;

  background: var(--adaoma-gold);

  color: var(--adaoma-green-dark);

  font-weight: 700;

  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--adaoma-gold-light);

  border-color: var(--adaoma-gold-light);

  color: var(--adaoma-green-dark);

  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE SERVICES
========================================================= */

@media (max-width: 991px) {
  .services-intro {
    margin-left: 0;

    margin-top: 20px;
  }

  .global-cta-inner {
    padding: 50px 40px;
  }
}

@media (max-width: 767px) {
  .service-card {
    padding: 30px 25px;
  }

  .product-preview-image {
    height: 200px;
  }

  .product-preview-info {
    padding: 14px;
  }

  .product-preview-info h4 {
    font-size: 14px;
  }

  .global-cta {
    padding: 55px 0;
  }

  .global-cta-inner {
    padding: 40px 25px;
  }

  .global-cta h2 {
    font-size: 34px;
  }
}
/* =========================================================
   INNER PAGE HERO
========================================================= */

.inner-page-hero {
  position: relative;

  min-height: 390px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: linear-gradient(
    110deg,
    var(--adaoma-green-dark),
    var(--adaoma-green)
  );
}

.inner-page-hero::after {
  content: "";

  position: absolute;

  width: 430px;

  height: 430px;

  right: -130px;

  top: -150px;

  border-radius: 50%;

  border: 1px solid rgba(213, 160, 42, 0.25);
}

.inner-page-hero .container {
  position: relative;

  z-index: 2;
}

.inner-page-hero .hero-eyebrow {
  color: var(--adaoma-gold-light);
}

.inner-page-hero .hero-line {
  background: var(--adaoma-gold-light);
}

.inner-page-hero h1 {
  max-width: 750px;

  color: white;

  font-size: clamp(46px, 6vw, 70px);

  margin-bottom: 20px;
}

.inner-page-hero h1 span {
  color: var(--adaoma-gold-light);
}

.inner-page-hero p {
  max-width: 650px;

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

  font-size: 17px;

  line-height: 1.8;

  margin-bottom: 0;
}

/* =========================================================
   ABOUT INTRODUCTION
========================================================= */

.about-introduction {
  background: white;
}

.about-image-wrapper {
  position: relative;

  padding-right: 25px;
}

.about-image-wrapper::before {
  content: "";

  position: absolute;

  left: -15px;

  top: -15px;

  width: 120px;

  height: 120px;

  border-top: 3px solid var(--adaoma-gold);

  border-left: 3px solid var(--adaoma-gold);

  z-index: 0;
}

.about-image-wrapper img {
  position: relative;

  z-index: 1;

  width: 100%;

  height: 520px;

  object-fit: cover;

  border-radius: 5px;
}

.about-image-badge {
  position: absolute;

  z-index: 3;

  right: 0;

  bottom: 30px;

  width: 145px;

  height: 145px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: var(--adaoma-gold);

  color: var(--adaoma-green-dark);

  box-shadow: var(--adaoma-shadow-lg);
}

.about-image-badge strong {
  font-family: "Playfair Display", serif;

  font-size: 24px;
}

.about-image-badge span {
  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.about-lead {
  color: var(--adaoma-green-dark);

  font-size: 20px;

  line-height: 1.7;

  font-weight: 500;
}

.about-text {
  color: var(--adaoma-muted);

  font-size: 15px;

  line-height: 1.9;
}

.about-highlight {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 28px;

  padding: 18px 20px;

  border-left: 3px solid var(--adaoma-gold);

  background: var(--adaoma-off-white);
}

.about-highlight i {
  color: var(--adaoma-gold);

  font-size: 28px;
}

.about-highlight p {
  margin: 0;

  color: var(--adaoma-green-dark);

  font-size: 15px;

  font-weight: 700;
}

/* =========================================================
   MISSION / VISION
========================================================= */

.mission-section {
  background: var(--adaoma-off-white);
}

.mission-card {
  position: relative;

  height: 100%;

  padding: 45px;

  background: white;

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

  border-radius: 7px;

  overflow: hidden;
}

.mission-card::after {
  content: "";

  position: absolute;

  right: -70px;

  bottom: -90px;

  width: 210px;

  height: 210px;

  border-radius: 50%;

  border: 1px solid rgba(7, 91, 58, 0.08);
}

.mission-card > span {
  display: block;

  color: var(--adaoma-gold);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 15px;
}

.mission-icon {
  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 28px;

  border-radius: 6px;

  background: rgba(7, 91, 58, 0.08);

  color: var(--adaoma-green);

  font-size: 24px;
}

.mission-card h2 {
  max-width: 500px;

  font-size: 31px;

  margin-bottom: 18px;
}

.mission-card p {
  position: relative;

  z-index: 2;

  color: var(--adaoma-muted);

  font-size: 14px;

  line-height: 1.9;

  margin-bottom: 0;
}

.vision-card {
  background: var(--adaoma-green-dark);

  border-color: var(--adaoma-green-dark);
}

.vision-card > span {
  color: var(--adaoma-gold-light);
}

.vision-card .mission-icon {
  background: rgba(213, 160, 42, 0.12);

  color: var(--adaoma-gold-light);
}

.vision-card h2 {
  color: white;
}

.vision-card p {
  color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   VALUES
========================================================= */

.values-section {
  background: white;
}

.value-card {
  position: relative;

  height: 100%;

  padding: 40px 32px;

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

  border-radius: 7px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--adaoma-shadow-lg);
}

.value-number {
  position: absolute;

  top: 20px;

  right: 25px;

  color: rgba(7, 91, 58, 0.07);

  font-family: "Playfair Display", serif;

  font-size: 50px;

  font-weight: 700;
}

.value-icon {
  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 25px;

  border-radius: 6px;

  background: rgba(7, 91, 58, 0.08);

  color: var(--adaoma-green);

  font-size: 23px;
}

.value-card h3 {
  font-size: 22px;

  margin-bottom: 12px;
}

.value-card p {
  color: var(--adaoma-muted);

  font-size: 14px;

  line-height: 1.8;

  margin-bottom: 0;
}

/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
  padding: 80px 0;

  background: var(--adaoma-off-white);
}

.about-cta-inner {
  padding: 60px 70px;

  border-radius: 8px;

  background: var(--adaoma-green);
}

.about-cta h2 {
  max-width: 700px;

  color: white;

  font-size: clamp(34px, 4vw, 50px);

  margin-bottom: 15px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.7);

  max-width: 650px;

  line-height: 1.8;

  margin-bottom: 0;
}

/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .about-image-wrapper {
    padding-right: 0;
  }

  .about-image-wrapper img {
    height: 450px;
  }

  .about-cta-inner {
    padding: 50px 40px;
  }
}

@media (max-width: 767px) {
  .inner-page-hero {
    min-height: 330px;
  }

  .inner-page-hero h1 {
    font-size: 44px;
  }

  .about-image-wrapper img {
    height: 390px;
  }

  .about-image-badge {
    width: 120px;

    height: 120px;

    right: 15px;
  }

  .mission-card {
    padding: 32px 25px;
  }

  .mission-card h2 {
    font-size: 27px;
  }

  .value-card {
    padding: 32px 25px;
  }

  .about-cta {
    padding: 55px 0;
  }

  .about-cta-inner {
    padding: 40px 25px;
  }
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
  min-height: 400px;
}

/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {
  background: white;
}

.contact-title {
  font-size: clamp(36px, 4vw, 50px);

  margin-bottom: 20px;
}

.contact-title span {
  color: var(--adaoma-gold);
}

.contact-intro {
  color: var(--adaoma-muted);

  font-size: 15px;

  line-height: 1.9;

  margin-bottom: 35px;

  max-width: 520px;
}

/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  margin-bottom: 23px;

  color: inherit;
}

.contact-detail-icon {
  width: 46px;

  height: 46px;

  flex: 0 0 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 5px;

  background: rgba(7, 91, 58, 0.08);

  color: var(--adaoma-green);

  font-size: 18px;
}

.contact-detail span {
  display: block;

  color: var(--adaoma-muted);

  font-size: 11px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.7px;

  margin-bottom: 4px;
}

.contact-detail strong {
  display: block;

  color: var(--adaoma-green-dark);

  font-size: 14px;

  line-height: 1.6;
}

.contact-detail strong small {
  display: block;

  color: var(--adaoma-muted);

  font-size: 11px;

  font-weight: 500;

  margin-top: 2px;
}

a.contact-detail:hover {
  color: inherit;
}

a.contact-detail:hover .contact-detail-icon {
  background: var(--adaoma-green);

  color: white;
}

/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.whatsapp-contact-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 8px;

  padding: 12px 17px;

  border-radius: 5px;

  background: var(--adaoma-green);

  color: white;

  font-size: 13px;

  font-weight: 700;

  transition: all 0.3s ease;
}

.whatsapp-contact-btn:hover {
  background: var(--adaoma-green-dark);

  color: white;

  transform: translateY(-2px);
}

.whatsapp-contact-btn i:last-child {
  font-size: 11px;

  margin-left: 3px;
}

/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-card {
  padding: 42px;

  background: var(--adaoma-off-white);

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

  border-radius: 7px;
}

.contact-form-heading > span {
  display: block;

  color: var(--adaoma-gold);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 8px;
}

.contact-form-heading h3 {
  font-size: 28px;

  margin-bottom: 8px;
}

.contact-form-heading p {
  color: var(--adaoma-muted);

  font-size: 13px;

  line-height: 1.7;

  margin-bottom: 28px;
}

/* Form labels */

.contact-form-card .form-label {
  color: var(--adaoma-green-dark);

  font-size: 12px;

  font-weight: 700;

  margin-bottom: 7px;
}

/* Inputs */

.contact-form-card .form-control,
.contact-form-card .form-select {
  min-height: 48px;

  padding: 11px 13px;

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

  border-radius: 4px;

  background: white;

  color: var(--adaoma-green-dark);

  font-size: 13px;

  box-shadow: none;
}

.contact-form-card textarea.form-control {
  min-height: 145px;

  resize: vertical;
}

.contact-form-card .form-control::placeholder {
  color: #a4aaa6;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--adaoma-green);

  box-shadow: 0 0 0 3px rgba(7, 91, 58, 0.08);
}

/* Submit */

.contact-submit-btn {
  min-height: 49px;

  padding: 12px 23px;

  display: inline-flex;

  align-items: center;

  gap: 10px;
}

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

.how-it-works {
  background: var(--adaoma-off-white);
}

.process-card {
  height: 100%;

  padding: 32px;

  background: white;

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

  border-radius: 6px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--adaoma-shadow-lg);
}

.process-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 28px;
}

.process-top span {
  color: var(--adaoma-gold);

  font-family: "Playfair Display", serif;

  font-size: 35px;

  font-weight: 700;
}

.process-top i {
  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(7, 91, 58, 0.08);

  color: var(--adaoma-green);

  font-size: 18px;
}

.process-card h3 {
  font-size: 22px;

  margin-bottom: 12px;
}

.process-card p {
  color: var(--adaoma-muted);

  font-size: 14px;

  line-height: 1.8;

  margin-bottom: 0;
}

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

.contact-bottom-cta {
  padding: 80px 0;

  background: white;
}

.contact-bottom-inner {
  padding: 60px 70px;

  border-radius: 8px;

  background: var(--adaoma-green-dark);
}

.contact-bottom-inner h2 {
  color: white;

  font-size: clamp(34px, 4vw, 48px);

  margin-bottom: 14px;
}

.contact-bottom-inner p {
  max-width: 650px;

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

  font-size: 14px;

  line-height: 1.8;

  margin-bottom: 0;
}

/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .contact-form-card {
    padding: 35px;
  }

  .contact-bottom-inner {
    padding: 50px 40px;
  }
}

@media (max-width: 767px) {
  .contact-form-card {
    padding: 25px 20px;
  }

  .contact-form-heading h3 {
    font-size: 24px;
  }

  .contact-bottom-cta {
    padding: 55px 0;
  }

  .contact-bottom-inner {
    padding: 40px 25px;
  }
}
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: auto;
  min-width: 170px;
  padding: 12px 22px;

  border: none;
  border-radius: 8px;

  background: var(--adaoma-green);
  color: #fff;

  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-submit-btn i {
  font-size: 1rem;
}

.contact-submit-btn:hover {
  background: var(--adaoma-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
/* /////////////// */

/* ========================================
   NAVBAR
======================================== */

.adaoma-navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--adaoma-border);
  padding: 14px 0;
  position: relative;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  /* gap: -9px; */
  text-decoration: none;
}

.navbar-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
}

.brand-name {
  color: var(--adaoma-green);
  /* font-family: "Playfair Display", serif; */
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-name span {
  color: var(--adaoma-gold);
}

.adaoma-navbar .nav-link {
  color: #333;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 15px !important;
  transition: all 0.25s ease;
}

.adaoma-navbar .nav-link:hover,
.adaoma-navbar .nav-link.active {
  color: var(--adaoma-green);
}

.navbar-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 19px;
  border-radius: 7px;
  background: var(--adaoma-green);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.navbar-quote-btn:hover {
  background: var(--adaoma-green-dark);
  color: #fff;
  transform: translateY(-1px);
}

.adaoma-navbar .navbar-toggler {
  border: 1px solid var(--adaoma-border);
  padding: 7px 9px;
}

.adaoma-navbar .navbar-toggler:focus {
  box-shadow: none;
}

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

.adaoma-footer {
  background: var(--adaoma-green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.footer-brand span {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-brand strong {
  color: var(--adaoma-gold);
}

.footer-description {
  max-width: 430px;
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-whatsapp:hover {
  color: var(--adaoma-gold);
}

.footer-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--adaoma-gold);
  padding-left: 3px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 17px;
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--adaoma-gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--adaoma-gold);
}

.footer-bottom {
  margin-top: 55px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  transition: 0.25s ease;
}

.footer-legal a:hover {
  color: var(--adaoma-gold);
}

/* ========================================
   NAVBAR / FOOTER RESPONSIVE
======================================== */

@media (max-width: 991px) {
  .adaoma-navbar .navbar-collapse {
    padding-top: 18px;
  }

  .adaoma-navbar .nav-link {
    padding: 10px 0 !important;
  }

  .navbar-quote-btn {
    width: fit-content;
  }

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

@media (max-width: 575px) {
  .adaoma-navbar {
    padding: 11px 0;
  }

  .navbar-logo {
    width: 80px;
    /* height: 60px; */
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .adaoma-footer {
    padding-top: 50px;
  }

  .footer-bottom {
    margin-top: 35px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}
/* ========================================
   PRODUCTS PAGE
======================================== */

.products-hero {
  background: linear-gradient(
    90deg,
    rgba(18, 67, 45, 0.96),
    rgba(18, 67, 45, 0.82)
  );
}

.products-hero .inner-page-hero-content {
  max-width: 760px;
}

.products-hero h1 {
  max-width: 720px;
}

.products-hero h1 span {
  color: var(--adaoma-gold);
}

.products-hero p {
  max-width: 650px;
}

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

.products-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 35px;
}

.products-heading h2 {
  margin-bottom: 0;
}

.products-heading > p {
  max-width: 300px;
  margin: 0;
  color: var(--adaoma-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 35px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--adaoma-border);
  border-radius: 10px;
}

.products-search {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}

.products-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--adaoma-muted);
}

.products-search input {
  width: 100%;
  height: 44px;
  padding: 0 15px 0 40px;
  border: 1px solid var(--adaoma-border);
  border-radius: 7px;
  outline: none;
  font-family: inherit;
  font-size: 0.88rem;
  color: #333;
  transition: 0.25s ease;
}

.products-search input:focus {
  border-color: var(--adaoma-green);
  box-shadow: 0 0 0 3px rgba(18, 67, 45, 0.08);
}

.product-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.product-filter {
  border: 1px solid var(--adaoma-border);
  background: #fff;
  color: #555;
  padding: 9px 14px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.product-filter:hover {
  border-color: var(--adaoma-green);
  color: var(--adaoma-green);
}

.product-filter.active {
  background: var(--adaoma-green);
  border-color: var(--adaoma-green);
  color: #fff;
}

/* ========================================
   PRODUCT CARD
======================================== */

.store-product-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--adaoma-border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.store-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 67, 45, 0.2);
  box-shadow: var(--adaoma-shadow-lg);
}

.store-product-image {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: var(--adaoma-off-white);
}

.store-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.store-product-card:hover .store-product-image img {
  transform: scale(1.04);
}

.product-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--adaoma-green);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-product-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-height: 205px;
}

.store-product-content h3 {
  margin: 0 0 9px;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
}

.store-product-content p {
  margin: 0 0 18px;
  color: var(--adaoma-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.product-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 7px;
  background: var(--adaoma-green);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.product-order-btn:hover {
  background: var(--adaoma-green-dark);
  color: #fff;
}

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

.no-products {
  text-align: center;
  padding: 70px 20px;
  color: var(--adaoma-muted);
}

.no-products i {
  display: block;
  margin-bottom: 15px;
  font-size: 2rem;
  color: var(--adaoma-green);
}

.no-products h3 {
  margin-bottom: 7px;
  color: #222;
  font-size: 1.15rem;
}

.no-products p {
  margin: 0;
  font-size: 0.88rem;
}

/* ========================================
   PRODUCTS BOTTOM CTA
======================================== */

.products-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding: 35px 40px;
  border-radius: 12px;
  background: var(--adaoma-off-white);
  border: 1px solid var(--adaoma-border);
}

.products-bottom-cta .section-eyebrow {
  margin-bottom: 8px;
}

.products-bottom-cta h3 {
  margin: 0 0 8px;
  color: var(--adaoma-green);
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.products-bottom-cta p {
  max-width: 600px;
  margin: 0;
  color: var(--adaoma-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.products-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 11px 20px;
  border-radius: 7px;
  background: var(--adaoma-green);
  color: #fff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.products-cta-btn:hover {
  background: var(--adaoma-green-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .products-search {
    width: 100%;
  }

  .product-filters {
    justify-content: flex-start;
  }

  .products-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-heading > p {
    max-width: 500px;
  }

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

@media (max-width: 575px) {
  .product-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .product-filter {
    width: 100%;
  }

  .store-product-image {
    height: 220px;
  }

  .products-bottom-cta {
    padding: 28px 22px;
  }

  .products-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================================
   ADAOMA HOMEPAGE FINAL RESPONSIVE POLISH
========================================================= */

/* ---------- TRUST STRIP ---------- */

.trust-strip {
  position: relative;
  z-index: 5;
}

.trust-item {
  min-height: 100px;
  padding: 22px 28px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

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

  border-radius: 50%;

  background: rgba(20, 105, 73, 0.08);
  color: var(--adaoma-green);

  font-size: 1.05rem;
}

.trust-item h6 {
  margin: 0 0 4px;

  color: #18392d;

  font-size: 0.84rem;
  font-weight: 700;
}

.trust-item p {
  margin: 0;

  color: #7a847f;

  font-size: 0.72rem;
}

/* ---------- WHY ADAOMA ---------- */

.why-adaoma {
  background: #fff;
}

.why-content h3 {
  color: #17392c;

  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.15;

  margin-bottom: 22px;
}

.why-content > p {
  color: #68736e;

  font-size: 0.92rem;
  line-height: 1.8;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-bottom: 20px;
}

.feature-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

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

  border-radius: 10px;

  background: rgba(20, 105, 73, 0.08);
  color: var(--adaoma-green);
}

.why-feature h5 {
  margin: 0 0 4px;

  color: #18392d;

  font-size: 0.88rem;
  font-weight: 700;
}

.why-feature p {
  margin: 0;

  color: #77817c;

  font-size: 0.78rem;
  line-height: 1.6;
}

/* ---------- SERVICES ---------- */

.service-card {
  height: 100%;
  padding: 34px 30px;

  background: #fff;

  border: 1px solid rgba(20, 60, 45, 0.08);
  border-radius: 16px;

  box-shadow: 0 12px 35px rgba(15, 40, 30, 0.055);

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

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(20, 105, 73, 0.18);

  box-shadow: 0 20px 45px rgba(15, 40, 30, 0.1);
}

.service-card-featured {
  border-color: rgba(20, 105, 73, 0.18);
}

.service-number {
  margin-bottom: 20px;

  color: var(--adaoma-gold);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-icon {
  width: 52px;
  height: 52px;

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

  margin-bottom: 22px;

  border-radius: 12px;

  background: rgba(20, 105, 73, 0.08);
  color: var(--adaoma-green);

  font-size: 1.25rem;
}

.service-card h3 {
  margin-bottom: 13px;

  color: #18392d;

  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.service-card > p {
  min-height: 88px;

  margin-bottom: 20px;

  color: #6f7974;

  font-size: 0.83rem;
  line-height: 1.75;
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-bottom: 25px;
}

.service-items span {
  padding: 6px 9px;

  border-radius: 5px;

  background: #f4f6f3;
  color: #59665f;

  font-size: 0.67rem;
  font-weight: 600;
}

.service-link {
  color: var(--adaoma-green);
  text-decoration: none;

  font-size: 0.8rem;
  font-weight: 700;
}

.service-link i {
  margin-left: 5px;

  transition: transform 0.2s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ---------- FEATURED PRODUCTS ---------- */

.product-preview-card {
  display: block;

  height: 100%;

  overflow: hidden;

  background: #fff;

  border: 1px solid rgba(20, 60, 45, 0.08);
  border-radius: 14px;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(15, 40, 30, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

  box-shadow: 0 18px 40px rgba(15, 40, 30, 0.1);
}

.product-preview-image {
  position: relative;

  height: 230px;

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

  padding: 18px;

  background: #f6f7f4;

  overflow: hidden;
}

.product-preview-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition: transform 0.35s ease;
}

.product-preview-card:hover .product-preview-image img {
  transform: scale(1.04);
}

.product-category {
  position: absolute;
  left: 12px;
  top: 12px;

  padding: 5px 9px;

  border-radius: 5px;

  background: rgba(20, 60, 45, 0.88);
  color: #fff;

  font-size: 0.62rem;
  font-weight: 700;
}

.product-preview-info {
  padding: 18px;
}

.product-preview-info h4 {
  margin-bottom: 8px;

  color: #18392d;

  font-family: "Playfair Display", serif;
  font-size: 1rem;
}

.product-preview-info span {
  color: var(--adaoma-green);

  font-size: 0.7rem;
  font-weight: 700;
}

/* ---------- GLOBAL CTA ---------- */

.global-cta-inner {
  padding: 60px;

  border-radius: 20px;

  background: linear-gradient(120deg, #123b2c, #1b5941);

  box-shadow: 0 20px 55px rgba(15, 50, 35, 0.16);
}

.cta-label {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--adaoma-gold-light);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.global-cta h2 {
  margin-bottom: 15px;

  color: #fff;

  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

.global-cta p {
  max-width: 650px;

  margin: 0;

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

  font-size: 0.88rem;
  line-height: 1.8;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 13px 22px;

  border: none;
  border-radius: 7px;

  background: var(--adaoma-gold);
  color: #18392d;

  font-size: 0.82rem;
  font-weight: 700;

  transition: all 0.25s ease;
}

.btn-gold:hover {
  background: var(--adaoma-gold-light);
  color: #18392d;

  transform: translateY(-2px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .trust-item {
    padding: 20px 18px;
  }

  .why-image-wrapper {
    max-width: 650px;
    margin: 0 auto;
  }

  .why-content {
    margin-top: 10px;
  }

  .service-card > p {
    min-height: auto;
  }

  .product-preview-image {
    height: 210px;
  }

  .global-cta-inner {
    padding: 45px;
  }
}

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

@media (max-width: 767.98px) {
  /* General section spacing */

  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* Trust */

  .trust-item {
    min-height: auto;

    padding: 18px 8px;

    justify-content: center;

    text-align: left;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;

    font-size: 0.9rem;
  }

  .trust-item h6 {
    font-size: 0.72rem;
  }

  .trust-item p {
    font-size: 0.62rem;
  }

  /* Why */

  .why-content h3 {
    font-size: 2rem;
  }

  .why-content > p {
    font-size: 0.84rem;
  }

  .why-feature {
    gap: 11px;
  }

  /* Services */

  .services-section .row.align-items-end {
    margin-bottom: 35px !important;
  }

  .services-intro {
    margin-top: 18px;
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .service-card {
    padding: 28px 24px;
  }

  /* Products */

  .product-preview-image {
    height: 175px;
    padding: 12px;
  }

  .product-preview-info {
    padding: 14px;
  }

  .product-preview-info h4 {
    font-size: 0.88rem;
  }

  .product-preview-info span {
    font-size: 0.62rem;
  }

  /* CTA */

  .global-cta-inner {
    padding: 35px 24px;

    border-radius: 15px;

    text-align: center;
  }

  .global-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-gold {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {
  .trust-item {
    flex-direction: column;
    gap: 7px;

    text-align: center;
  }

  .trust-item p {
    display: none;
  }

  .product-preview-image {
    height: 150px;
  }

  .product-preview-info h4 {
    font-size: 0.8rem;
  }

  .global-cta h2 {
    font-size: 1.8rem;
  }
}
/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
  background: #f7f8f5;
}

/* ---------- SECTION INTRO ---------- */

.services-section .section-label {
  display: inline-block;
  margin-bottom: 14px;

  color: var(--adaoma-green);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.services-section .section-title {
  max-width: 700px;

  margin: 0;

  color: #17392c;

  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.services-section .section-title span {
  display: block;
  color: var(--adaoma-green);
}

.services-intro {
  max-width: 460px;

  margin-left: auto;

  color: #707b75;

  font-size: 0.9rem;
  line-height: 1.8;
}

/* =========================================================
   SERVICE CARDS
========================================================= */

.service-card {
  position: relative;

  height: 100%;

  display: flex;
  flex-direction: column;

  padding: 38px 32px 30px;

  background: #ffffff;

  border: 1px solid rgba(23, 57, 44, 0.08);
  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(20, 50, 38, 0.045);

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

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

  border-color: rgba(20, 105, 73, 0.18);

  box-shadow: 0 22px 50px rgba(20, 50, 38, 0.1);
}

/* ---------- NUMBER ---------- */

.service-number {
  margin-bottom: 28px;

  color: var(--adaoma-gold);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

/* ---------- ICON ---------- */

.service-icon {
  width: 54px;
  height: 54px;

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

  margin-bottom: 22px;

  border-radius: 14px;

  background: rgba(20, 105, 73, 0.08);
  color: var(--adaoma-green);

  font-size: 1.25rem;
}

/* ---------- TITLE ---------- */

.service-card h3 {
  margin-bottom: 14px;

  color: #17392c;

  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

/* ---------- DESCRIPTION ---------- */

.service-card > p {
  margin-bottom: 24px;

  color: #707b75;

  font-size: 0.84rem;
  line-height: 1.75;
}

/* ---------- PRODUCT TAGS ---------- */

.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-bottom: 30px;
}

.service-items span {
  padding: 7px 10px;

  background: #f3f5f2;

  border-radius: 6px;

  color: #5e6b64;

  font-size: 0.65rem;
  font-weight: 600;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.service-card:hover .service-items span {
  background: #f4d47a;
  color: #102f24;
}

/* ---------- LINK ---------- */

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: auto;

  color: var(--adaoma-green);

  text-decoration: none;

  font-size: 0.76rem;
  font-weight: 700;
}

.service-link i {
  transition: transform 0.2s ease;
}

.service-link:hover {
  color: var(--adaoma-green-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   FEATURED SERVICE
========================================================= */

.service-card-featured {
  background: linear-gradient(145deg, #123b2c 0%, #1b5941 100%);

  border-color: transparent;

  box-shadow: 0 20px 50px rgba(18, 59, 44, 0.16);
}

.service-card-featured:hover {
  border-color: transparent;

  box-shadow: 0 28px 60px rgba(18, 59, 44, 0.22);
}

.service-card-featured .service-number {
  color: #e9c968;
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #f4d47a;
}

.service-card-featured h3 {
  color: #ffffff;
}

.service-card-featured > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card-featured .service-items span {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
}

.service-card-featured .service-link {
  color: #f4d47a;
}

.service-card-featured .service-link:hover {
  color: #ffffff;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .services-intro {
    margin-top: 20px;
    margin-left: 0;
  }

  .service-card {
    padding: 32px 26px 28px;
  }
}

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

@media (max-width: 767.98px) {
  .services-section .section-title {
    font-size: 2.25rem;
  }

  .services-intro {
    max-width: 100%;

    font-size: 0.84rem;
    line-height: 1.7;
  }

  .service-card {
    padding: 30px 24px 26px;

    border-radius: 15px;
  }

  .service-number {
    margin-bottom: 22px;
  }

  .service-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 18px;

    font-size: 1.1rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card > p {
    font-size: 0.8rem;
  }

  .service-items {
    margin-bottom: 25px;
  }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {
  .services-section .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 26px 20px 24px;
  }
}
/* =========================================================
   ADAOMA XPRESS — PRODUCTS PAGE
   Premium Export Catalogue
========================================================= */

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

.products-hero {
  position: relative;
  overflow: hidden;
}

.products-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -160px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.products-hero .inner-page-hero-content {
  max-width: 760px;
}

.products-hero h1 {
  max-width: 760px;
}

.products-hero h1 span {
  display: block;
}

.products-hero p {
  max-width: 650px;
}

.products-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.hero-products-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 20px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--adaoma-green);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.hero-products-btn:hover {
  color: var(--adaoma-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero-products-btn i {
  transition: transform 0.25s ease;
}

.hero-products-btn:hover i {
  transform: translateY(3px);
}

.hero-products-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-products-link i {
  transition: transform 0.2s ease;
}

.hero-products-link:hover {
  color: #ffffff;
  border: 2px solid #f4d47a;
  padding: 12px 20px;
  border-radius: 7px;
}

.hero-products-link:hover i {
  transform: translateX(4px);
}

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

.products-section {
  background: #f8f9f6;
}

.products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}

.products-heading-main {
  max-width: 650px;
}

.products-heading-main h2 {
  margin: 10px 0 0;
  color: #17392c;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.products-heading-main h2 span {
  color: var(--adaoma-green);
}

.products-heading-text {
  max-width: 430px;
}

.products-heading-text p {
  margin: 0;
  color: #707b75;
  font-size: 0.86rem;
  line-height: 1.8;
}

/* =========================================================
   SEARCH + FILTER TOOLBAR
========================================================= */

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px;
  margin-bottom: 52px;
  background: #ffffff;
  border: 1px solid rgba(23, 57, 44, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(23, 57, 44, 0.045);
}

.products-search {
  position: relative;
  flex: 1;
  max-width: 370px;
}

.products-search > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7c8881;
  font-size: 0.9rem;
  pointer-events: none;
}

.products-search input {
  width: 100%;
  height: 46px;
  padding: 0 70px 0 43px;
  border: 1px solid #e4e8e4;
  border-radius: 7px;
  outline: none;
  background: #f8f9f7;
  color: #17392c;
  font-family: inherit;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.products-search input::placeholder {
  color: #929a95;
}

.products-search input:focus {
  background: #ffffff;
  border-color: rgba(20, 105, 73, 0.35);
  box-shadow: 0 0 0 3px rgba(20, 105, 73, 0.06);
}

.search-hint {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 7px;
  border-radius: 4px;
  background: #e9eee9;
  color: #6c776f;
  font-size: 0.58rem;
  font-weight: 700;
}

/* =========================================================
   PRODUCT FILTERS
========================================================= */

.product-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}

.product-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #e4e8e4;
  border-radius: 6px;
  background: #ffffff;
  color: #68746d;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-filter i {
  font-size: 0.75rem;
}

.product-filter:hover {
  border-color: rgba(20, 105, 73, 0.25);
  color: var(--adaoma-green);
  background: #f8faf8;
}

.product-filter.active {
  border-color: var(--adaoma-green);
  background: var(--adaoma-green);
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(20, 105, 73, 0.16);
}

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

.products-catalogue-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.catalogue-label {
  display: block;
  margin-bottom: 5px;
  color: var(--adaoma-green);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.products-catalogue-header h3 {
  margin: 0;
  color: #17392c;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.products-catalogue-header p {
  max-width: 390px;
  margin: 0;
  color: #89918c;
  font-size: 0.74rem;
  line-height: 1.6;
  text-align: right;
}

/* =========================================================
   PRODUCT CARDS
========================================================= */

.store-product-card {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(23, 57, 44, 0.07);
  border-radius: 12px;
  box-shadow: 0 7px 25px rgba(23, 57, 44, 0.045);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.store-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 105, 73, 0.16);
  box-shadow: 0 18px 40px rgba(23, 57, 44, 0.1);
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.store-product-image {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #f3f5f2;
}

.store-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.store-product-card:hover .store-product-image img {
  transform: scale(1.04);
}

/* Category badge */

.product-category-badge {
  position: absolute;
  left: 13px;
  top: 13px;
  padding: 5px 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--adaoma-green);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   PRODUCT CONTENT
========================================================= */

.store-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 19px 18px;
}

.store-product-content h3 {
  margin: 0 0 9px;
  color: #17392c;
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  line-height: 1.25;
}

.store-product-content p {
  margin: 0 0 20px;
  color: #77817b;
  font-size: 0.72rem;
  line-height: 1.7;
}

.product-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding: 9px 13px;
  border: 1px solid rgba(20, 105, 73, 0.18);
  border-radius: 6px;
  background: #f7faf7;
  color: var(--adaoma-green);
  text-decoration: none;
  font-size: 0.69rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.product-order-btn:hover {
  background: var(--adaoma-green);
  border-color: var(--adaoma-green);
  color: #ffffff;
}

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

.no-products {
  max-width: 520px;
  margin: 30px auto 0;
  padding: 55px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(23, 57, 44, 0.07);
  border-radius: 12px;
}

.no-products-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 17px;
  border-radius: 50%;
  background: rgba(20, 105, 73, 0.08);
  color: var(--adaoma-green);
  font-size: 1rem;
}

.no-products h3 {
  margin-bottom: 8px;
  color: #17392c;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.no-products p {
  margin-bottom: 18px;
  color: #7b857f;
  font-size: 0.76rem;
  line-height: 1.7;
}

.no-products-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--adaoma-green);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
}

.no-products-link:hover {
  color: var(--adaoma-green-dark);
}

/* =========================================================
   BOTTOM PROCUREMENT CTA
========================================================= */

.products-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 75px;
  padding: 45px 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #123b2c 0%, #1a5840 100%);
  box-shadow: 0 18px 45px rgba(18, 59, 44, 0.14);
}

.products-bottom-content {
  max-width: 680px;
}

.products-bottom-cta .section-eyebrow {
  color: #e9c968;
}

.products-bottom-cta h3 {
  margin: 8px 0 12px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
}

.products-bottom-cta h3 span {
  color: #e9c968;
}

.products-bottom-cta p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.75;
}

.products-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--adaoma-green);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.products-cta-btn:hover {
  color: var(--adaoma-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.15);
}

.products-cta-btn i {
  transition: transform 0.2s ease;
}

.products-cta-btn:hover i {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991.98px) {
  .products-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .products-heading-text {
    max-width: 650px;
  }

  .products-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .products-search {
    max-width: 100%;
  }

  .product-filters {
    justify-content: flex-start;
  }

  .products-catalogue-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .products-catalogue-header p {
    text-align: left;
  }

  .products-bottom-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 32px;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .products-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 24px;
  }

  .products-heading-main h2 {
    font-size: 2.15rem;
  }

  .products-toolbar {
    padding: 12px;
    margin-bottom: 40px;
  }

  .products-search input {
    height: 44px;
  }

  .product-filters {
    gap: 6px;
  }

  .product-filter {
    flex: 1 1 auto;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.63rem;
  }

  .product-filter i {
    display: none;
  }

  .store-product-image {
    height: 230px;
  }

  .store-product-content {
    padding: 18px 17px 17px;
  }

  .store-product-content h3 {
    font-size: 1.1rem;
  }

  .products-bottom-cta {
    margin-top: 55px;
    padding: 32px 25px;
    border-radius: 12px;
  }

  .products-bottom-cta h3 {
    font-size: 1.7rem;
  }

  .products-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   RESPONSIVE — SMALL PHONES
========================================================= */

@media (max-width: 400px) {
  .product-filter {
    width: 100%;
    flex: 1 1 100%;
  }

  .products-heading-main h2 {
    font-size: 1.95rem;
  }

  .store-product-image {
    height: 215px;
  }
}
/* =================================================
   FROM THE SOURCE — EBONYI SECTION
================================================= */

.ebonyi-section {
  background: #faf9f5;
  overflow: hidden;
}

/* Section introduction */

.ebonyi-section .section-intro {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature spacing */

.ebonyi-feature {
  margin-top: 80px;
}

/* Image */

.ebonyi-image-wrapper {
  position: relative;
  padding: 15px;
}

.ebonyi-image-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: #eee;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ebonyi-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 45%);
  pointer-events: none;
}

.ebonyi-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ebonyi-image-card:hover img {
  transform: scale(1.04);
}

/* Image badge */

.ebonyi-image-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);

  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.ebonyi-image-badge > i {
  font-size: 20px;
  color: #b88a28;
}

.ebonyi-image-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.ebonyi-image-badge small {
  display: block;
  margin-top: 2px;
  color: #777;
  font-size: 11px;
}

/* Content */

.ebonyi-content {
  padding: 10px 20px;
}

.ebonyi-number {
  display: inline-block;
  margin-right: 12px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b88a28;
}

.ebonyi-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #777;
}

.ebonyi-content h3 {
  margin: 16px 0 20px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 600;
}

.ebonyi-content h3 span {
  display: block;
  color: #b88a28;
}

.ebonyi-content > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Rice highlights */

.ebonyi-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.ebonyi-highlights div {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;

  background: #fff;
  border: 1px solid rgba(184, 138, 40, 0.12);
  border-radius: 10px;
}

.ebonyi-highlights i {
  color: #b88a28;
}

.ebonyi-highlights span {
  font-size: 13px;
  color: #555;
}

/* Closing text */

.ebonyi-closing {
  font-size: 14px;
  font-style: italic;
}

/* Divider */

.ebonyi-divider {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 100px 0 20px;
}

.ebonyi-divider span {
  width: 80px;
  height: 1px;
  background: #b88a28;
}

/* Palm oil features */

.ebonyi-palm-features {
  margin: 28px 0;
}

.palm-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.palm-feature-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;

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

  border-radius: 50%;

  background: rgba(184, 138, 40, 0.1);
  color: #b88a28;
}

.palm-feature strong {
  display: block;
  margin-bottom: 4px;

  font-size: 14px;
}

.palm-feature p {
  margin: 0;

  color: #777;
  font-size: 13px;
  line-height: 1.6;
}

/* Bottom story */

.ebonyi-story-footer {
  display: flex;
  align-items: center;
  gap: 22px;

  margin-top: 90px;
  padding: 30px 35px;

  background: #fff;
  border: 1px solid rgba(184, 138, 40, 0.15);
  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.ebonyi-story-icon {
  flex: 0 0 55px;
  width: 55px;
  height: 55px;

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

  border-radius: 50%;

  background: rgba(184, 138, 40, 0.1);
  color: #b88a28;

  font-size: 20px;
}

.ebonyi-story-footer span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b88a28;
}

.ebonyi-story-footer h4 {
  margin: 5px 0;

  font-size: 21px;
  font-weight: 600;
}

.ebonyi-story-footer p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

/* =================================================
   EBONYI RESPONSIVE
================================================= */

@media (max-width: 991px) {
  .ebonyi-feature {
    margin-top: 60px;
  }

  .ebonyi-image-card,
  .ebonyi-image-card img {
    min-height: 430px;
  }

  .ebonyi-content {
    padding: 0;
  }

  .ebonyi-divider {
    margin: 70px 0 10px;
  }
}

@media (max-width: 575px) {
  .ebonyi-feature {
    margin-top: 45px;
  }

  .ebonyi-image-wrapper {
    padding: 5px;
  }

  .ebonyi-image-card,
  .ebonyi-image-card img {
    min-height: 360px;
  }

  .ebonyi-image-badge {
    left: 18px;
    bottom: 18px;
    padding: 11px 13px;
  }

  .ebonyi-content h3 {
    font-size: 2rem;
  }

  .ebonyi-highlights {
    grid-template-columns: 1fr;
  }

  .ebonyi-story-footer {
    align-items: flex-start;
    padding: 24px;
    margin-top: 60px;
  }

  .ebonyi-story-footer h4 {
    font-size: 18px;
  }
}
