﻿
:root {
  --bg: #f5f1e7;
  --surface: #ffffff;
  --surface-alt: #ede6d7;
  --text: #1f2735;
  --muted: #687080;
  --heading: #08142f;
  --green: #08142f;
  --green-2: #14254f;
  --gold: #caa24a;
  --saffron: #d3a13a;
  --brown: #394155;
  --border: rgba(8, 20, 47, 0.12);
  --shadow: 0 18px 42px rgba(8, 20, 47, 0.10);
  --radius: 24px;
  --radius-sm: 16px;
  --transition: all 0.25s ease;
}
html {
  scroll-behavior: smooth;
}

body.site-body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 135, 43, 0.08), transparent 35%),
    radial-gradient(circle at top right, rgba(8, 20, 47, 0.08), transparent 28%),
    var(--bg);
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--green-2);
}

.main {
  min-height: 60vh;
}

.section {
  padding: 84px 0;
}

.section-sm {
  padding: 52px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 20, 47, 0.08);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title span,
.section-title p {
  color: var(--muted);
  font-weight: 500;
}

.section-title h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.header {
  background: rgba(246, 243, 235, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 20, 47, 0.08);
  box-shadow: 0 8px 30px rgba(8, 20, 47, 0.04);
}

body.scrolled .header {
  box-shadow: 0 12px 30px rgba(8, 20, 47, 0.08);
}

.brand {
  min-width: 0;
}

.brand-logo,
.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
}

.brand-copy,
.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong,
.footer-brand strong {
  color: var(--heading);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-copy small,
.footer-brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.navmenu ul {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu a {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--heading);
  font-weight: 600;
}

.navmenu a:hover,
.navmenu a.active {
  background: rgba(8, 20, 47, 0.08);
  color: var(--green);
}

.mobile-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--heading);
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(8, 20, 47, 0.08);
}

.hero {
  padding: 72px 0 40px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(8, 20, 47, 0.95), rgba(20, 37, 79, 0.92)),
    radial-gradient(circle at top right, rgba(223, 140, 35, 0.35), transparent 36%);
  box-shadow: var(--shadow);
  color: #fff;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel::before {
  width: 240px;
  height: 240px;
  top: -70px;
  right: -70px;
}

.hero-panel::after {
  width: 160px;
  height: 160px;
  bottom: -50px;
  left: -40px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  padding: 34px;
}

.hero-copy h1 {
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0.9rem 0 1rem;
  color: #fff;
}

.hero-copy p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn-hero,
.btn-cta,
.btn-soft {
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.btn-hero {
  background: linear-gradient(135deg, #f5d68f, #d3a13a);
  color: #1e201d;
  border: none;
  box-shadow: 0 18px 30px rgba(223, 140, 35, 0.25);
}

.btn-hero:hover {
  transform: translateY(-2px);
  color: #1e201d;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn-soft:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.category-card,
.product-card,
.feature-card,
.contact-card,
.info-card,
.panel-card,
.card-soft {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-card {
  padding: 1.25rem;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--heading);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image-wrap {
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  border: 8px solid rgba(255, 255, 255, 0.18);
}

.hero-float {
  position: absolute;
  right: -10px;
  bottom: 26px;
  max-width: 230px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: var(--heading);
}

.hero-float small {
  display: block;
  color: var(--muted);
}

.brand-strip {
  padding-top: 24px;
}

.brand-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand-pill {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  color: var(--heading);
  font-weight: 600;
}

.section-surface {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(8, 20, 47, 0.05);
  border-bottom: 1px solid rgba(8, 20, 47, 0.05);
}

.category-card,
.product-card,
.feature-card,
.contact-card,
.info-card,
.panel-card {
  overflow: hidden;
  transition: var(--transition);
}

.category-card:hover,
.product-card:hover,
.feature-card:hover,
.contact-card:hover,
.info-card:hover,
.panel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(8, 20, 47, 0.14);
}

.category-card img,
.product-card img,
.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category-card .card-body,
.product-card .card-body,
.feature-card .card-body {
  padding: 1.2rem;
}

.category-card h3,
.product-card h3,
.feature-card h3 {
  color: var(--heading);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.card-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(8, 20, 47, 0.08);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem;
  height: 100%;
}

.feature-card .icon-box,
.info-card .icon-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(8, 20, 47, 0.10), rgba(223, 140, 35, 0.14));
  color: var(--green);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card p,
.info-card p,
.footer-text,
.footer-contact p,
.hero-copy p,
.content p,
.lead,
.card-meta {
  color: var(--muted);
}

.cta-band {
  padding-bottom: 32px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(8, 20, 47, 0.98), rgba(20, 37, 79, 0.94));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band-inner h2 {
  color: #fff;
  margin: 0.4rem 0 0.45rem;
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
}

.cta-band-inner p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  max-width: 66ch;
}

.btn-cta {
  background: #f5d68f;
  color: #1e201d;
  border: none;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #fff;
  color: #1e201d;
  transform: translateY(-2px);
}

.footer {
  background: linear-gradient(180deg, #f2eddf, #efe8d8);
  border-top: 1px solid rgba(8, 20, 47, 0.06);
  padding-top: 42px;
}

.footer-top {
  padding-bottom: 28px;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-text {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.footer-contact p {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  line-height: 1.6;
}

.footer-contact i,
.footer-links a::before {
  color: var(--green);
}

.footer h4 {
  color: var(--heading);
  font-size: 1.08rem;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.72rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bullets li {
  color: var(--muted);
  position: relative;
  padding-left: 1rem;
}

.footer-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(8, 20, 47, 0.08);
  padding: 16px 0 26px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(8, 20, 47, 0.18);
}

.floating-whatsapp {
  bottom: 22px;
  background: #25d366;
  color: #fff;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}

.scroll-top {
  bottom: 86px;
  background: var(--green);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.page-banner {
  margin: 18px 0 0;
}

.page-banner img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 0 0 34px 34px;
}

.page-title {
  padding: 26px 0 12px;
}

.page-title h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.04em;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(97, 112, 101, 0.5);
}

.about .content,
.contact .content,
.product-content,
.section-copy {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.about .content h3,
.product-content h3,
.contact-card h3 {
  color: var(--heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-range .service-item {
  height: 100%;
}

.service-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
}

.service-item .icon img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}

.service-item h6 {
  padding: 0.95rem 1rem 1.15rem;
  margin: 0;
  font-size: 1rem;
}

.service-item h6 a {
  color: var(--heading);
  font-weight: 700;
}

.service-item p {
  padding: 0 1rem 1.2rem;
  margin: 0;
  color: var(--muted);
}

.navbar-product-view {
  top: 74px;
  z-index: 990;
  border-bottom: 1px solid rgba(8, 20, 47, 0.08);
  background: rgba(246, 243, 235, 0.96) !important;
  backdrop-filter: blur(12px);
}

.navbar-product-view .nav {
  gap: 0.5rem;
  padding: 0.75rem 0;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.navbar-product-view .nav-link {
  border-radius: 999px;
  background: rgba(8, 20, 47, 0.06);
  color: var(--heading);
  font-weight: 700;
  white-space: nowrap;
}

.navbar-product-view .nav-link.active {
  background: var(--green);
  color: #fff;
}

.section .content {
  margin-top: 1rem;
}

.section .content h3 {
  color: var(--heading);
  font-weight: 800;
}

.table {
  border-color: var(--border);
  overflow: hidden;
  border-radius: 18px;
}

.table th {
  background: rgba(8, 20, 47, 0.06);
  color: var(--heading);
}

.table td, .table th {
  padding: 0.9rem 1rem;
}

.contact .info-wrap,
.contact .php-email-form {
  height: 100%;
}

.contact-card,
.info-card {
  padding: 1.25rem;
}

.contact-card .form-control,
.contact-card .form-select,
.php-email-form .form-control,
.php-email-form .form-select {
  border-radius: 16px;
  border: 1px solid rgba(8, 20, 47, 0.14);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.95);
}

.contact-card .form-control:focus,
.contact-card .form-select:focus,
.php-email-form .form-control:focus,
.php-email-form .form-select:focus {
  border-color: rgba(8, 20, 47, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(8, 20, 47, 0.10);
}

.php-email-form button,
.contact-card .btn {
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  background: var(--green);
  color: #fff;
  border: none;
  font-weight: 700;
}

.php-email-form button:hover,
.contact-card .btn:hover {
  background: var(--green-2);
  color: #fff;
}

.alert {
  border-radius: 18px;
  border: none;
  box-shadow: var(--shadow);
}

#preloader {
  position: fixed;
  inset: 0;
  background: rgba(246, 243, 235, 0.75);
  z-index: 9999;
}

#preloader::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-radius: 50%;
  border: 4px solid rgba(8, 20, 47, 0.18);
  border-top-color: var(--green);
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }

  .navmenu {
    position: fixed;
    inset: 86px 16px auto 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 998;
  }

  .navmenu ul {
    display: grid;
    gap: 0.2rem;
  }

  .navmenu a {
    width: 100%;
    justify-content: flex-start;
  }

  body.mobile-nav-active .navmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .navbar-product-view {
    top: 70px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-item .icon img,
  .category-card img,
  .product-card img,
  .feature-card img {
    height: 190px;
  }

  .page-banner img {
    max-height: 220px;
    border-radius: 0 0 24px 24px;
  }

  .floating-whatsapp,
  .scroll-top {
    width: 50px;
    height: 50px;
    right: 14px;
  }

  .scroll-top {
    bottom: 78px;
  }
}

/* Anshi Global Trade refinements */
.brand-logo,
.footer-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(223, 140, 35, 0.35);
  background: #fff;
}

.section-heading {
  color: var(--heading) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.hero-carousel-section {
  padding: 0;
}

.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item {
  min-height: calc(100vh - 84px);
}

.hero-slide-img {
  width: 100%;
  min-height: calc(100vh - 84px);
  object-fit: cover;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 28, 23, 0.82) 0%, rgba(8, 28, 23, 0.54) 48%, rgba(8, 28, 23, 0.18) 100%);
}

.hero-slide-content {
  left: max(5vw, calc((100vw - 1140px) / 2));
  right: auto;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 720px;
  padding: 0 24px 0 0;
}

.hero-slide-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0;
  margin: 0.8rem 0 1rem;
  font-weight: 850;
}

.hero-slide-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 62ch;
}

.hero-carousel-section .carousel-indicators {
  bottom: 28px;
}

.hero-carousel-section .carousel-indicators [data-bs-target] {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.52);
}

.hero-carousel-section .carousel-indicators .active {
  background-color: #d3a13a;
}

.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
  width: 8%;
}

.why-buyers-section .feature-card {
  min-height: 255px;
}

@media (max-width: 767px) {
  .brand-logo,
  .footer-logo {
    width: 56px;
    height: 56px;
  }

  .hero-carousel-section .carousel,
  .hero-carousel-section .carousel-inner,
  .hero-carousel-section .carousel-item,
  .hero-slide-img {
    min-height: 74vh;
  }

  .hero-slide-content {
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 0;
  }

  .hero-slide-content h1 {
    font-size: 2.25rem;
  }

  .hero-slide-content p {
    font-size: 0.98rem;
  }

  .hero-carousel-section .carousel-control-prev,
  .hero-carousel-section .carousel-control-next {
    display: none;
  }
}
/* Professional navy-gold theme and layout corrections */
:root {
  --bg: #f5f1e7;
  --surface: #ffffff;
  --surface-alt: #ede6d7;
  --text: #1f2735;
  --muted: #687080;
  --heading: #08142f;
  --green: #08142f;
  --green-2: #14254f;
  --gold: #caa24a;
  --saffron: #d3a13a;
  --brown: #394155;
  --border: rgba(8, 20, 47, 0.12);
  --shadow: 0 18px 42px rgba(8, 20, 47, 0.10);
  --radius: 24px;
  --radius-sm: 16px;
  --transition: all 0.25s ease;
}
body.site-body {
  color: var(--text);
  background: linear-gradient(180deg, #f8f4eb 0%, #f1eadb 100%);
}

.header {
  margin-bottom: 0;
  background: rgba(248, 244, 235, 0.96);
  border-bottom: 1px solid rgba(8, 20, 47, 0.08);
  box-shadow: 0 8px 24px rgba(8, 20, 47, 0.06);
}

.header .container-xl {
  min-height: 78px;
}

.brand-logo,
.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  padding: 3px;
  background: #f8f4eb;
  border: 2px solid rgba(202, 162, 74, 0.55);
}

.brand-copy strong,
.footer-brand strong {
  color: #08142f;
  letter-spacing: 0;
}

.navmenu a {
  color: #111b36;
}

.navmenu a:hover,
.navmenu a.active {
  background: rgba(202, 162, 74, 0.16);
  color: #08142f;
}

.main {
  padding-top: 0;
}

.hero,
.hero-carousel-section {
  margin-top: 0;
  padding: 0 !important;
}

.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item {
  min-height: calc(100vh - 78px);
}

.hero-slide-img {
  min-height: calc(100vh - 78px);
}

.hero-slide-overlay {
  background: linear-gradient(90deg, rgba(6, 15, 35, 0.86) 0%, rgba(12, 25, 58, 0.62) 46%, rgba(12, 25, 58, 0.22) 100%);
}

.hero-slide-content h1,
.section-heading,
.section-title h2,
.page-title h1,
.category-card h3,
.product-card h3,
.feature-card h3 {
  letter-spacing: 0 !important;
}

.eyebrow {
  background: rgba(202, 162, 74, 0.16);
  color: #7a5a13;
}

.btn-hero,
.btn-cta {
  background: linear-gradient(135deg, #d9b85f, #b98122);
  color: #08142f;
  border: 0;
  box-shadow: 0 18px 30px rgba(185, 129, 34, 0.22);
}

.btn-hero:hover,
.btn-cta:hover {
  color: #08142f;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.category-card,
.product-card,
.feature-card,
.panel-card,
.stat-card,
.contact-card,
.info-card,
.card-soft {
  border: 1px solid rgba(8, 20, 47, 0.10);
  box-shadow: 0 18px 38px rgba(8, 20, 47, 0.08);
}

.feature-card .icon-box,
.info-card .icon-box {
  background: linear-gradient(135deg, rgba(8, 20, 47, 0.10), rgba(202, 162, 74, 0.18));
  color: #08142f;
}

.section-surface {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(8, 20, 47, 0.07);
}

.why-buyers-section .trust-grid.row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-left: 0;
  margin-right: 0;
}

.why-buyers-section .trust-grid.row > [class*="col-"] {
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.why-buyers-section .feature-card {
  min-height: 100%;
}

.footer {
  background: linear-gradient(180deg, #08142f 0%, #050b1c 100%);
}

.floating-whatsapp,
.scroll-top.active {
  box-shadow: 0 12px 28px rgba(8, 20, 47, 0.24);
}

@media (max-width: 991.98px) {
  .why-buyers-section .trust-grid.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .header .container-xl {
    min-height: 68px;
  }

  .brand-logo,
  .footer-logo {
    width: 54px;
    height: 54px;
  }

  .hero-carousel-section .carousel,
  .hero-carousel-section .carousel-inner,
  .hero-carousel-section .carousel-item,
  .hero-slide-img {
    min-height: 72vh;
  }

  .why-buyers-section .trust-grid.row {
    grid-template-columns: 1fr;
  }
}

/* Final polish for header-to-banner fit and one-line buyer cards */
.header + .main,
.main > .hero:first-child,
.main > .hero-carousel-section:first-child {
  margin-top: 0 !important;
}

.main > .hero-carousel-section:first-child {
  padding: 0 !important;
}

@media (min-width: 992px) {
  .why-buyers-section .trust-grid.row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
