/* ==========================================================================
   Heavenshome Reality LLP - Custom Styles
   About Page, Product Detail Pages, Navigation & Responsive Enhancements
   ========================================================================== */

:root {
  --brand-green: #6cab2d;
  --brand-green-dark: #234726;
  --brand-green-deep: #1b381d;
  --brand-green-light: #f0f7e8;
  --brand-orange: #f25e25;
  --brand-charcoal: #1c211e;
  --brand-muted: #59615a;
  --brand-bg-cream: #faf9f5;
  --brand-border: #e6e8e2;
  --brand-card-bg: #ffffff;
}

/* -------------------------------------------------------------
   Common / Header & Dropdown Tweaks
   ------------------------------------------------------------- */
.main-menu .main-menu__list > li > a {
  font-size: 17px !important;
  font-weight: 500 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.main-menu .main-menu__list > li.dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: 13px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.main-menu .main-menu__list > li.dropdown:hover > a::after {
  transform: rotate(180deg);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--brand-border);
  padding: 10px 0;
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
  font-size: 15px;
  line-height: 22px;
  padding: 10px 22px;
  color: var(--brand-charcoal);
  font-weight: 500;
}

.main-menu .main-menu__list li ul li a:hover,
.stricky-header .main-menu__list li ul li a:hover {
  background-color: var(--brand-green);
  color: #ffffff;
  padding-left: 26px;
}

/* -------------------------------------------------------------
   Page Banner / Breadcrumbs
   ------------------------------------------------------------- */
.page-banner-section {
  position: relative;
  background: linear-gradient(135deg, #f7f9f4 0%, #eef3e8 100%);
  padding: 140px 0 45px;
  border-bottom: 1px solid var(--brand-border);
  overflow: hidden;
}

.page-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 350px;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(108, 171, 45, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--brand-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.page-breadcrumb a {
  color: var(--brand-muted);
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: var(--brand-green);
}

.page-breadcrumb .separator {
  color: #b0b8ac;
}

.page-breadcrumb .current-crumb {
  color: var(--brand-green);
  font-weight: 600;
}

.page-banner-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--brand-charcoal);
  margin: 0;
  font-family: var(--thm-font-2);
}

/* -------------------------------------------------------------
   ABOUT US PAGE STYLES (Mockup Exact Match)
   ------------------------------------------------------------- */
.about-hero-block {
  padding: 130px 0 60px;
  background: #ffffff;
}

.about-hero-title {
  font-family: var(--thm-font-2);
  font-size: 46px;
  font-weight: 700;
  color: #172619;
  line-height: 1.15;
  margin-bottom: 12px;
}

.about-hero-tagline {
  color: #3e6d24;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  margin-bottom: 22px;
  letter-spacing: -0.2px;
}

.about-hero-text {
  font-size: 16px;
  line-height: 1.75;
  color: #4a544b;
  max-width: 520px;
}

.about-hero-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-hero-img-wrap:hover img {
  transform: scale(1.02);
}

/* Editorial Numbered Sections */
.about-section-row {
  padding: 65px 0;
  position: relative;
}

.about-section-row.bg-cream {
  background-color: var(--brand-bg-cream);
}

.about-section-row.bg-light-green {
  background-color: #f7faf4;
}

.about-num-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.about-sec-num {
  font-family: var(--thm-font-2);
  font-size: 40px;
  font-weight: 700;
  color: #3e6d24;
  line-height: 1;
  letter-spacing: -0.5px;
}

.about-sec-heading {
  font-family: var(--thm-font-2);
  font-size: 24px;
  font-weight: 700;
  color: #152216;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0;
  padding-top: 6px;
  letter-spacing: 0.2px;
}

.about-sec-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: #3e6d24;
  margin-bottom: 20px;
  font-family: var(--thm-font-2);
}

.about-sec-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #454d46;
  margin-bottom: 14px;
}

.about-sec-body p strong {
  color: #1a241c;
  font-weight: 600;
}

.about-sec-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  align-items: center;
}

.about-sec-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
}

/* Convictions (Mission, Vision, Purpose) in Section 03 */
.conviction-cards-row {
  margin-top: 35px;
}

.conviction-card {
  background: #ffffff;
  border: 1px solid #e1e7db;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.conviction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(108, 171, 45, 0.12);
  border-color: var(--brand-green);
}

.conviction-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #3e6d24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #3e6d24;
  font-size: 28px;
  background-color: #f6f9f2;
}

.conviction-card h3 {
  font-family: var(--thm-font-2);
  font-size: 19px;
  font-weight: 700;
  color: #172619;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.conviction-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #525a53;
  margin: 0;
}

.about-quote-box {
  background-color: #eaece4;
  border-radius: 8px;
  padding: 22px 30px;
  margin-top: 35px;
  text-align: center;
}

.about-quote-box p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #384239;
  font-weight: 500;
}

/* Section 05: Before We Work Together (5 Grid Cards) */
.about-faq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.about-faq-card {
  background: #ffffff;
  border: 1px solid #e1e7dc;
  border-radius: 10px;
  padding: 24px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease;
}

.about-faq-card:hover {
  transform: translateY(-4px);
  border-color: #3e6d24;
}

.faq-badge-icon {
  width: 44px;
  height: 44px;
  background-color: #3e6d24;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.about-faq-card h4 {
  font-family: var(--thm-font-2);
  font-size: 15.5px;
  font-weight: 700;
  color: #172619;
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 42px;
}

.about-faq-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #555e56;
  margin: 0;
}

/* Pre-Footer Banner Bar */
.about-cta-bar {
  background: linear-gradient(90deg, #244427 0%, #1e3b20 100%);
  color: #ffffff;
  padding: 24px 0;
}

.about-cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.about-cta-bar__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-cta-bar__logo-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a2e06a;
  font-size: 20px;
}

.about-cta-bar__info h4 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 2px;
  font-family: var(--thm-font-2);
}

.about-cta-bar__info p {
  color: #d1e2cb;
  font-size: 13px;
  margin: 0;
}

.about-cta-bar__middle {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--thm-font-2);
}

.about-cta-bar__btn {
  background-color: #ffffff;
  color: #244427;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-cta-bar__btn:hover {
  background-color: #a2e06a;
  color: #172619;
  transform: translateX(4px);
}

/* -------------------------------------------------------------
   PRODUCT DETAIL PAGE STYLES
   ------------------------------------------------------------- */
.product-detail-hero {
  padding: 130px 0 60px;
  background: #ffffff;
}

.product-gallery-card {
  position: relative;
  border-radius: 16px;
  text-align: center;
}

.product-gallery-card img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.product-badge-float {
  position: absolute;
  top: 18px;
  left: 18px;
  background-color: #3e6d24;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-info-wrap {
  padding-left: 20px;
}

.product-category-tag {
  display: inline-block;
  color: #3e6d24;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  background: #eef5e6;
  padding: 4px 12px;
  border-radius: 4px;
}

.product-main-title {
  font-family: var(--thm-font-2);
  font-size: 38px;
  font-weight: 700;
  color: #172619;
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}

.quick-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f4f6f1;
  border: 1px solid #e2e8dc;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: #344035;
  font-weight: 600;
}

.quick-spec-pill i {
  color: #3e6d24;
}

.product-lead-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #4a544b;
  margin-bottom: 25px;
}

.product-action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 25px;
}

.product-action-buttons .thm-btn {
  padding: 13px 32px;
  font-size: 14px;
}

.btn-secondary-custom {
  background: #ffffff;
  color: #244427;
  border: 2px solid #244427;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: #244427;
  color: #ffffff;
}

/* Specifications Table & Detail Cards */
.product-specs-section {
  padding: 60px 0;
  background-color: var(--brand-bg-cream);
}

.specs-card-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  border: 1px solid var(--brand-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.specs-section-title {
  font-family: var(--thm-font-2);
  font-size: 22px;
  font-weight: 700;
  color: #172619;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #eef2e7;
}

.specs-section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--brand-green);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #f0f2ec;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 13px 14px;
  font-size: 14.5px;
  vertical-align: top;
}

.specs-table td.spec-label {
  font-weight: 700;
  color: #1d2b1f;
  width: 38%;
  background-color: #fafbf8;
}

.specs-table td.spec-value {
  color: #4a544b;
}

/* Supply & Packaging Cards */
.supply-info-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--brand-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.supply-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.supply-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #475249;
  line-height: 1.6;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #e8ece2;
}

.supply-feature-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.supply-feature-list li i {
  color: #3e6d24;
  margin-top: 3px;
  font-size: 16px;
  flex-shrink: 0;
}

.moq-highlight-card {
  background: linear-gradient(135deg, #f2f7ec 0%, #e5eedc 100%);
  border: 1px solid #c9dec0;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.moq-highlight-card h4 {
  font-family: var(--thm-font-2);
  font-size: 16px;
  color: #1b381d;
  font-weight: 700;
  margin-bottom: 10px;
}

.moq-highlight-card .moq-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.moq-highlight-card .moq-row:last-child {
  border-bottom: none;
}

.moq-highlight-card .moq-row strong {
  color: #172619;
}

/* Related Products */
.related-products-section {
  padding: 65px 0;
  background: #ffffff;
}

.related-product-card {
  border: 1px solid #e2e8dc;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-green);
}

.related-product-img {
  background-color: #fafaf7;
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid #f0f2eb;
}

.related-product-img img {
  height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.related-product-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-product-body h3 {
  font-family: var(--thm-font-2);
  font-size: 19px;
  font-weight: 700;
  color: #172619;
  margin-bottom: 8px;
}

.related-product-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #5c665e;
  margin-bottom: 16px;
}

.related-product-link {
  color: #3e6d24;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.related-product-link:hover {
  color: #172619;
  gap: 10px;
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   ------------------------------------------------------------- */
@media (max-width: 1199px) {
  .about-faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-hero-title {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .about-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-section-row {
    padding: 45px 0;
  }
  .product-info-wrap {
    padding-left: 0;
    margin-top: 30px;
  }
  .about-cta-bar__inner {
    flex-direction: column;
    text-align: center;
  }
  .about-cta-bar__left {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .about-faq-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-title {
    font-size: 32px;
  }
  .about-hero-tagline {
    font-size: 19px;
  }
  .about-sec-heading {
    font-size: 20px;
  }
  .about-sec-num {
    font-size: 32px;
  }
  .product-main-title {
    font-size: 28px;
  }
}
