* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  background-color: #fff;
  color: #333;
}
.bi-arrow-right::before,
.bi-chevron-right::before {
  font-weight: 900 !important;
  -webkit-text-stroke: 0.45px currentColor;
  text-shadow: 0 0 0 currentColor;
}
.bi-arrow-right,
.bi-chevron-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.08);
  transform-origin: center;
}

:root {
  --dd-blue: #1a3c6e;
  --dd-blue-dark: #0f2447;
  --dd-green: #2e7d32;
  --dd-green-light: #43a047;
  --dd-light: #f4f7fb;
  --dd-gray: #6c757d;
  --dd-border: #dee2e6;
  --dd-red: #d32f2f;
  --page-gutter: 48px;
}

/* ACCESSIBILITY BAR */
.acc-bar {
  background: #1a3c6e;
  color: #fff;
  font-size: 11px;
  padding: 5px 0;
}
.acc-bar a,
.acc-bar button {
  color: #cce0ff;
  background: none;
  border: none;
  font-size: 11px;
  padding: 0 6px;
  cursor: pointer;
  text-decoration: none;
}
.acc-bar a:hover,
.acc-bar button:hover {
  color: #fff;
  text-decoration: underline;
}
.acc-bar .divider {
  color: #5a7fa8;
  margin: 0 4px;
}
.acc-bar .container-fluid,
.main-nav .container-fluid,
.stats-bar-outer .container-fluid {
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
}
.lang-actions {
  margin-right: 0;
  background: #fff;
}
.acc-bar .lang-btn {
  color: #1a3c6e;
  border-left: 1px solid #dce7f4;
  padding: 8px 14px;
  min-width: 66px;
  background: #fff;
  font-weight: 600;
}
.color-globe {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  vertical-align: -2px;
  background:
    radial-gradient(circle at 68% 31%, #34a853 0 12%, transparent 13%),
    radial-gradient(circle at 35% 58%, #34a853 0 15%, transparent 16%),
    radial-gradient(circle at 54% 72%, #fbbc04 0 12%, transparent 13%),
    linear-gradient(135deg, #2f80ed 0%, #4fc3f7 72%);
  box-shadow:
    inset 0 0 0 1px rgba(26, 60, 110, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.75);
}
.acc-bar .lang-btn:hover {
  color: #1a3c6e;
  text-decoration: none;
  background: #f6f9fd;
}

/* NAVBAR */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-mark {
  line-height: 0.9;
  text-align: center;
}
.nav-logo .logo-dd {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: #2e7d32;
  letter-spacing: -3px;
}
.nav-logo .logo-group {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #1a3c6e;
  letter-spacing: 3px;
  margin-top: 3px;
}
.nav-logo small {
  display: block;
  font-size: 9px;
  color: #777;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-top: 6px;
}
.main-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  padding: 6px 10px;
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav .nav-link:hover {
  color: #2e7d32;
}
.nav-menu {
  position: relative;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  width: 230px;
  background: #fff;
  border: 1px solid #e4edf8;
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(26, 60, 110, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #1a3c6e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
}
.nav-dropdown-panel a:hover {
  background: #eef7ff;
  color: #2e7d32;
}
.nav-actions {
  position: relative;
  flex-shrink: 0;
}
.search-toggle {
  background: #fff;
  border: 1px solid #d9e3ef;
  color: #111;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  flex: 0 0 40px;
}
.search-toggle:hover {
  background: #eef5ff;
  color: #2e7d32;
}
.nav-search-form {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scaleX(0.96);
  transform-origin: right center;
  width: clamp(260px, 38vw, 520px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 1200;
}
.nav-search-form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scaleX(1);
}
.nav-search-form input {
  width: 100%;
  height: 44px;
  border: 2px solid #1a3c6e;
  border-radius: 8px;
  padding: 0 44px 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: #1a3c6e;
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.14);
  outline: none;
}
.nav-search-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  background: #eef5ff;
  color: #1a3c6e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav.search-open .nav-menu {
  opacity: 0;
  visibility: hidden;
}
.btn-ddshop {
  background: #2e7d32;
  color: #fff;
  border: 2px solid #2e7d32;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 0.32s ease,
    color 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  white-space: nowrap;
  min-height: 40px;
  height: 40px;
}
.btn-ddshop:hover {
  background: #fff;
  color: #2e7d32;
  border-color: #2e7d32;
  box-shadow: 0 6px 14px rgba(46, 125, 50, 0.16);
  transform: translateY(-1px);
}
.mobile-only,
.trust-item.mobile-only {
  display: none;
}

/* HERO SECTION WITH LAYERED BACKGROUND PATTERN */
.hero-section {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.02) 55%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("../../building3-sky.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 20px 0 8px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  display: none;
}
.hero-section .container-fluid {
  position: relative;
  z-index: 1;
}
.hero-section .row {
  position: relative;
  min-height: 438px;
  align-items: flex-start !important;
  padding-top: 15px;
}
.hero-section .row > .col-lg-6:first-child {
  position: relative;
  z-index: 2;
}
.hero-section .row > .col-lg-6:nth-child(2) {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.hero-section h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1a3c6e;
  line-height: 1.2;
  margin-bottom: 15px;
}
.hero-section .tagline {
  color: #2e7d32;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}
.hero-section p {
  color: #4a5568;
  line-height: 1.7;
}
.hero-section p.mb-4 {
  font-size: 16px;
  line-height: 1.65;
  max-width: 670px;
}

.hero-actions {
  gap: 18px !important;
}
.btn-explore {
  background: #1a3c6e;
  color: #fff;
  border: 2px solid #1a3c6e;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  transition:
    background-color 0.34s ease,
    color 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease;
}
.btn-explore:hover {
  background: #fff;
  color: #1a3c6e;
  border-color: #1a3c6e;
  box-shadow: 0 6px 14px rgba(26, 60, 110, 0.16);
  transform: translateY(-1px);
}
.btn-view-prod {
  background: #fff;
  color: #1a3c6e;
  border: 2px solid #1a3c6e;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
  transition:
    background-color 0.34s ease,
    color 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease;
}
.btn-view-prod:hover {
  background: #1a3c6e;
  color: #fff;
  border-color: #1a3c6e;
  box-shadow: 0 6px 14px rgba(26, 60, 110, 0.16);
  transform: translateY(-1px);
}
.btn-shop-hero {
  background: #2e7d32;
  color: #fff;
  border: 2px solid #2e7d32;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  transition:
    background-color 0.34s ease,
    color 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease;
}
.btn-shop-hero:hover {
  background: #fff;
  color: #2e7d32;
  border-color: #2e7d32;
  box-shadow: 0 6px 14px rgba(46, 125, 50, 0.16);
  transform: translateY(-1px);
}
.btn-explore,
.btn-view-prod,
.btn-shop-hero,
.btn-ddshop,
.btn-cta-green {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-actions .btn-explore,
.hero-actions .btn-view-prod,
.hero-actions .btn-shop-hero,
.main-nav .btn-ddshop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}
.hero-actions .btn-explore i,
.hero-actions .btn-view-prod i,
.hero-actions .btn-shop-hero i,
.main-nav .btn-ddshop i {
  margin: 0 !important;
  line-height: 1;
}
.btn-explore::before,
.btn-shop-hero::before,
.btn-ddshop::before,
.btn-cta-green::before,
.btn-view-prod::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  width: calc(100% + 42px);
  z-index: -1;
  border-radius: 6px 999px 999px 6px;
  transform: translateX(0);
  transition: transform 0.82s cubic-bezier(0.42, 0, 0.16, 1);
}
.btn-explore,
.btn-shop-hero,
.btn-ddshop,
.btn-cta-green {
  background: transparent;
}
.btn-explore::before {
  background: #1a3c6e;
}
.btn-shop-hero::before,
.btn-ddshop::before,
.btn-cta-green::before {
  background: #2e7d32;
}
.btn-explore:hover,
.btn-shop-hero:hover,
.btn-ddshop:hover,
.btn-cta-green:hover {
  background: transparent;
}
.btn-explore:hover::before,
.btn-shop-hero:hover::before,
.btn-ddshop:hover::before,
.btn-cta-green:hover::before {
  transform: translateX(-106%);
}
.btn-view-prod {
  background: transparent;
}
.btn-view-prod::before {
  background: #1a3c6e;
  transform: translateX(-106%);
}
.btn-view-prod:hover {
  background: transparent;
}
.btn-view-prod:hover::before {
  transform: translateX(0);
}
.hero-actions .btn-explore {
  padding: 0 20px;
  min-width: 210px;
  min-height: 54px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 5px 12px rgba(26, 60, 110, 0.2);
}
.hero-actions .btn-view-prod {
  border-color: rgba(26, 60, 110, 0.5);
  padding: 0 20px;
  min-width: 128px;
  min-height: 54px;
  font-size: 14px;
  font-weight: 700;
}
.hero-actions .btn-shop-hero {
  padding: 0 18px;
  min-width: 112px;
  min-height: 54px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 5px 12px rgba(46, 125, 50, 0.2);
}

.hero-trust-icons {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
  background: transparent;
  padding: 8px 18px;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
}
.trust-item + .trust-item {
  border-left: 2px solid rgba(26, 60, 110, 0.12);
  padding-left: 24px;
}
.trust-item i {
  color: #1a3c6e;
  font-size: 25px;
}
.trust-item strong {
  display: block;
  color: #1a3c6e;
  font-size: 19px;
  line-height: 1.08;
  font-weight: 800;
}

/* TRUE BORDERLESS PERFECT CIRCLE HERO CARD IMAGE */
.hero-img-container {
  display: block;
  position: absolute;
  top: 44px;
  left: 45.8%;
  width: 380px;
  height: 560px;
  max-width: none;
  margin: 0;
  padding: 0;
  animation: none;
  pointer-events: none;
}
.hero-circle-wrap {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(26, 60, 110, 0.12);
  border: 10px solid rgba(255, 255, 255, 0.58);
  outline: 2px solid rgba(199, 224, 246, 0.72);
  background-color: #cbd5e1;
}
.hero-circle-wrap::before {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 0 0 24px rgba(210, 231, 247, 0.18);
  z-index: 2;
  pointer-events: none;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating circle badges tracing circle arc path configuration */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow:
    0 14px 28px rgba(26, 60, 110, 0.16),
    inset 0 0 18px rgba(219, 235, 246, 0.72);
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #1a3c6e;
  text-align: center;
  padding: 6px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.85);
}
.floating-badge i {
  font-size: 24px;
  color: #2e7d32;
  margin-bottom: 3px;
}

.fb-innovation {
  top: -7%;
  left: 202px;
  width: 106px;
  height: 106px;
  font-size: 15px;
}
.fb-innovation i,
.fb-innovation .dd-svg-icon {
  font-size: 31px;
  width: 31px;
  height: 31px;
}
.fb-quality {
  top: 18%;
  left: 146px;
  width: 94px;
  height: 94px;
  font-size: 13px;
}
.fb-quality i,
.fb-quality .dd-svg-icon {
  font-size: 28px;
  width: 28px;
  height: 28px;
}
.fb-trust {
  top: 40%;
  left: 222px;
  width: 86px;
  height: 86px;
  font-size: 12px;
}
.fb-trust i,
.fb-trust .dd-svg-icon {
  font-size: 25px;
  width: 25px;
  height: 25px;
}
.fb-care {
  top: 42%;
  left: 286px;
  width: 70px;
  height: 70px;
  font-size: 10px;
}
.fb-care i,
.fb-care .dd-svg-icon {
  font-size: 21px;
  width: 21px;
  height: 21px;
}

/* FLOATING CARD STATS BAR */
.stats-bar-outer {
  margin-top: 8px;
  position: relative;
  z-index: 30;
}
.stats-bar-card {
  background: #1a3c6e;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(26, 60, 110, 0.16);
}
.stat-title-header {
  display: none;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #9db8d9;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}
.stat-item {
  text-align: center;
  padding: 6px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.stat-label {
  font-size: 13.5px;
  color: #fff;
  margin-top: 3px;
  font-weight: 400;
}
.stat-icon {
  font-size: 30px;
  color: #fff;
  margin-bottom: 6px;
}

/* DIVISIONS SECTION */
.divisions-section {
  padding: 58px 0;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}
.section-tag {
  font-size: 12px;
  font-weight: 700;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a3c6e;
  margin-bottom: 12px;
}
.section-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 28px;
}

/* Centric equal-distribution grid for 5 divisions */
.divisions-slider-wrap {
  position: relative;
}
.divisions-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-bottom: 4px;
}

/* Each card */
.division-card {
  --division-color: #0b4ba0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: block;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.division-card:nth-child(2) {
  --division-color: #168d47;
}
.division-card:nth-child(3) {
  --division-color: #0b8a96;
}
.division-card:nth-child(4) {
  --division-color: #4d8d2f;
}
.division-card:nth-child(5) {
  --division-color: #2f6078;
}
.division-card:nth-child(6) {
  --division-color: #77539a;
}
.division-card:nth-child(7) {
  --division-color: #2d7f70;
}
.division-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(26, 60, 110, 0.18);
}
.division-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.division-card:hover img {
  transform: scale(1.07);
}
.division-card .dc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(9, 22, 40, 0) 0%,
    rgba(9, 22, 40, 0.08) 34%,
    rgba(9, 22, 40, 0.22) 100%
  );
}
.division-card .dc-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--division-color) 94%, #000 6%) 0%,
    color-mix(in srgb, var(--division-color) 70%, #0f2447 30%) 100%
  );
  clip-path: polygon(
    0 34%,
    10% 32.5%,
    20% 31.7%,
    30% 31.4%,
    40% 31.8%,
    50% 33.1%,
    60% 35.3%,
    70% 38.3%,
    80% 42.1%,
    90% 46.8%,
    100% 52%,
    100% 100%,
    0 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  opacity: 0.97;
}
.division-card .dc-overlay::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 35%;
  height: 22%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  border-radius: 50%;
  transform: rotate(4deg);
  opacity: 0.26;
  z-index: 2;
}
.division-card .dc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 22px;
  color: #fff;
  z-index: 2;
  min-height: 58%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.division-card .dc-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: 0;
}
.division-card .dc-title span {
  display: block;
}
.division-card .dc-desc {
  font-size: 12px;
  opacity: 0.92;
  line-height: 1.5;
  margin-bottom: 18px;
  height: 58px;
  overflow: hidden;
}
.division-card .dc-btn {
  width: min(100%, 178px);
  height: 44px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 0 15px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1;
  box-shadow: none;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.division-card .dc-btn i {
  font-size: 18px;
  line-height: 1;
  margin-left: auto;
}
.division-card:hover .dc-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.68);
  transform: translateY(-1px);
}

/* Hide slider nav arrows (no longer needed) */
.slider-nav-btn {
  display: none;
}
.divisions-slider-wrap.has-slider {
  padding: 0 50px;
}
.divisions-slider-wrap.has-slider .divisions-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 16px;
  scrollbar-width: none;
}
.divisions-slider-wrap.has-slider .divisions-slider::-webkit-scrollbar {
  display: none;
}
.divisions-slider-wrap.has-slider .division-card {
  flex: 0 0 calc((100% - 64px) / 5);
  scroll-snap-align: start;
}
.divisions-slider-wrap.has-slider .slider-nav-btn {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d8e4f3;
  background: #fff;
  color: #1a3c6e;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(26, 60, 110, 0.12);
  z-index: 5;
}
.divisions-slider-wrap.has-slider .slider-nav-btn:hover {
  background: #1a3c6e;
  color: #fff;
}
.divisions-slider-wrap.has-slider .slider-nav-prev {
  left: 0;
}
.divisions-slider-wrap.has-slider .slider-nav-next {
  right: 0;
}

/* WHY TRUST SECTION */
.why-section {
  padding: 44px 0;
  background: #fff;
}
.why-section .row {
  align-items: center;
}
.why-section .ps-lg-2 {
  padding-top: 24px;
}
.why-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
  height: 100%;
  min-height: 360px;
  position: relative;
  background: #fff;
}
.why-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.why-img-box:hover img {
  transform: scale(1.03);
}
.why-img-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 34%;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.72) 52%,
    #fff 100%
  );
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.why-img-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.55)
  );
  pointer-events: none;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 26px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  transition: all 0.2s;
  cursor: default;
}
.feature-item:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.feature-item:hover .feature-icon {
  background: transparent;
}
.feature-item:hover .feature-icon i {
  color: #1a3c6e;
}
.feature-icon i {
  color: #1a3c6e;
  font-size: 35px;
  transition: color 0.2s;
}
.dd-svg-icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.125em;
}
.floating-badge .dd-svg-icon {
  width: 24px;
  height: 24px;
  color: #2e7d32;
  margin-bottom: 3px;
}
.feature-icon .dd-svg-icon {
  color: #1a3c6e;
  font-size: 35px;
  transition: color 0.2s;
}
.feature-item:hover .feature-icon .dd-svg-icon {
  color: #1a3c6e;
}
.enquiry-list li .el-left .dd-svg-icon {
  color: #1a3c6e;
  font-size: 16px;
  flex-shrink: 0;
}
.feature-text strong {
  font-size: 15px;
  color: #6c757d;
  display: block;
  font-weight: 800;
  line-height: 1.35;
}

.commitment-card {
  background: linear-gradient(135deg, #eef8ff 0%, #e9f8ff 58%, #f6fcff 100%);
  border-radius: 16px;
  padding: 25px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #d8e8f8;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.commitment-card blockquote {
  position: relative;
  font-size: 14.5px;
  color: #4a5568;
  font-style: italic;
  line-height: 1.65;
  border-left: 0;
  padding-left: 0;
  margin: 52px 0 12px;
  max-width: 270px;
}
.commitment-card blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 1;
  color: #83c6d3;
  font-style: normal;
  font-weight: 800;
  opacity: 0.9;
}
.commitment-card .commitment-btn {
  width: auto !important;
  min-width: 190px;
  justify-content: space-between;
  text-align: left;
}

/* SHOP & BUSINESS ENQUIRIES - RE-CALIBRATED COMPACT HEIGHT WITH BLUISH TONE TINT BACKGROUNDS */
.shop-enquiry-section {
  padding: 26px 0;
  background: #fff;
}
.shop-enquiry-section .container-fluid {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.shop-enquiry-section .row {
  --bs-gutter-x: 20px;
}
@media (min-width: 992px) {
  .shop-enquiry-section .shop-panel-col {
    flex: 0 0 51.5%;
    max-width: 51.5%;
  }
  .shop-enquiry-section .enquiry-panel-col {
    flex: 0 0 48.5%;
    max-width: 48.5%;
  }
}

/* DD Shop Half: Compact Padding & Adjusted Watermark size to minimize layout height */
.shop-half {
  background-color: #edf7f1;
  padding: 17px 22px 62px;
  border-radius: 12px;
  height: 100%;
  min-height: 248px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, #edf7f1 0%, #edf7f1 37%, rgba(237, 247, 241, 0.46) 49%, rgba(237, 247, 241, 0) 66%),
    url("../images/bottle-image.png");
  background-size:
    100% 100%,
    70% calc(100% - 52px);
  background-position:
    center,
    right 2px top 0;
  background-repeat: no-repeat, no-repeat;
}
.shop-label {
  font-size: 10px;
  font-weight: 700;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.shop-title {
  position: relative;
  z-index: 2;
  font-size: 21px;
  font-weight: 800;
  color: #1a3c6e;
  margin: 4px 0 8px;
  line-height: 1.18;
  max-width: 42%;
}
.shop-half .btn-shop-hero {
  margin-top: 10px !important;
  padding: 10px 22px;
  font-size: 13.5px;
}
.shop-features {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 13px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}
.shop-feat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  font-size: 10.5px;
  line-height: 1.2;
  color: #111;
  font-weight: 700;
  padding: 0 12px;
  text-align: left;
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}
.shop-feat:last-child {
  border-right: 0;
}
.shop-feat i {
  color: #111;
  font-size: 18px;
  flex: 0 0 auto;
}
.shop-desc {
  max-width: 42%;
  font-size: 13.5px;
  line-height: 1.5;
}

/* Business Enquiries Half: White card, content left, lady image overlapping right */
.enquiry-half {
  background-color: #eef7ff;
  background-image:
    linear-gradient(
      90deg,
      rgba(238, 247, 255, 0.98) 0%,
      rgba(238, 247, 255, 0.92) 48%,
      rgba(224, 241, 252, 0.74) 100%
    ),
    linear-gradient(
      90deg,
      rgba(238, 247, 255, 0.96) 0%,
      rgba(238, 247, 255, 0.86) 44%,
      rgba(238, 247, 255, 0.2) 100%
    ),
    url("../images/business-enquiry-woman.jpg"),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(210, 235, 248, 0.8));
  background-size: cover, cover, cover, cover;
  background-position:
    center,
    center,
    right center,
    center;
  border-radius: 12px;
  border: 1px solid #deeafc;
  padding: 15px 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 248px;
}
.enquiry-half .enq-bg-img {
  position: absolute;
  top: 0;
  right: -164px;
  bottom: auto;
  height: 106%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right top;
  z-index: 1;
  pointer-events: none;
}
.enquiry-half .enq-overlay {
  display: none;
}
.enquiry-half > *:not(.enq-bg-img):not(.enq-overlay) {
  position: relative;
  z-index: 2;
}
.enquiry-label {
  font-size: 22px;
  font-weight: 800;
  color: #1a3c6e;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 8px;
}
.enquiry-title {
  font-size: 13.5px;
  font-weight: 400;
  color: #333;
  margin: 0 0 12px;
  max-width: 52%;
  line-height: 1.4;
}
.enquiry-subtitle {
  display: none;
}
.enquiry-list {
  list-style: none;
  padding: 6px 10px;
  margin: 0;
  position: relative;
  z-index: 5;
  max-width: 52%;
  background: rgba(238, 247, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  box-shadow: none;
}
.enquiry-list li {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 6px;
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}
.enquiry-list li:last-child {
  border-bottom: 0;
}
.enquiry-list li:hover {
  border-color: rgba(255, 255, 255, 0.82);
  transform: translateX(4px);
  box-shadow: none;
}
.enquiry-list li .el-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 800;
  color: #333;
  flex: 1;
}
.enquiry-list li .el-left i {
  color: #1a3c6e;
  font-size: 18px;
}
.enquiry-list li i.bi-chevron-right {
  margin-left: auto;
  color: #5d6b7a;
  font-size: 15px;
}

/* COMBINED ROW FOR LEADERSHIP & NEWS UPDATES */
.combined-info-section {
  padding: 40px 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.combined-info-section .container-fluid,
.cta-section .container-fluid {
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
}
.cta-section .container-fluid {
  padding-left: clamp(48px, 8vw, 150px) !important;
  padding-right: clamp(48px, 8vw, 150px) !important;
}
.info-block-card {
  background: #eef3fb;
  border-radius: 20px;
  border: none;
  padding: 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}
.news-info-card {
  padding-top: 18px;
  padding-bottom: 18px;
}
.news-info-card .info-card-left {
  padding-top: 10px;
  padding-bottom: 10px;
}
.info-card-left {
  flex: 0 0 205px;
  display: flex;
  flex-direction: column;
}
.info-card-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-section-tag-green {
  font-size: 13px;
  font-weight: 700;
  color: #2e7d32;
  text-transform: capitalize;
  letter-spacing: 0;
  margin-bottom: 8px;
  white-space: nowrap;
}
.info-section-title {
  font-size: 21px;
  font-weight: 800;
  color: #1a3c6e;
  line-height: 1.25;
  margin-bottom: 10px;
  min-height: 53px;
}
.info-section-desc {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 0;
}
.info-card-btn-wrap {
  margin-top: auto;
  padding-top: 18px;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.btn-meet-blue {
  background: #1a3c6e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 180px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-meet-blue:hover {
  background: #0f2447;
  color: #fff;
}

/* Leadership photos — 3 portrait cards */
.leader-grid-row {
  display: flex;
  gap: 10px;
  width: 100%;
}
.leader-slide {
  display: none;
}
.leader-slide.active {
  display: flex;
}
.leader-mini-profile {
  text-align: center;
  flex: 1;
}
.leader-avatar-frame {
  width: 100%;
  aspect-ratio: 3 / 3.8;
  border-radius: 12px;
  overflow: hidden;
  background: #c8d5e8;
  margin-bottom: 7px;
}
.leader-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.leader-mini-name {
  font-size: 12px;
  font-weight: 700;
  color: #1a3c6e;
  line-height: 1.25;
  margin-bottom: 1px;
}
.leader-mini-role {
  font-size: 10.8px;
  color: #6c757d;
  font-weight: 500;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
  align-self: stretch;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5cfe0;
  transition: all 0.2s;
  cursor: pointer;
}
.dot.active {
  background: #1a3c6e;
  width: 20px;
  border-radius: 4px;
}

/* News rows */
.info-block-card .news-mini-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
  width: 100%;
  height: 100%;
  margin-top: 0;
}
.info-block-card .news-mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-height: 86px;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
  border-radius: 8px;
  padding: 12px 12px;
  box-shadow: 0 4px 14px rgba(26, 60, 110, 0.04);
}
.news-mini-row:hover .news-mini-title {
  color: #000;
}
.news-mini-img-frame {
  width: 102px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #cbd5e1;
}
.news-mini-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-mini-content {
  flex-grow: 1;
  min-width: 0;
}
.news-mini-title {
  font-size: 13.2px;
  font-weight: 700;
  color: #000;
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color 0.15s;
}
.news-mini-date {
  font-size: 11.5px;
  color: #000;
  font-weight: 500;
}

/* OFF-CANVAS RESPONSIVE MENU */
.mobile-sidebar {
  background-color: #fff;
  width: 290px !important;
}
.mobile-sidebar-header {
  background-color: #1a3c6e;
  color: #fff;
  padding: 15px;
}
.mobile-sidebar-body {
  padding: 0;
}
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-item {
  border-bottom: 1px solid #edf2f7;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.mobile-submenu-toggle {
  width: 100%;
  border: 0;
  background: #fff;
  justify-content: space-between;
  text-align: left;
}
.mobile-submenu-toggle span {
  display: flex;
  align-items: center;
}
.mobile-sidebar-body .mobile-menu-link i:first-child {
  margin-right: 12px;
  color: #1a3c6e;
  font-size: 16px;
}
.mobile-menu-list .mobile-menu-link .bi-chevron-right,
.mobile-menu-list .mobile-menu-link .bi-chevron-down {
  color: #a0aec0;
  margin-left: auto;
  font-size: 12px;
}
.mobile-submenu-toggle[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}
.mobile-submenu {
  background: #f5f9ff;
  border-top: 1px solid #edf2f7;
  padding: 6px 0 8px;
}
.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 48px;
  color: #1a3c6e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.mobile-submenu a:hover {
  background: #eaf3ff;
  color: #2e7d32;
}
.mobile-submenu i,
.mobile-submenu .dd-svg-icon {
  width: 16px;
  font-size: 16px;
  color: #2e7d32;
  flex-shrink: 0;
}
.mobile-menu-link.active-shop {
  color: #2e7d32;
}
.mobile-menu-link.active-shop i:first-child {
  color: #2e7d32;
}
.mobile-menu-footer {
  display: none;
}

@media (max-width: 991px) {
  .mobile-sidebar {
    --bs-offcanvas-width: 100vw;
    width: 100vw !important;
    max-width: 100vw;
    top: 0;
    height: 100dvh;
    height: 100vh;
    border: 0;
    overflow: hidden;
    z-index: 3000;
  }
  .offcanvas-backdrop {
    z-index: 2990;
  }
  body:has(#mobileSidebar.show) {
    overflow: hidden;
  }
  .mobile-sidebar-body {
    height: calc(100% - 76px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

/* CTA */
.cta-section {
  background: var(--dd-blue);
  padding: 38px 0;
  color: #fff;
}
.cta-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.cta-section p {
  color: #9db8d9;
  max-width: 620px;
  margin: 0 0 22px;
  font-size: 13px;
}
.btn-cta-white {
  background: #fff;
  color: #1a3c6e;
  border: 0;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 700;
  box-shadow: none;
}
.btn-cta-outline {
  background: #163f80;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 700;
  box-shadow: none;
}
.btn-cta-green {
  background: transparent;
  color: #fff;
  border: 2px solid #2e7d32;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 700;
  box-shadow: none;
  transition:
    background-color 0.34s ease,
    color 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease;
}
.btn-cta-green .bi-cart2 {
  font-size: 1.28em;
  line-height: 1;
  vertical-align: -0.12em;
}
.btn-cta-green:hover {
  background: transparent;
  color: #2e7d32;
  border-color: #2e7d32;
  box-shadow: 0 6px 14px rgba(46, 125, 50, 0.16);
  transform: translateY(-1px);
}

.cta-trust-icons {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  margin-top: 0;
  flex-wrap: wrap;
}
.cta-trust-item {
  text-align: center;
  color: #cfe1f5;
  font-size: 11px;
  width: 112px;
}
.cta-trust-item i {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 24px;
  color: #cfe1f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #06162c 0%, #082852 52%, #06234a 100%);
  color: #c8d8ee;
  padding: 46px 0 0;
  border-top: 4px solid rgba(46, 125, 50, 0.85);
}
.footer-logo {
  width: 310px;
  max-width: 100%;
  text-align: center;
}
.footer-logo .logo-mark {
  line-height: 0.86;
  text-align: center;
  width: 100%;
  margin: 0 auto 18px;
}
.footer-logo .logo-dd {
  display: block;
  width: 210px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -8px;
  transform: translateX(-52px);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}
.footer-logo .logo-group {
  display: block;
  width: 210px;
  margin: 3px auto 0;
  padding-left: 8px;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 8px;
  transform: translateX(-52px);
}
.footer-logo small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4.2px;
  margin-top: 14px;
  white-space: nowrap;
  text-align: left;
  text-transform: uppercase;
}
.footer .row {
  align-items: stretch;
}
.footer .row > [class*="col-"] {
  position: relative;
}
.footer .col-lg-3:first-child .footer-logo {
  margin-left: 0;
}
.footer .row > [class*="col-"]:not(:first-child) {
  border-left: 2px solid rgba(157, 184, 217, 0.24);
  padding-left: 42px;
}
.footer h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer p {
  font-size: 13px;
  line-height: 1.75;
  color: #c8d8ee;
  margin-bottom: 0;
  max-width: 310px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li a {
  color: #c8d8ee;
  text-decoration: none;
  font-size: 13px;
  line-height: 2.2;
  display: block;
}
.footer ul li a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b3d88;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.footer-social a:nth-child(1) {
  color: #1877f2;
}
.footer-social a:nth-child(2) {
  color: #0a66c2;
}
.footer-social a:nth-child(3) {
  color: #ff0000;
}
.footer-social a:nth-child(4) {
  color: #e4405f;
}
.footer-social a:nth-child(5) {
  color: #111;
}
.footer-social a:hover {
  transform: translateY(-2px);
}
.footer-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #d9e7f6;
}
.footer-contact-row i {
  font-size: 18px;
  color: #d9e7f6;
  margin-top: 2px;
}
.footer-bottom {
  background: rgba(3, 17, 37, 0.68);
  padding: 10px 0;
  margin-top: 28px;
  font-size: 12px;
  color: #d9e7f6;
  border-top: 2px solid rgba(157, 184, 217, 0.18);
}
.footer-bottom a {
  color: #d9e7f6;
  text-decoration: none;
  margin: 0 10px;
}
.footer-bottom a:hover {
  color: #fff;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.footer-credit {
  margin-left: auto;
  font-weight: 700;
  color: #d9e7f6;
}

/* ACCESSIBILITY BOTTOM BAR */
.bottom-acc-bar {
  background: #fff;
  padding: 0;
  font-size: 12px;
  border-top: 2px solid #d8e2ef;
  box-shadow: 0 -3px 12px rgba(8, 40, 82, 0.08);
}
.bottom-acc-bar .container-fluid {
  min-height: 58px;
}
.bottom-acc-bar button {
  background: #fff;
  border: 0;
  border-right: 2px solid #d6e1ee;
  color: #1a3c6e;
  padding: 14px 28px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  transition: all 0.2s;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.bottom-acc-bar button:first-child {
  border-left: 0;
}
.bottom-acc-bar button:last-child {
  border-right: 0;
}
.bottom-acc-bar button:hover {
  background: #eef5ff;
  color: #0f2447;
}
.bottom-acc-bar button i {
  font-size: 18px;
  margin: 0;
  color: #315e9d;
}

/* =============================================
   RESPONSIVE LAYOUT ENGINE
   XL Desktop / Mac  : ≥1400px  → 5-col divisions, full layout
   Large PC          : 1200–1399px → 5-col divisions
   Laptop / iPad Pro : 992–1199px  → 3-col divisions, adjusted hero
   Tablet            : 768–991px   → 2-col divisions, stacked sections
   Mobile L          : 576–767px   → 2-col divisions, compact hero
   Mobile S          : <576px      → 1-col divisions, full stack
   ============================================= */

/* ---- XL / Mac (≥1400px) ---- */
@media (min-width: 1400px) {
  .hero-section h1 {
    font-size: 48px;
  }
  .hero-section {
    padding: 20px 0 6px;
    background-size: auto 548px;
    background-position: center top;
  }
  .hero-section .row {
    min-height: 424px;
    padding-top: 22px;
  }
  .division-card {
    height: 330px;
  }
  .stats-bar-card {
    padding: 14px 22px;
  }
  .stat-num {
    font-size: 32px;
  }
}

/* ---- Large PC / Laptop (1200–1399px) ---- */
@media (max-width: 1399px) and (min-width: 1200px) {
  .divisions-slider {
    grid-template-columns: repeat(5, 1fr);
  }
  .division-card {
    height: 300px;
  }
}

/* ---- Laptop / iPad Pro (992–1199px) ---- */
@media (max-width: 1199px) {
  :root {
    --page-gutter: 36px;
  }
  .hero-section h1 {
    font-size: 36px;
  }
  .hero-section {
    padding: 28px 0 70px;
    background-size: auto 100%;
    background-position: center top;
  }
  .hero-section .row {
    min-height: 460px;
    padding-top: 24px;
  }
  .hero-img-container {
    left: 46%;
    top: 12px;
    transform: scale(0.9);
    transform-origin: top left;
  }
  .main-nav .nav-link {
    font-size: 12px;
    padding: 6px 6px;
  }
  .nav-menu {
    gap: 0 !important;
  }
  .nav-actions {
    gap: 10px !important;
  }
  .btn-ddshop {
    padding: 8px 14px;
    font-size: 12px;
  }
  .shop-half {
    background-image:
      linear-gradient(
        90deg,
        #edf7f1 0%,
        #edf7f1 38%,
        rgba(237, 247, 241, 0.34) 50%,
        rgba(237, 247, 241, 0) 68%
      ),
      url("../images/bottle-image.png") !important;
    background-size:
      100% 100%,
      70% calc(100% - 52px);
    background-position:
      center,
      right 2px top 0;
    background-color: #edf7f1 !important;
  }
  .shop-title,
  .shop-desc {
    max-width: 45%;
  }
  .shop-features {
    max-width: none;
    margin-top: 0;
  }
  .shop-feat {
    gap: 7px;
    padding: 0 10px;
    font-size: 10.5px;
  }
  .enquiry-list {
    max-width: 54%;
    margin-top: 16px;
  }
  .enquiry-title {
    max-width: 54%;
  }
  .enquiry-half .enq-bg-img {
    top: 0;
    right: -170px;
    bottom: auto;
    height: 106%;
    width: auto;
    object-position: right top;
  }
  .divisions-slider {
    grid-template-columns: repeat(3, 1fr);
  }
  .division-card {
    height: 280px;
  }
  .info-block-card {
    flex-direction: column;
    gap: 16px;
  }
  .info-card-left {
    flex: none;
  }
  .leader-grid-row {
    gap: 8px;
  }
  .divisions-slider-wrap.has-slider .division-card {
    flex-basis: calc((100% - 32px) / 3);
  }
  .nav-search-form {
    width: clamp(240px, 34vw, 390px);
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ---- Tablet portrait / landscape (768–991px) ---- */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    padding: 36px 0 50px;
    background-position: center top;
  }
  .hero-section h1 {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section .tagline,
  .hero-section p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-icons {
    justify-content: center;
  }
  .hero-img-container {
    display: none;
    max-width: 430px;
    margin: 34px auto 0;
    padding-left: 64px;
  }
  .stats-bar-outer {
    margin-top: 30px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 10px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .floating-badge {
    width: 70px;
    height: 70px;
    font-size: 10px;
  }
  .floating-badge i {
    font-size: 19px;
  }
  .hero-img-container {
    margin-left: auto;
    margin-right: 0;
    padding-left: 64px;
  }
  .fb-innovation {
    left: 32px;
    top: 5%;
    width: 82px;
    height: 82px;
    font-size: 12px;
  }
  .fb-innovation i,
  .fb-innovation .dd-svg-icon {
    font-size: 23px;
    width: 23px;
    height: 23px;
  }
  .fb-quality {
    left: -34px;
    top: 29%;
    width: 74px;
    height: 74px;
    font-size: 10.5px;
  }
  .fb-trust {
    left: -4px;
    top: 54%;
    width: 68px;
    height: 68px;
    font-size: 10px;
  }
  .fb-care {
    left: 30px;
    top: 78%;
    bottom: auto;
    width: 62px;
    height: 62px;
    font-size: 9px;
  }
  .divisions-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .division-card {
    height: 260px;
  }
  /* Shop & enquiry stack */
  .shop-half,
  .enquiry-half {
    padding: 16px 16px;
  }
  .shop-half {
    padding: 17px 20px 62px;
    background-size:
      100% 100%,
      70% calc(100% - 52px);
    background-position:
      center,
      right 2px top 0;
    background-color: #edf7f1 !important;
    background-image:
      linear-gradient(
        90deg,
        #edf7f1 0%,
        #edf7f1 38%,
        rgba(237, 247, 241, 0.34) 50%,
        rgba(237, 247, 241, 0) 68%
      ),
      url("../images/bottle-image.png") !important;
  }
  .shop-title,
  .shop-desc {
    max-width: 43%;
  }
  .shop-features {
    left: 20px;
    right: 20px;
    bottom: 13px;
    border-radius: 0;
    margin: 0;
    max-width: none;
  }
  .enquiry-list {
    max-width: 56%;
  }
  .enquiry-title {
    max-width: 56%;
  }
  .enquiry-subtitle {
    max-width: 100%;
  }
  .enquiry-half .enq-bg-img {
    top: 0;
    height: 104%;
    width: auto;
    max-width: none;
    opacity: 1;
    right: -164px;
    bottom: auto;
  }
  /* Leadership & News stack */
  .info-block-card {
    flex-direction: column;
    gap: 14px;
  }
  .info-card-left {
    flex: none;
  }
  .leader-grid-row {
    gap: 8px;
  }
  /* CTA */
  .cta-section {
    text-align: center;
  }
  .cta-section h2 {
    font-size: 24px;
  }
  .cta-section p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-trust-icons {
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
  }
  /* Footer */
  .footer {
    padding: 40px 0 0;
  }
  .footer .row > [class*="col-"]:not(:first-child) {
    border-left: 0;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .footer-credit {
    margin-left: 0;
  }
  /* Stats layout: 3 across on tablet */
  .stats-bar-card .row .col-6 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .divisions-slider-wrap.has-slider .division-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

/* ---- Mobile landscape / large phone (576–767px) ---- */
@media (max-width: 767px) {
  :root {
    --page-gutter: 16px;
  }
  .hero-section {
    text-align: center;
    padding: 34px 0 52px;
  }
  .hero-section h1 {
    font-size: 28px;
  }
  .hero-section .tagline {
    font-size: 15px;
  }
  .hero-section::before {
    width: 100%;
    background-position: left -120px top -130px;
    opacity: 0.34;
  }
  .hero-actions {
    gap: 12px !important;
  }
  .hero-actions .btn-explore,
  .hero-actions .btn-view-prod,
  .hero-actions .btn-shop-hero {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    font-size: 14px;
    padding: 12px 18px;
  }
  .hero-trust-icons {
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .trust-item {
    font-size: 10px;
    padding: 6px 6px;
    gap: 5px;
  }
  .trust-item + .trust-item {
    border-left: 0;
    padding-left: 10px;
  }
  .trust-item i {
    font-size: 15px;
  }
  .hero-img-container {
    display: none;
    margin-top: 36px;
    max-width: 300px;
    padding-left: 0;
  }
  /* Floating badges hidden on small screens to avoid clutter */
  .floating-badge {
    display: none;
  }
  /* Stats 2-across */
  .stats-bar-card .row .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .stat-num {
    font-size: 24px;
  }
  /* Divisions 2-col */
  .divisions-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .division-card {
    height: 240px;
  }
  .division-card .dc-title {
    font-size: 13px;
  }
  /* Section headings */
  .section-title {
    font-size: 24px;
  }
  /* Why section stack */
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Shop & enquiry */
  .shop-half,
  .enquiry-half {
    padding: 22px 18px;
  }
  .shop-features {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 14px;
    max-width: 100%;
  }
  .shop-title,
  .enquiry-title {
    font-size: 20px;
    max-width: 100%;
  }
  .enquiry-list {
    max-width: 100%;
  }
  .enquiry-subtitle {
    max-width: 100%;
  }
  .shop-desc {
    max-width: 100%;
  }
  .enquiry-half .enq-bg-img {
    display: none;
  }
  /* Leadership & news */
  .info-block-card {
    flex-direction: column;
    gap: 12px;
  }
  .info-card-left {
    flex: none;
  }
  .leader-grid-row {
    gap: 6px;
  }
  .leader-avatar-frame {
    aspect-ratio: 3/3.2;
  }
  .news-mini-img-frame {
    width: 60px;
    height: 46px;
  }
  .news-mini-title {
    font-size: 11px;
  }
  /* CTA */
  .cta-section {
    padding: 40px 0;
  }
  .cta-section h2 {
    font-size: 24px;
  }
  .cta-trust-icons {
    gap: 16px;
    margin-top: 24px;
  }
  /* Footer 2-col */
  .footer .col-lg-3,
  .footer .col-lg-2 {
    margin-bottom: 10px;
  }
  /* Acc bar wrap */
  .acc-bar .d-flex {
    flex-wrap: wrap;
    gap: 4px;
  }
  /* Bottom acc bar */
  .bottom-acc-bar button {
    padding: 12px 16px;
    font-size: 11px;
    min-height: 52px;
  }

  body {
    background: #fff;
  }
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  section,
  .container-fluid,
  .row {
    max-width: 100%;
  }
  .mobile-only {
    display: block;
  }

  /* Mobile top bars */
  .acc-bar {
    height: 30px;
    padding: 0;
    background: #063f8f;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .acc-bar .container-fluid {
    padding: 0 !important;
    justify-content: center !important;
  }
  .acc-bar .container-fluid > * {
    display: none !important;
  }
  .acc-bar .container-fluid::before {
    content: "आप स्वस्थ रहें / Your Health, Our Wish";
    color: #fff;
    font-size: 12px;
    font-weight: 800;
  }
  .main-nav {
    position: relative;
    top: auto;
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .main-nav .container-fluid {
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
  }
  .main-nav .d-flex.align-items-center.justify-content-between {
    position: relative;
    min-height: 58px;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 4px;
  }
  .nav-logo .logo-dd {
    font-size: 38px;
    letter-spacing: -4px;
  }
  .nav-logo .logo-group {
    font-size: 13px;
    letter-spacing: 3px;
  }
  .nav-logo small {
    font-size: 6px;
    margin-top: 3px;
  }
  .main-nav [data-bs-target="#mobileSidebar"] {
    position: absolute;
    left: 0;
    top: 17px;
    font-size: 24px;
  }
  .main-nav .d-flex.align-items-center.gap-3 {
    position: static;
    margin-left: auto;
  }
  .main-nav .search-toggle {
    position: absolute;
    right: 48px;
    top: 11px;
    width: 38px;
    height: 38px;
    border: 1px solid #e8eef6 !important;
    border-radius: 50%;
    font-size: 18px !important;
    background: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .btn-ddshop {
    display: block !important;
    position: absolute;
    right: 0;
    top: 14px;
    width: 34px;
    height: 34px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #222;
    font-size: 0;
    box-shadow: none;
    transform: none;
  }
  .btn-ddshop::before {
    display: none;
  }
  .btn-ddshop i {
    font-size: 25px;
    color: #222;
    margin: 0 !important;
  }
  .btn-ddshop::after {
    display: none;
  }
  .nav-search-form {
    right: 46px;
    left: 46px;
    top: 50%;
    width: auto;
  }
  .main-nav.search-open .nav-logo {
    opacity: 0;
    visibility: hidden;
  }

  /* Mobile hero */
  .hero-section {
    text-align: left;
    padding: 30px 0 24px;
    background-image:
      linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(247, 252, 255, 0.76) 48%,
        rgba(226, 243, 255, 0.28) 100%
      ),
      url("../../building3-sky.png");
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .hero-section .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-section .row {
    position: relative;
    display: block;
    min-height: 514px;
  }
  .hero-section .col-lg-6:first-child {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-right: 0 !important;
  }
  .hero-section h1 {
    font-size: 30px;
    line-height: 1.15;
    max-width: 190px;
    margin-bottom: 14px;
  }
  .hero-section .tagline {
    font-size: 13px;
    line-height: 1.45;
    max-width: 245px;
    margin-bottom: 12px;
  }
  .hero-section p.mb-4 {
    font-size: 12.5px;
    line-height: 1.65;
    max-width: 255px;
    margin-bottom: 18px !important;
  }
  .hero-img-container {
    display: none;
    position: absolute;
    right: 0;
    top: 34px;
    width: 172px;
    max-width: none;
    margin: 0;
    padding-left: 0;
    z-index: 1;
  }
  .hero-circle-wrap {
    border: 0;
    outline: 0;
    box-shadow: none;
  }
  .hero-circle-wrap::before {
    display: none;
  }
  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 9px !important;
    max-width: 100%;
    margin-bottom: 22px !important;
  }
  .hero-actions .btn-explore,
  .hero-actions .btn-view-prod {
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 11px 9px;
    font-size: 11px;
    border-radius: 5px;
  }
  .hero-actions .btn-shop-hero {
    grid-column: 1 / -1;
    justify-self: center;
    width: 120px;
    min-width: 0;
    padding: 10px 12px;
    font-size: 11px;
    border-radius: 5px;
  }
  .hero-trust-icons {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    margin-top: 18px;
  }
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 9.5px;
    line-height: 1.25;
    white-space: normal;
    padding: 0 5px;
    color: #1f2d3d;
  }
  .trust-item + .trust-item {
    border-left: 1px solid rgba(26, 60, 110, 0.12);
    padding-left: 6px;
  }
  .trust-item i {
    font-size: 24px;
    color: #3569bd;
  }
  .trust-item strong {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 800;
  }

  /* Mobile achievements */
  .stats-bar-outer {
    margin-top: 0;
    padding: 0 8px;
  }
  .stats-bar-card {
    border-radius: 9px;
    padding: 18px 12px;
    background: #073f90;
    box-shadow: 0 9px 22px rgba(7, 63, 144, 0.22);
  }
  .stats-bar-card .row .col-6 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .stat-title-header {
    font-size: 17px;
    letter-spacing: 0;
    text-transform: none;
    color: #fff;
    margin-bottom: 15px;
  }
  .stats-bar-card .row {
    row-gap: 0;
  }
  .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 5px;
  }
  .stat-item:nth-child(3n) {
    border-right: 0;
  }
  .stat-item:nth-child(n + 4) {
    border-bottom: 0;
  }
  .stat-icon {
    font-size: 34px;
    margin-bottom: 8px;
    color: #fff;
  }
  .stat-num {
    font-size: 22px;
  }
  .stat-label {
    font-size: 11.5px;
    color: #fff;
    line-height: 1.25;
    font-weight: 400;
  }

  /* Mobile divisions */
  .divisions-section {
    padding: 22px 8px 16px;
    background: #fff;
  }
  .divisions-section .container-fluid {
    padding: 0 !important;
  }
  .section-tag {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  .section-title {
    font-size: 20px;
    line-height: 1.25;
  }
  .section-subtitle {
    font-size: 12px;
    line-height: 1.45;
    margin: 0 auto 14px;
    max-width: 280px;
  }
  .divisions-slider {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .divisions-slider-wrap.has-slider {
    padding: 0;
  }
  .divisions-slider-wrap.has-slider .divisions-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }
  .divisions-slider-wrap.has-slider .divisions-slider::-webkit-scrollbar {
    display: none;
  }
  .divisions-slider-wrap.has-slider .division-card {
    flex: none;
    scroll-snap-align: none;
  }
  .divisions-slider-wrap.has-slider .slider-nav-btn {
    display: none;
  }
  .division-card {
    height: 76px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 82px 1fr;
    box-shadow: none;
    background: #0b4ba0;
    overflow: hidden;
  }
  .division-card:nth-child(2) {
    background: #168d47;
  }
  .division-card:nth-child(3) {
    background: #0b8a7d;
  }
  .division-card:nth-child(4) {
    background: #4d8d2f;
  }
  .division-card:nth-child(5) {
    background: #486f83;
  }
  .division-card:nth-child(n + 6) {
    display: none;
  }
  .division-card img {
    position: relative;
    grid-column: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .division-card .dc-overlay {
    display: none;
  }
  .division-card .dc-content {
    position: relative;
    grid-column: 2;
    padding: 11px 12px;
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--division-color) 96%, #001b49 4%),
      color-mix(in srgb, var(--division-color) 80%, #0f2447 20%)
    );
    display: grid;
    grid-template-columns: 1fr 24px;
    grid-template-rows: auto 1fr;
    align-content: center;
    color: #fff;
    min-height: 0;
  }
  .division-card .dc-title {
    grid-column: 1;
    font-size: 13px;
    line-height: 1.15;
    margin: 0 0 5px;
    font-weight: 900;
  }
  .division-card .dc-title span {
    display: inline;
  }
  .division-card .dc-desc {
    grid-column: 1;
    font-size: 9.5px;
    height: auto;
    margin: 0;
    line-height: 1.35;
    max-height: 28px;
    overflow: hidden;
    opacity: 0.9;
  }
  .division-card .dc-btn {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    position: static;
    width: 24px;
    height: 24px;
    min-height: 24px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    font-size: 0;
    transform: none;
    box-shadow: none;
    display: flex;
  }
  .division-card .dc-btn i {
    font-size: 18px;
    color: #fff;
  }
  .division-card.reveal {
    opacity: 1;
    transform: none;
  }

  /* Mobile trust/why card */
  .why-section {
    padding: 18px 8px;
    background: #fff;
  }
  .why-section .container-fluid {
    padding: 0 !important;
  }
  .why-section .row {
    display: block;
  }
  .why-section .col-lg-4,
  .why-section .col-lg-3 {
    display: none;
  }
  .why-section .col-lg-5 {
    width: 100%;
    max-width: 100%;
  }
  .why-section .ps-lg-2 {
    background: #eef7ff;
    border-radius: 10px;
    padding: 24px 16px;
  }
  .why-section .section-tag {
    display: none;
  }
  .why-section .section-title {
    text-align: center;
    font-size: 21px !important;
    line-height: 1.25;
    margin-bottom: 18px;
  }
  .why-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 10px;
    margin-top: 0;
  }
  .feature-item {
    display: block;
    text-align: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .feature-icon {
    width: auto;
    height: auto;
    margin: 0 auto 6px;
    background: transparent;
  }
  .feature-icon i {
    font-size: 32px;
    color: #3569bd;
  }
  .feature-icon .dd-svg-icon {
    font-size: 32px;
    color: #3569bd;
  }
  .feature-text strong {
    font-size: 9.5px;
    color: #6c757d;
    line-height: 1.25;
  }

  /* Mobile shop, enquiry, careers */
  .shop-enquiry-section {
    padding: 10px 8px 12px;
    background: #fff;
  }
  .shop-enquiry-section .container-fluid {
    padding: 0 !important;
  }
  .shop-enquiry-section .row {
    gap: 14px;
  }
  .shop-half,
  .enquiry-half,
  .careers-mobile-card {
    border-radius: 12px;
    border: 0;
    background-color: #eef8f1;
    min-height: 0;
    padding: 24px 18px;
    box-shadow: none;
  }
  .shop-half {
    min-height: 316px;
    background-image:
      linear-gradient(
        180deg,
        rgba(239, 250, 243, 0.94) 0%,
        rgba(239, 250, 243, 0.76) 42%,
        rgba(239, 250, 243, 0.08) 100%
      ),
      url("../images/bottle-image.png");
    background-size: 118% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  .shop-label {
    font-size: 11px;
    color: #2e7d32;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
  }
  .shop-title {
    font-size: 20px;
    line-height: 1.16;
    margin-bottom: 10px;
    max-width: 76%;
  }
  .shop-desc {
    max-width: 82%;
    font-size: 10.5px;
    line-height: 1.55;
  }
  .shop-half .btn-shop-hero {
    font-size: 11px;
    padding: 10px 18px;
    margin-top: 112px !important;
    border-radius: 5px;
  }
  .shop-features {
    display: none;
  }
  .enquiry-half {
    background-image: none;
    background: #eef7ff;
    padding: 24px 20px;
  }
  .enquiry-label {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .enquiry-title {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .enquiry-list {
    max-width: 100%;
    padding: 8px 14px;
    background: rgba(238, 247, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
  }
  .enquiry-list li {
    padding: 12px 0;
  }
  .enquiry-list li .el-left {
    font-size: 12px;
  }
  .enquiry-list li .el-left i {
    font-size: 20px;
  }
  .careers-mobile-card {
    position: relative;
    overflow: hidden;
    min-height: 254px;
    background: #edf8ef;
  }
  .careers-mobile-img {
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 52%;
    max-height: 102%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
  }
  .careers-mobile-content {
    position: relative;
    z-index: 2;
    max-width: 58%;
  }
  .careers-mobile-content h2 {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 18px;
  }
  .careers-mobile-content h2::first-line {
    color: #2e7d32;
  }
  .careers-mobile-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 18px;
  }
  .careers-mobile-content .btn {
    display: block;
    width: 125px;
    margin-bottom: 10px;
    padding: 10px 12px;
    font-size: 11px;
    border-radius: 5px;
  }
  .careers-mobile-content .btn-view-prod {
    border-color: #61ad74;
    color: #2e7d32;
    background: #fff;
  }

  /* Mobile leadership/news */
  .combined-info-section {
    padding: 14px 8px;
    background: #fff;
  }
  .combined-info-section .container-fluid {
    padding: 0 !important;
  }
  .combined-info-section .row {
    --bs-gutter-y: 12px;
    gap: 0;
  }
  .info-block-card {
    display: block;
    border-radius: 12px;
    background: #eef7ff;
    padding: 18px 16px;
  }
  .info-section-tag-green {
    font-size: 14px;
    color: #2e7d32;
    margin-bottom: 10px;
  }
  .info-section-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    min-height: 0;
  }
  .info-section-desc {
    font-size: 12.5px;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .leader-grid-row {
    gap: 12px;
    margin-bottom: 18px;
  }
  .leader-avatar-frame {
    border-radius: 6px;
    aspect-ratio: 1/1.2;
    margin-bottom: 7px;
  }
  .leader-mini-name {
    font-size: 9.8px;
  }
  .leader-mini-role {
    font-size: 9px;
    color: #333;
  }
  .slider-dots {
    display: none;
  }
  .info-card-btn-wrap {
    min-height: 0;
    padding-top: 0;
  }
  .btn-meet-blue {
    font-size: 11px;
    padding: 11px 18px;
    border-radius: 5px;
  }
  .info-block-card .news-mini-list {
    gap: 6px;
    margin-bottom: 8px;
  }
  .info-block-card .news-mini-row {
    background: #fff;
    border-radius: 7px;
    padding: 4px 5px;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(26, 60, 110, 0.04);
  }
  .news-mini-img-frame {
    width: 88px;
    height: 58px;
    border-radius: 5px;
  }
  .news-mini-title {
    font-size: 11.5px;
    color: #000;
    line-height: 1.35;
  }
  .news-mini-date {
    font-size: 10px;
    color: #000;
  }

  /* Mobile CTA */
  .cta-section {
    margin: 12px 8px 12px;
    border-radius: 12px;
    background: #073f90;
    padding: 26px 18px 38px;
    box-shadow: 0 10px 24px rgba(7, 63, 144, 0.18);
    text-align: center;
  }
  .cta-section .container-fluid {
    padding: 0 !important;
  }
  .cta-section h2 {
    font-size: 22px;
    line-height: 1.25;
    max-width: 280px;
    margin: 0 auto 16px;
  }
  .cta-section p {
    font-size: 13px;
    line-height: 1.55;
    color: #fff;
    max-width: 300px;
    margin: 0 auto 22px;
  }
  .cta-section .d-flex.flex-wrap {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px !important;
    max-width: 320px;
    margin: 0 auto;
  }
  .btn-cta-white,
  .btn-cta-outline,
  .btn-cta-green {
    width: 100%;
    min-height: 48px;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .btn-cta-white {
    color: #1a3c6e;
    background: #fff;
  }
  .btn-cta-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.62);
    color: #fff;
  }
  .btn-cta-green {
    background: #2e8f32;
    border-color: #2e8f32;
  }
  .cta-trust-icons {
    display: none;
  }

  /* Mobile footer/accessibility */
  .footer {
    margin-top: 0;
    padding: 30px 16px 0;
    background: linear-gradient(135deg, #06162c 0%, #082852 100%);
    text-align: left;
    border-top: 0;
  }
  .footer .container-fluid {
    padding: 0 !important;
  }
  .footer .row {
    display: block;
  }
  .footer .col-lg-3,
  .footer .col-lg-2 {
    width: 100%;
    margin-bottom: 24px;
  }
  .footer .col-lg-3:first-child {
    text-align: center;
  }
  .footer .col-lg-3:first-child .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-logo .logo-mark {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-logo .logo-dd {
    width: 170px;
    font-size: 58px;
  }
  .footer-logo .logo-group {
    width: 170px;
    font-size: 20px;
  }
  .footer p {
    font-size: 12px;
    line-height: 1.55;
    color: #d4e4ff;
  }
  .footer h6 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 14px;
  }
  .footer ul li a {
    font-size: 13px;
    line-height: 1.85;
    color: #e6f0ff;
  }
  .footer-social {
    justify-content: center;
    gap: 12px;
  }
  .footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    font-size: 17px;
  }
  .footer-contact-row {
    justify-content: flex-start;
    font-size: 12px;
  }
  .footer-bottom {
    background: rgba(3, 17, 37, 0.55);
    margin-top: 0;
    padding: 16px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: #e6f0ff;
  }
  .footer-bottom a {
    color: #e6f0ff;
  }
  .footer-bottom .container-fluid {
    display: flex !important;
    flex-direction: column;
    gap: 9px;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .footer-credit {
    margin-left: 0;
  }
  .bottom-acc-bar {
    position: sticky;
    bottom: 0;
    z-index: 2000;
    margin: 0;
    background: #fff;
    border: 0;
    border-top: 2px solid #dbe8f8;
    border-radius: 0;
    box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.12);
  }
  .bottom-acc-bar .container-fluid {
    min-height: 0;
  }
  .bottom-acc-bar button {
    border: 0;
    color: #073f90;
    border-radius: 0;
    font-size: 0;
    padding: 8px 14px;
    margin: 0;
    border-right: 1px solid #dbe8f8;
    min-height: 42px;
  }
  .bottom-acc-bar button i {
    font-size: 21px;
    margin: 0;
  }
  .bottom-acc-bar button:first-child {
    font-size: 12px;
    display: block;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #dbe8f8;
    color: #073f90;
    font-weight: 700;
  }
  .bottom-acc-bar button:first-child i {
    display: none;
  }

  /* Mobile menu */
  .mobile-sidebar {
    --bs-offcanvas-width: 100vw;
    width: 100vw !important;
    max-width: 100vw;
    top: 0;
    height: 100dvh;
    height: 100vh;
    border: 0;
    overflow: hidden;
    z-index: 3000;
  }
  .offcanvas-backdrop {
    z-index: 2990;
  }
  .mobile-sidebar-header {
    padding: 20px 24px;
    background: #073f90;
  }
  .mobile-sidebar-body {
    height: calc(100% - 84px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu-item {
    border-bottom: 1px solid #e7edf5;
  }
  .mobile-menu-link {
    font-size: 15px;
    padding: 14px 26px;
    justify-content: flex-start;
    gap: 14px;
  }
  .mobile-sidebar-body .mobile-menu-link i:first-child {
    font-size: 21px;
    color: #555;
  }
  .mobile-menu-link.active-shop,
  .mobile-menu-link.active-shop i:first-child {
    color: #2e7d32;
  }
  .mobile-lang-toggle {
    margin-top: 10px;
  }
  .mobile-menu-list .mobile-menu-link .bi-chevron-right,
  .mobile-menu-list .mobile-menu-link .bi-chevron-down {
    font-size: 15px;
    color: #9aa8b8;
  }
  .mobile-menu-footer {
    display: block;
    background: linear-gradient(135deg, #06162c 0%, #082852 100%);
    color: #fff;
    margin-top: 10px;
  }
  .mobile-menu-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .mobile-menu-trust div {
    min-height: 96px;
    padding: 12px 5px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }
  .mobile-menu-trust div:last-child {
    border-right: 0;
  }
  .mobile-menu-trust i {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
  }
  .mobile-menu-trust span {
    font-size: 9px;
    line-height: 1.25;
    color: #dceaff;
    font-weight: 700;
  }
  .mobile-menu-footer-brand {
    padding: 26px 18px 28px;
    text-align: center;
  }
  .mobile-menu-footer-brand .logo-mark {
    line-height: 0.86;
    margin: 0 auto 16px;
    text-align: center;
  }
  .mobile-menu-footer-brand .logo-dd {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -6px;
    color: #fff;
    transform: none;
    width: auto;
  }
  .mobile-menu-footer-brand .logo-group {
    display: block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #fff;
    margin-top: 3px;
    transform: none;
    width: auto;
    padding-left: 0;
  }
  .mobile-menu-footer-brand small {
    display: block;
    margin-top: 10px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2.4px;
    color: rgba(255, 255, 255, 0.78);
  }
  .mobile-menu-footer-brand p {
    max-width: 270px;
    margin: 0 auto 16px;
    font-size: 12px;
    line-height: 1.6;
    color: #d4e4ff;
  }
  .mobile-menu-social {
    justify-content: center;
    margin-top: 0;
  }
  .mobile-menu-social a {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    font-size: 17px;
  }
  .mobile-menu-footer-links {
    padding: 0 18px 8px;
  }
  .mobile-menu-footer-group {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-menu-footer-group h6 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
  }
  .mobile-menu-footer-group a {
    display: block;
    color: #dceaff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.9;
  }
  .mobile-menu-footer-group a:hover {
    color: #fff;
  }
  .mobile-menu-contact p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: none;
    margin: 0 0 18px;
    color: #dceaff;
    text-align: left;
    font-size: 12px;
    line-height: 1.55;
  }
  .mobile-menu-contact p:last-child {
    margin-bottom: 0;
  }
  .mobile-menu-contact i {
    width: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    color: #dceaff;
    font-size: 17px;
  }
  .mobile-menu-footer-bottom {
    margin: 0 18px;
    padding: 22px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: #dceaff;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-menu-policy-links {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .mobile-menu-policy-links a {
    color: #dceaff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.36);
  }
  .mobile-menu-policy-links a:last-child {
    border-right: 0;
  }
  .mobile-menu-accessibility {
    position: static;
    margin: 0;
    background: #fff;
    color: #073f90;
    border-radius: 18px 18px 0 0;
    padding: 12px 16px 10px;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
  }
  .mobile-access-title {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    padding-bottom: 9px;
    border-bottom: 1px solid #dbe8f8;
  }
  .mobile-access-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }
  .mobile-access-actions button {
    height: 44px;
    border: 0;
    border-right: 1px solid #dbe8f8;
    background: #fff;
    color: #073f90;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-access-actions button:last-child {
    border-right: 0;
  }
  .mobile-access-actions i {
    font-size: 21px;
  }
}

/* ---- Mobile portrait / small phone (<576px) ---- */
@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 29px;
  }
  .hero-section .tagline {
    font-size: 14px;
  }
  .hero-section p {
    font-size: 13px;
  }
  .hero-trust-icons {
    flex-direction: row;
    align-items: center;
    display: flex;
    text-align: left;
  }
  .trust-item {
    font-size: 9px;
    padding: 5px 3px;
  }
  .hero-section .row {
    min-height: 514px;
  }
  .hero-trust-icons {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    flex-direction: initial;
  }
  /* Stats 2-across compact */
  .stats-bar-card {
    padding: 18px 8px;
  }
  .stats-bar-card .row .col-6 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .stat-num {
    font-size: 22px;
  }
  .stat-label {
    font-size: 11.5px;
    font-weight: 400;
  }
  .stat-icon {
    font-size: 32px;
  }
  /* Divisions 1-col on very small screens */
  .divisions-slider {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .division-card {
    height: 76px;
  }
  /* Section headings */
  .section-title {
    font-size: 22px;
  }
  .section-subtitle {
    font-size: 13px;
  }
  /* Why section */
  .why-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .commitment-card {
    padding: 16px;
  }
  /* Shop */
  .shop-features {
    grid-template-columns: 1fr;
  }
  .shop-title {
    font-size: 22px;
  }
  .enquiry-title {
    font-size: 14px;
  }
  /* Leadership */
  .info-section-title {
    font-size: 17px;
  }
  .leader-mini-name {
    font-size: 10px;
  }
  .leader-mini-role {
    font-size: 9px;
  }
  /* CTA */
  .cta-section h2 {
    font-size: 20px;
  }
  .btn-cta-white,
  .btn-cta-outline,
  .btn-cta-green {
    padding: 10px 18px;
    font-size: 13px;
  }
  /* Nav */
  .nav-logo .logo-mark {
    font-size: 22px;
  }
  /* Footer bottom */
  .footer-bottom .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ---- Extra small (<400px) ---- */
@media (max-width: 400px) {
  .hero-section h1 {
    font-size: 28px;
  }
  .hero-trust-icons {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }
  .divisions-slider {
    grid-template-columns: 1fr;
  }
  .division-card {
    height: 76px;
  }
  .stats-bar-card .row .col-6 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .shop-features {
    grid-template-columns: 1fr;
  }
  .careers-mobile-img {
    width: 50%;
    right: -8px;
  }
  .careers-mobile-content {
    max-width: 60%;
  }
  .careers-mobile-content h2 {
    font-size: 21px;
  }
  .careers-mobile-content .btn {
    width: 118px;
  }
  .bottom-acc-bar .d-flex {
    gap: 0;
  }
}

/* ---- Mobile refinement pass: keeps the Figma-style compact cards stable ---- */
@media (max-width: 767px) {
  *,
  *::before,
  *::after {
    min-width: 0;
  }
  body {
    font-size: 13px;
  }
  html,
  body {
    overflow-x: hidden;
  }
  .container-fluid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row > * {
    padding-left: 0;
    padding-right: 0;
  }
  .main-nav {
    position: sticky;
    top: 0;
  }
  .main-nav .d-flex.align-items-center.justify-content-between {
    min-height: 56px;
  }
  .main-nav [data-bs-target="#mobileSidebar"] {
    top: 15px;
  }
  .main-nav .d-flex.align-items-center.gap-3 > button:first-child {
    top: 10px;
  }
  .btn-ddshop {
    top: 13px;
  }

  .hero-section {
    padding: 26px 0 20px;
    background-image:
      linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(247, 252, 255, 0.76) 48%,
        rgba(226, 243, 255, 0.28) 100%
      ),
      url("../../building3-sky.png");
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .hero-section .row {
    min-height: 430px;
  }
  .hero-section h1 {
    font-size: clamp(27px, 7.4vw, 31px);
    max-width: min(54vw, 205px);
    letter-spacing: 0;
    margin-left: 0;
    margin-right: auto;
  }
  .hero-section .tagline {
    max-width: min(66vw, 250px);
    font-size: 13px;
    margin-left: 0;
    margin-right: auto;
  }
  .hero-section p.mb-4 {
    max-width: min(68vw, 260px);
    font-size: 12px;
    margin-left: 0;
    margin-right: auto;
  }
  .hero-img-container {
    top: 34px;
    right: -8px;
    width: clamp(132px, 39vw, 164px);
  }
  .hero-actions {
    width: 100%;
    margin-top: 8px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .hero-actions .btn {
    width: 100%;
    max-width: none;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-actions .btn-explore,
  .hero-actions .btn-view-prod,
  .hero-actions .btn-shop-hero {
    white-space: normal;
    line-height: 1.2;
  }
  .hero-actions .btn-shop-hero {
    width: 120px;
  }
  .hero-trust-icons {
    margin-top: 16px;
    align-items: start;
  }
  .trust-item {
    min-width: 0;
  }
  .trust-item div {
    word-break: normal;
  }

  .stats-bar-outer {
    padding: 0 10px;
  }
  .stats-bar-outer .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .stats-bar-card {
    padding: 18px 8px;
  }
  .stats-bar-card .row {
    width: 100%;
    margin: 0;
  }
  .stats-bar-card .row .col-6 {
    min-width: 0;
  }
  .stat-item {
    min-height: 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .stat-num {
    font-size: 20px;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 400;
  }

  .division-card {
    display: grid;
    height: 76px;
    min-height: 76px;
    grid-template-columns: 82px 1fr;
  }
  .division-card .dc-content {
    min-width: 0;
  }
  .division-card .dc-title,
  .division-card .dc-desc {
    padding-right: 16px;
  }

  .why-section .ps-lg-2,
  .shop-half,
  .enquiry-half,
  .careers-mobile-card,
  .info-block-card,
  .cta-section {
    border-radius: 12px;
  }
  .why-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 8px;
  }
  .feature-text strong {
    font-size: 10px;
  }

  .shop-half {
    min-height: 316px;
    background-size: 104% auto;
    background-position: center bottom 8px;
  }
  .shop-desc {
    max-width: 82%;
  }
  .shop-half .btn-shop-hero {
    margin-top: 112px !important;
  }

  .enquiry-half {
    min-height: auto;
  }
  .enquiry-list li .el-left {
    min-width: 0;
  }
  .enquiry-list li .el-left strong {
    line-height: 1.25;
  }

  .careers-mobile-card {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(120px, 42%);
    align-items: stretch;
    min-height: 248px;
    padding: 0;
  }
  .careers-mobile-img {
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center bottom;
    align-self: stretch;
  }
  .careers-mobile-content {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    padding: 24px 8px 20px 18px;
  }

  .info-section-title {
    font-size: 19px;
    margin-bottom: 9px;
  }
  .combined-info-section {
    padding: 10px 8px 12px;
  }
  .combined-info-section .row {
    --bs-gutter-y: 12px;
    gap: 0;
  }
  .btn-meet-blue {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }
  .news-mini-row {
    align-items: center;
  }

  .cta-section {
    margin: 10px 8px 0;
  }
  .bottom-acc-bar .container-fluid {
    padding: 0 !important;
  }
  .bottom-acc-bar .d-flex {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
  }
  .bottom-acc-bar button:first-child {
    grid-column: 1 / -1;
  }
  .bottom-acc-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
  }
}

@media (max-width: 420px) {
  .hero-section .row {
    min-height: 418px;
  }
  .hero-section h1 {
    max-width: min(53vw, 198px);
    margin-left: 0;
    margin-right: auto;
  }
  .hero-section .tagline,
  .hero-section p.mb-4 {
    max-width: min(67vw, 250px);
    margin-left: 0;
    margin-right: auto;
  }
  .hero-img-container {
    top: 36px;
    right: -10px;
    width: 138px;
  }
  .hero-actions .btn-explore,
  .hero-actions .btn-view-prod {
    font-size: 10.5px;
    padding: 10px 7px;
  }
  .trust-item i {
    font-size: 24px;
  }
  .trust-item strong {
    font-size: 14px;
  }
  .stat-num {
    font-size: 18px;
  }
  .stat-label {
    font-size: 10.5px;
    font-weight: 400;
  }
  .shop-half .btn-shop-hero {
    margin-top: 116px !important;
  }
  .careers-mobile-card {
    grid-template-columns: minmax(0, 58%) minmax(112px, 42%);
  }
  .careers-mobile-content {
    padding: 22px 6px 18px 16px;
  }
  .bottom-acc-bar button {
    padding: 8px 10px;
  }
}

@media (max-width: 767px) {
  .main-nav {
    position: relative !important;
  }
  .main-nav .d-flex.align-items-center.justify-content-between {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .main-nav .nav-actions {
    display: block !important;
    position: static !important;
    width: 0 !important;
    height: 58px !important;
    margin: 0 !important;
    pointer-events: none;
  }
  .main-nav [data-bs-target="#mobileSidebar"],
  .main-nav #navSearchToggle,
  .main-nav .btn-ddshop,
  .main-nav .nav-search-form {
    pointer-events: auto;
    z-index: 20;
  }
  .main-nav [data-bs-target="#mobileSidebar"] {
    position: absolute !important;
    left: 16px !important;
    top: 17px !important;
  }
  .main-nav #navSearchToggle {
    display: flex !important;
    position: absolute !important;
    right: 62px !important;
    top: 17px !important;
  }
  .main-nav .btn-ddshop {
    display: flex !important;
    position: absolute !important;
    right: 16px !important;
    top: 19px !important;
  }

  .hero-actions {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    overflow: hidden;
  }
  .hero-actions .btn-explore,
  .hero-actions .btn-view-prod {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
  .hero-actions .btn-view-prod {
    font-size: 9.5px !important;
  }

  .stats-bar-card {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    overflow: hidden;
  }
  .stats-bar-card .row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stats-bar-card .row .col-6 {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
  }
  .stat-item {
    min-width: 0;
  }

  .divisions-section .section-title {
    max-width: 100%;
    padding: 0 10px;
    overflow-wrap: break-word;
  }
  .divisions-section .container-fluid {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
  }
  .division-card .dc-title {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4px;
  }
}

/* ---- Figma mobile alignment pass: scoped to phone widths only ---- */
@media (max-width: 767px) {
  .acc-bar {
    height: 36px;
    background: #074795;
  }
  .acc-bar .container-fluid::before {
    font-size: 12px;
  }
  .main-nav {
    padding: 6px 0;
    box-shadow: 0 4px 14px rgba(15, 36, 71, 0.12);
  }
  .main-nav .d-flex.align-items-center.justify-content-between {
    min-height: 66px;
  }
  .main-nav .nav-actions {
    height: 66px !important;
  }
  .nav-logo {
    top: 4px;
  }
  .nav-logo .logo-dd {
    font-size: 35px;
    line-height: 0.86;
  }
  .nav-logo .logo-group {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .nav-logo small {
    font-size: 5.5px;
    letter-spacing: 2.2px;
    margin-top: 4px;
  }
  .main-nav [data-bs-target="#mobileSidebar"] {
    top: 21px !important;
  }
  .main-nav #navSearchToggle {
    top: 21px !important;
    width: 36px;
    height: 36px;
  }
  .main-nav .btn-ddshop {
    top: 22px !important;
    overflow: visible;
  }
  .main-nav .btn-ddshop i {
    font-size: 25px;
    line-height: 1;
  }
  .main-nav .nav-search-form {
    position: absolute !important;
    left: 58px !important;
    right: 16px !important;
    top: 15px !important;
    width: auto !important;
    transform: none !important;
  }
  .main-nav .nav-search-form input {
    height: 42px;
    font-size: 13px;
  }
  .main-nav.search-open #navSearchToggle,
  .main-nav.search-open .btn-ddshop {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .btn-ddshop::after {
    content: "2";
    position: absolute;
    right: -2px;
    top: -6px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
  }

  .hero-section {
    padding: 28px 0 20px;
    background-image:
      linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 48%,
        rgba(232, 246, 255, 0.36) 100%
      ),
      url("../../building3-sky.png");
    background-size: auto 390px;
    background-position: 76% 0;
  }
  .hero-section .row {
    min-height: 482px;
    padding-top: 0;
  }
  .hero-section h1 {
    font-size: clamp(27px, 8.7vw, 31px);
    line-height: 1.12;
    max-width: 180px;
    margin: 0 0 14px;
  }
  .hero-section .tagline {
    font-size: 12.5px;
    line-height: 1.45;
    max-width: 190px;
    margin-bottom: 10px;
  }
  .hero-section p.mb-4 {
    font-size: 11.5px;
    line-height: 1.55;
    max-width: 200px;
    margin-bottom: 16px !important;
  }
  .hero-actions {
    gap: 8px !important;
    margin-bottom: 20px !important;
  }
  .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible;
  }
  .hero-actions .btn {
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal;
  }
  .hero-actions .btn-explore,
  .hero-actions .btn-view-prod {
    min-height: 36px;
    padding: 10px 8px !important;
    font-size: 10px !important;
    border-radius: 5px;
  }
  .hero-actions .btn-shop-hero {
    width: 108px;
    min-height: 36px;
    padding: 9px 10px !important;
    font-size: 10px !important;
  }
  .hero-trust-icons {
    margin-top: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .trust-item.mobile-only {
    display: flex;
  }
  .trust-item {
    font-size: 8.8px;
    gap: 5px;
    padding: 0 4px;
  }
  .trust-item i {
    font-size: 24px;
    color: #3268c7;
  }
  .trust-item strong {
    font-size: 14px;
    color: #1a3c6e;
  }

  .stats-bar-outer {
    padding: 0 8px;
    margin-top: 0;
  }
  .stats-bar-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    border-radius: 9px;
    padding: 16px 12px 14px;
    background: #074795;
  }
  .stats-bar-card .row {
    display: grid !important;
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .stat-item {
    overflow: hidden;
  }
  .stat-title-header {
    display: block;
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 12px;
  }
  .stat-item {
    min-height: 78px;
    padding: 8px 4px;
  }
  .stat-icon {
    font-size: 28px;
    margin-bottom: 6px;
  }
  .stat-num {
    font-size: 18px;
  }
  .stat-label {
    font-size: 10px;
    line-height: 1.25;
  }

  .divisions-section {
    padding: 24px 8px 18px;
  }
  .divisions-section .section-tag {
    display: none;
  }
  .divisions-section .section-title {
    color: #2e7d32;
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
  }
  .divisions-section .section-subtitle {
    color: #222;
    font-size: 11px;
    line-height: 1.55;
    max-width: 285px;
    margin-bottom: 16px;
  }
  .division-card {
    height: 78px;
    min-height: 78px;
    grid-template-columns: 86px 1fr;
    border-radius: 8px;
  }
  .division-card .dc-content {
    padding: 11px 12px;
  }
  .division-card .dc-title {
    font-size: 12.5px;
    margin-bottom: 5px;
  }
  .division-card .dc-desc {
    font-size: 9px;
    line-height: 1.35;
  }

  .why-section {
    padding: 18px 8px;
  }
  .why-section .ps-lg-2 {
    padding: 24px 14px 22px;
    border-radius: 10px;
    background: #eef7ff;
  }
  .why-section .section-title {
    font-size: 19px !important;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .feature-icon i,
  .feature-icon .dd-svg-icon {
    font-size: 28px;
  }
  .feature-text strong {
    font-size: 8px;
    line-height: 1.25;
  }

  .shop-enquiry-section {
    padding: 10px 8px 12px;
  }
  .shop-half {
    min-height: 338px;
    padding: 24px 18px;
    border-radius: 12px;
    background-image:
      linear-gradient(
        180deg,
        rgba(239, 250, 243, 0.98) 0%,
        rgba(239, 250, 243, 0.78) 47%,
        rgba(239, 250, 243, 0.04) 100%
      ),
      url("../images/bottle-image.png");
    background-size: 118% auto;
    background-position: center bottom;
  }
  .shop-label {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .shop-title {
    font-size: 20px;
    line-height: 1.16;
    max-width: 74%;
  }
  .shop-desc {
    font-size: 10px;
    line-height: 1.55;
    max-width: 78%;
  }
  .shop-half .btn-shop-hero {
    margin-top: 128px !important;
    padding: 10px 18px !important;
  }
  .enquiry-half {
    padding: 22px 18px;
    border-radius: 12px;
    background: #eef7ff;
  }
  .enquiry-label {
    font-size: 21px;
  }
  .enquiry-title {
    font-size: 13px;
    line-height: 1.5;
  }
  .enquiry-list {
    padding: 6px 12px;
    border-radius: 9px;
    background: rgba(238, 247, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 1099px) and (min-width: 768px) {
  .shop-enquiry-section .shop-panel-col,
  .shop-enquiry-section .enquiry-panel-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .shop-enquiry-section .row {
    --bs-gutter-y: 18px;
  }
  .shop-half {
    min-height: 260px;
    background-size:
      100% 100%,
      64% calc(100% - 52px) !important;
    background-position:
      center,
      right 16px top 0 !important;
  }
  .shop-title,
  .shop-desc {
    max-width: 46%;
  }
  .enquiry-half {
    min-height: 252px;
  }
  .enquiry-title,
  .enquiry-list {
    max-width: 52% !important;
  }
  .enquiry-half .enq-bg-img {
    right: -92px !important;
    height: 106%;
  }
}

@media (max-width: 575px) {
  .shop-half {
    min-height: 324px;
    background-size: 110% auto !important;
    background-position: center bottom 10px !important;
  }
  .shop-half .btn-shop-hero {
    margin-top: 112px !important;
  }
}

@media (max-width: 400px) {
  .shop-half {
    min-height: 326px;
    background-size: 112% auto !important;
  }
  .shop-half .btn-shop-hero {
    margin-top: 114px !important;
  }
}

@media (max-width: 767px) {
  .hero-section {
    background-image:
      linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.94) 48%,
        rgba(245, 250, 255, 0.18) 68%,
        rgba(226, 243, 255, 0) 100%
      ),
      url("../../building3-sky.png") !important;
    background-size: auto 34% !important;
    background-position: right 18px top 58px !important;
  }
  .shop-half {
    min-height: auto;
    background-image:
      linear-gradient(
        180deg,
        rgba(239, 250, 243, 0.99) 0%,
        rgba(239, 250, 243, 0.96) 100%
      ) !important;
    background-size: 100% 100% !important;
    background-position: center !important;
  }
  .shop-title,
  .shop-desc {
    max-width: 86% !important;
  }
  .shop-half .btn-shop-hero {
    margin-top: 18px !important;
  }
  .info-card-btn-wrap {
    margin-bottom: 10px;
  }
  .info-card-right {
    margin-top: 8px;
  }
}

@media (max-width: 767px) {
  .combined-info-section .col-lg-6:first-child .info-block-card {
    display: flex;
    flex-direction: column;
  }
  .combined-info-section .col-lg-6:first-child .info-card-left {
    display: contents;
  }
  .combined-info-section .col-lg-6:first-child .info-section-tag-green {
    order: 1;
  }
  .combined-info-section .col-lg-6:first-child .info-section-title {
    order: 2;
  }
  .combined-info-section .col-lg-6:first-child .info-section-desc {
    order: 3;
  }
  .combined-info-section .col-lg-6:first-child .info-card-right {
    order: 4;
    margin-top: 12px;
  }
  .combined-info-section .col-lg-6:first-child .info-card-btn-wrap {
    order: 5;
    margin-top: 14px;
    margin-bottom: 0;
  }
  .combined-info-section .col-lg-6:nth-child(2) .info-block-card {
    display: flex;
    flex-direction: column;
  }
  .combined-info-section .col-lg-6:nth-child(2) .info-card-left {
    display: contents;
  }
  .combined-info-section .col-lg-6:nth-child(2) .info-section-tag-green {
    order: 1;
  }
  .combined-info-section .col-lg-6:nth-child(2) .info-section-title {
    order: 2;
  }
  .combined-info-section .col-lg-6:nth-child(2) .info-section-desc {
    order: 3;
  }
  .combined-info-section .col-lg-6:nth-child(2) .info-card-right {
    order: 4;
    margin-top: 12px;
  }
  .combined-info-section .col-lg-6:nth-child(2) .info-card-btn-wrap {
    order: 5;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .combined-info-section .info-block-card {
    padding: 22px 18px !important;
    background: #eef7ff;
  }
  .combined-info-section .info-section-tag-green {
    font-size: 18px !important;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 14px;
  }
  .combined-info-section .info-section-title {
    font-size: 25px !important;
    line-height: 1.22;
    margin-bottom: 16px;
  }
  .combined-info-section .info-section-desc {
    font-size: 15.5px !important;
    line-height: 1.58;
    margin-bottom: 18px;
  }
  .combined-info-section .leader-grid-row {
    gap: 18px;
    margin-bottom: 0;
  }
  .combined-info-section .leader-avatar-frame {
    border-radius: 8px;
    aspect-ratio: 1 / 1.28;
    margin-bottom: 10px;
  }
  .combined-info-section .leader-mini-name {
    font-size: 12px !important;
    line-height: 1.2;
    font-weight: 800;
  }
  .combined-info-section .leader-mini-role {
    font-size: 11px !important;
    line-height: 1.3;
  }
  .combined-info-section .btn-meet-blue {
    width: 220px;
    min-height: 48px;
    padding: 12px 22px;
    font-size: 13.5px !important;
    border-radius: 6px;
  }
  .combined-info-section .news-mini-list {
    gap: 12px;
    margin-bottom: 0;
  }
  .combined-info-section .news-mini-row {
    min-height: 94px;
    padding: 10px 12px;
    gap: 12px;
    border-radius: 8px;
  }
  .combined-info-section .news-mini-img-frame {
    width: 106px;
    height: 72px;
    border-radius: 7px;
  }
  .combined-info-section .news-mini-title {
    font-size: 13.8px !important;
    line-height: 1.35;
    font-weight: 800;
  }
  .combined-info-section .news-mini-date {
    font-size: 12.5px !important;
    margin-top: 4px;
  }
}

@media (max-width: 420px) {
  .hero-section {
    background-size: auto 32% !important;
    background-position: right 16px top 60px !important;
  }
  .shop-half {
    min-height: auto;
    background-size: 100% 100% !important;
    background-position: center !important;
  }
  .shop-half .btn-shop-hero {
    margin-top: 18px !important;
  }
}

@media (max-width: 767px) {
  :root {
    --mobile-section-x: 8px;
    --mobile-section-y: 10px;
    --mobile-card-pad-x: 16px;
    --mobile-card-pad-y: 18px;
    --mobile-card-gap: 12px;
  }

  .stats-bar-outer,
  .divisions-section,
  .why-section,
  .shop-enquiry-section,
  .combined-info-section {
    padding: var(--mobile-section-y) var(--mobile-section-x) !important;
  }

  .stats-bar-outer .container-fluid,
  .divisions-section .container-fluid,
  .why-section .container-fluid,
  .shop-enquiry-section .container-fluid,
  .combined-info-section .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .shop-enquiry-section .row,
  .combined-info-section .row {
    --bs-gutter-y: var(--mobile-card-gap);
    gap: 0 !important;
  }

  .why-section .ps-lg-2,
  .shop-half,
  .enquiry-half,
  .info-block-card {
    padding: var(--mobile-card-pad-y) var(--mobile-card-pad-x) !important;
    border-radius: 12px;
  }

  .cta-section {
    margin: 12px var(--mobile-section-x) 12px !important;
  }
}

@media (max-width: 767px) {
  .stat-title-header {
    font-size: 16px !important;
  }
  .stat-num {
    font-size: 19px !important;
  }
  .stat-label {
    font-size: 10.5px !important;
  }

  .divisions-section .section-title {
    font-size: 16px !important;
  }
  .divisions-section .section-subtitle {
    font-size: 11.5px !important;
  }
  .division-card .dc-title {
    font-size: 13.2px !important;
  }
  .division-card .dc-desc {
    font-size: 9.6px !important;
  }

  .why-section .section-title {
    font-size: 20px !important;
  }
  .feature-text strong {
    font-size: 8.8px !important;
  }

  .shop-label {
    font-size: 12px !important;
  }
  .shop-title {
    font-size: 21px !important;
  }
  .shop-desc {
    font-size: 11px !important;
  }
  .shop-half .btn-shop-hero {
    font-size: 12px !important;
  }

  .enquiry-label {
    font-size: 22px !important;
  }
  .enquiry-title {
    font-size: 13.8px !important;
  }
  .enquiry-list li .el-left {
    font-size: 12.5px !important;
  }

  .cta-section h2 {
    font-size: 23px !important;
  }
  .cta-section p {
    font-size: 13.5px !important;
  }
  .btn-cta-white,
  .btn-cta-outline,
  .btn-cta-green {
    font-size: 13.5px !important;
  }

  .footer p,
  .footer li a,
  .footer-contact-row,
  .footer-bottom {
    font-size: 12.5px;
  }
}

@media (max-width: 767px) {
  body {
    --mobile-gutter: 8px;
  }

  .hero-section .container-fluid,
  .stats-bar-outer,
  .divisions-section,
  .why-section,
  .shop-enquiry-section,
  .combined-info-section,
  .footer .container-fluid,
  .footer-bottom .container-fluid {
    padding-left: var(--mobile-gutter) !important;
    padding-right: var(--mobile-gutter) !important;
  }

  .stats-bar-outer .container-fluid,
  .divisions-section .container-fluid,
  .why-section .container-fluid,
  .shop-enquiry-section .container-fluid,
  .combined-info-section .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .stats-bar-card,
  .divisions-slider-wrap,
  .why-section .ps-lg-2,
  .shop-half,
  .enquiry-half,
  .info-block-card,
  .cta-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .cta-section {
    margin-left: var(--mobile-gutter) !important;
    margin-right: var(--mobile-gutter) !important;
    width: calc(100% - (var(--mobile-gutter) * 2));
  }
}

@media (max-width: 767px) {
  .footer {
    background: #061f3d !important;
    padding: 38px 20px 0 !important;
    text-align: left;
    border-top: 0;
  }
  .footer .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .footer .row {
    display: block;
    margin: 0;
  }
  .footer .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0;
    border-left: 0 !important;
  }
  .footer .row > [class*="col-"]:not(:first-child) {
    border-top: 1px solid rgba(217, 231, 246, 0.22);
    padding-top: 24px !important;
    margin-top: 26px;
  }
  .footer .col-lg-3:first-child {
    text-align: center;
    padding-bottom: 30px !important;
  }
  .footer-logo {
    width: 100%;
    margin: 0 auto 18px !important;
  }
  .footer-logo .logo-mark {
    width: 100%;
    margin: 0 auto 22px;
    text-align: center;
  }
  .footer-logo .logo-dd {
    width: auto;
    margin: 0 auto;
    transform: none;
    font-size: 78px;
    line-height: 0.82;
    letter-spacing: -7px;
    text-align: center;
  }
  .footer-logo .logo-group {
    width: auto;
    margin: 6px auto 0;
    padding-left: 0;
    transform: none;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 8px;
    text-align: center;
  }
  .footer-logo small {
    margin-top: 14px;
    text-align: center;
    font-size: 8px;
    letter-spacing: 4px;
  }
  .footer p {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px !important;
    line-height: 1.55;
    color: #dceaff;
  }
  .footer-social {
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
  }
  .footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    font-size: 24px;
  }
  .footer h6 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 18px;
  }
  .footer ul li a {
    font-size: 15px;
    line-height: 2;
    color: #dceaff;
  }
  .footer-contact-row {
    align-items: flex-start;
    gap: 14px;
    font-size: 16px !important;
    line-height: 1.45;
    margin-bottom: 18px;
  }
  .footer-contact-row i {
    font-size: 24px;
    margin-top: 1px;
  }
  .footer-bottom {
    background: #061f3d !important;
    border-top: 1px solid rgba(217, 231, 246, 0.22) !important;
    margin: 28px -20px 0 !important;
    padding: 24px 20px 28px !important;
    text-align: center;
    box-shadow: none;
  }
  .footer-bottom .container-fluid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 16px !important;
  }
  .footer-bottom span:first-child {
    font-size: 17px;
    font-weight: 800;
    color: #dceaff;
  }
  .footer-bottom-links {
    justify-content: center;
    gap: 0;
    font-size: 14px;
    font-weight: 800;
    color: #dceaff;
    line-height: 1.7;
  }
  .footer-bottom-links a {
    margin: 0 8px;
    color: #dceaff;
  }
  .footer-credit {
    margin-left: 0;
    font-size: 17px;
    font-weight: 800;
    color: #dceaff;
  }
  .bottom-acc-bar {
    border-radius: 22px 22px 0 0;
    overflow: hidden;
  }
}

/* ===== ANIMATIONS & SCROLL REVEALS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hero animations on load */
.hero-section h1 {
  animation: fadeInUp 0.7s ease both;
}
.hero-section .tagline {
  animation: fadeInUp 0.7s 0.15s ease both;
}
.hero-section p {
  animation: fadeInUp 0.7s 0.25s ease both;
}
.hero-section .d-flex.flex-wrap {
  animation: fadeInUp 0.7s 0.35s ease both;
}
.hero-trust-icons {
  animation: fadeInUp 0.7s 0.45s ease both;
}
.hero-img-container {
  animation: fadeInRight 0.8s 0.2s ease both;
}

/* Floating badges */
.floating-badge {
  animation: floatBadge 3s ease-in-out infinite;
}
.fb-quality {
  animation-delay: 0.8s;
}
.fb-trust {
  animation-delay: 1.4s;
}
.fb-care {
  animation-delay: 2s;
}

/* Stats bar */
.stats-bar-card {
  animation: scaleIn 0.6s 0.1s ease both;
}
.stat-item {
  animation: fadeInUp 0.5s ease both;
}

/* Scroll-reveal base */
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}

/* =============================================
   HERO AND STATS VIEWPORT ALIGNMENT (FIGMA MATCH)
   ============================================= */
@media (min-width: 992px) {
  .acc-bar {
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .acc-bar .container-fluid {
    width: 100%;
  }

  .main-nav {
    height: 88px;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .main-nav .container-fluid {
    width: 100%;
  }

  .hero-viewport {
    height: calc(100vh - 120px);
    height: calc(100dvh - 120px);
    min-height: 648px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .hero-viewport .hero-section {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    padding: 0 !important;
    background-size: auto clamp(440px, 24vw, 500px) !important;
    background-position: right 18px top 18px !important;
  }
  .hero-viewport .hero-section .container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .hero-viewport .hero-section .row {
    width: 100%;
    min-height: 0;
    padding-top: 0;
  }

  .hero-viewport .stats-bar-outer {
    background: transparent;
    padding: 0;
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    flex-shrink: 0;
  }

  .hero-viewport .stats-bar-card {
    background: #1a3c6e !important;
    border-radius: 20px !important;
    padding: 12px 24px !important;
    box-shadow: 0 10px 30px rgba(26, 60, 110, 0.16) !important;
  }

  .hero-viewport .hero-img-container {
    top: 12px;
    left: 47%;
    width: 390px;
    height: 500px;
  }
  .hero-viewport .fb-innovation {
    top: -5%;
    left: 224px;
    width: 104px;
    height: 104px;
    font-size: 13px;
  }
  .hero-viewport .fb-quality {
    top: 20%;
    left: 140px;
    width: 88px;
    height: 88px;
    font-size: 12px;
  }
  .hero-viewport .fb-trust {
    top: 45%;
    left: 216px;
    width: 78px;
    height: 78px;
    font-size: 10.5px;
  }
  .hero-viewport .fb-care {
    top: 62%;
    left: 276px;
    width: 72px;
    height: 72px;
    font-size: 9.5px;
  }
  .hero-viewport .floating-badge {
    animation: floatBadge 3.2s ease-in-out infinite !important;
    will-change: transform;
  }
  .hero-viewport .fb-innovation {
    animation-delay: 0s !important;
  }
  .hero-viewport .fb-quality {
    animation-delay: 0.45s !important;
  }
  .hero-viewport .fb-trust {
    animation-delay: 0.9s !important;
  }
  .hero-viewport .fb-care {
    animation-delay: 1.35s !important;
  }
}

@media screen and (min-width: 992px) and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  @supports not (-webkit-hyphens: none) {
    .hero-viewport .fb-innovation {
      left: 244px;
    }

    .hero-viewport .fb-care {
      left: 274px;
    }
  }
}

@media (min-width: 768px) {
  .main-nav .btn-ddshop {
    position: relative !important;
    top: auto !important;
    align-self: center;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px;
    min-height: 40px;
    padding: 0 18px !important;
    line-height: 1;
  }
}
