:root {
  --cubix-primary: #140e13;
  --cubix-secondary: #c06522;
  --cubix-ink: #140e13;
  --cubix-muted: #5d6c7b;
  --cubix-soft: #f4ece8;
  --cubix-line: #140e13;
  --cubix-cream: #f4ece8;
  --cubix-sage: #369392;
  --cubix-teal: #006764;
  --cubix-white: #ffffff;
}

body {
  min-height: 100vh;
  color: var(--cubix-ink);
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--cubix-cream);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.nav-link,
.btn {
  font-family: roc-grotesk, "DM Sans", Arial, sans-serif;
}

.navbar {
  background: rgba(244, 236, 232, 0.94) !important;
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--cubix-line);
  box-shadow: none;
}

.navbar .container {
  position: relative;
}

.brand-logo {
  max-height: 64px;
  width: auto;
}

.navbar-collapse {
  align-items: center;
  justify-content: space-between;
}

.dan-copy-nav .navbar-collapse {
  justify-content: flex-end;
  gap: clamp(16px, 4vw, 42px);
}

.dan-copy-nav {
  border-bottom: 0;
}

.dan-copy-nav .dan-nav-logo {
  margin: 0;
}

.dan-copy-nav .dan-nav-menu {
  justify-content: flex-end;
  gap: 4px;
}

.navbar-left,
.navbar-right {
  flex: 1 1 0;
  gap: 4px;
}

.navbar-left {
  justify-content: flex-start;
}

.navbar-right {
  justify-content: flex-end;
}

.nav-logo-center {
  flex: 0 0 auto;
  margin: 0 clamp(18px, 4vw, 64px);
}

.mobile-logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.brand-name {
  color: var(--cubix-ink);
  font-weight: 800;
}

.nav-link {
  position: relative;
  border-radius: 999px;
  color: var(--cubix-ink);
  font-weight: 800;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.navbar-nav .nav-link {
  padding: 0.55rem 0.8rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cubix-cream);
  background: var(--cubix-primary);
  box-shadow: 0 4px 0 var(--cubix-secondary);
}

.text-gradient {
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  color: inherit;
}

.bg-gradient-primary-to-secondary {
  background: var(--cubix-secondary);
}

.hero {
  position: relative;
  padding: 92px 0 0;
  background: var(--cubix-primary);
  color: var(--cubix-cream);
  overflow: hidden;
  border-bottom: 0;
}

.hero::after {
  content: none;
}

.hero .text-gradient {
  background: none;
  color: var(--cubix-cream);
}

.hero .badge-soft {
  color: var(--cubix-ink);
  background: var(--cubix-cream);
  border: 2px solid var(--cubix-line);
}

.hero .btn-primary {
  color: var(--cubix-ink);
  background: var(--cubix-secondary);
  border-color: var(--cubix-line);
  box-shadow: 0 5px 0 var(--cubix-line);
}

.hero .btn-outline-dark {
  color: var(--cubix-cream);
  border-color: var(--cubix-cream);
}

.hero .btn-outline-dark:hover {
  color: var(--cubix-ink);
  background: var(--cubix-cream);
  border-color: var(--cubix-line);
}

.page-hero {
  padding: 86px 0 44px;
  background: var(--cubix-sage);
  color: var(--cubix-ink);
  border-bottom: 2px solid var(--cubix-line);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--cubix-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  border: 2px solid var(--cubix-line);
}

.hero h1,
.page-hero h1 {
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1100px;
  margin-inline: auto;
  font-size: clamp(52px, 9vw, 128px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-danngood {
  min-height: min(64vh, 620px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 76px;
}

.hero-lead {
  max-width: 720px;
  color: rgba(244, 236, 232, 0.82);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(320px, 48vw, 640px);
  overflow: hidden;
  border-top: 2px solid var(--cubix-line);
  border-bottom: 2px solid var(--cubix-line);
}

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

.section-divider-top,
.section-divider-bottom {
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 72px;
  color: var(--cubix-cream);
  pointer-events: none;
}

.section-divider-top {
  top: -1px;
  transform: rotate(180deg);
}

.section-divider-bottom {
  bottom: -1px;
}

.section-divider-bottom.is-orange {
  color: var(--cubix-secondary);
}

.section-divider-bottom.is-flip {
  transform: rotate(180deg);
}

.dan-section {
  position: relative;
  padding: clamp(78px, 9vw, 128px) 0;
}

.dan-feature {
  background: var(--cubix-cream);
  color: var(--cubix-ink);
}

.dan-benefits {
  background: var(--cubix-teal);
  color: var(--cubix-cream);
  overflow: hidden;
}

.dan-services {
  background: var(--cubix-secondary);
  color: var(--cubix-ink);
}

.dan-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.dan-split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.dan-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 98px);
  line-height: 0.9;
  text-transform: uppercase;
}

.dan-copy p {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.dan-benefits .dan-copy p {
  color: rgba(244, 236, 232, 0.82);
}

.dan-image-card {
  overflow: hidden;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 10px 10px 0 rgba(20, 14, 19, 0.18);
}

.dan-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.home-showcase {
  padding: 0;
  background: var(--cubix-cream);
}

.showcase-grid {
  border-left: 2px solid var(--cubix-line);
  border-right: 2px solid var(--cubix-line);
}

.showcase-panel {
  min-height: 430px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 5vw, 58px);
  color: var(--cubix-cream);
  border-bottom: 2px solid var(--cubix-line);
  transition: filter 0.2s ease;
}

.showcase-panel:hover {
  color: var(--cubix-cream);
  filter: brightness(0.96);
}

.showcase-panel-primary {
  background: var(--cubix-teal);
  border-right: 2px solid var(--cubix-line);
}

.showcase-panel-secondary {
  background: var(--cubix-secondary);
  color: var(--cubix-ink);
}

.showcase-panel-secondary:hover {
  color: var(--cubix-ink);
}

.showcase-panel span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.showcase-panel h2 {
  max-width: 620px;
  margin: auto 0 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.92;
  text-transform: uppercase;
}

.showcase-panel i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: inherit;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
}

.hero-menu-card {
  position: relative;
  display: grid;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cubix-cream);
  color: var(--cubix-ink);
  box-shadow: 12px 12px 0 var(--cubix-secondary);
}

.hero-menu-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-height: 150px;
  padding: 28px;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  border-bottom: 2px solid var(--cubix-line);
}

.hero-menu-top span {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-menu-top strong {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-menu-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  color: var(--cubix-ink);
  border-bottom: 2px solid var(--cubix-line);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.hero-menu-row:last-child {
  border-bottom: 0;
}

.hero-menu-row:hover {
  color: var(--cubix-cream);
  background: var(--cubix-primary);
}

.hero-menu-row span {
  font-weight: 900;
  color: var(--cubix-secondary);
}

.hero-menu-row strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-menu-row i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.hero-copy {
  color: var(--cubix-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  border-width: 2px;
}

.btn-primary {
  color: var(--cubix-white);
  background: var(--cubix-teal);
  border-color: var(--cubix-line);
  box-shadow: 0 4px 0 var(--cubix-line);
}

.btn-primary:hover {
  color: var(--cubix-white);
  background: #005956;
  border-color: var(--cubix-line);
  transform: translateY(1px);
  box-shadow: 0 3px 0 var(--cubix-line);
}

.btn-outline-dark:hover {
  background: var(--cubix-ink);
  border-color: var(--cubix-line);
}

.profile-frame {
  position: relative;
  max-width: 500px;
  margin-inline: auto;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 18px 0;
  overflow: visible;
  background: transparent;
}

.profile-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 82%;
  height: 78%;
  border-radius: 50%;
  background: var(--cubix-primary);
  transform: translateX(-50%);
  box-shadow: 0 24px 70px rgba(122, 31, 31, 0.16);
}

.profile-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  background: transparent;
  opacity: 0.88;
  filter: drop-shadow(0 24px 36px rgba(20, 26, 44, 0.18));
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--cubix-cream);
  border-top: 2px solid var(--cubix-line);
  border-bottom: 2px solid var(--cubix-line);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--cubix-cream);
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title p {
  color: var(--cubix-muted);
}

.feature-card,
.service-card,
.login-panel,
.gallery-card {
  height: 100%;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
}

.feature-card,
.service-card,
.login-panel {
  padding: 28px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: var(--cubix-secondary);
  border: 1px solid var(--cubix-line);
}

.feature-card h4 {
  text-transform: uppercase;
  line-height: 1.1;
}

.feature-card a {
  color: var(--cubix-teal);
}

.icon-bubble {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  border: 2px solid var(--cubix-line);
  font-size: 24px;
  margin-bottom: 18px;
}

.icon-bubble svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.icon-certificate-plain,
.icon-service-plain {
  width: auto;
  height: auto;
  color: var(--cubix-white);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.icon-certificate-plain svg,
.icon-service-plain svg {
  width: 42px;
  height: 42px;
}

.icon-service-plain .stroke-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.easy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.easy-card {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  padding: 22px;
  background: var(--cubix-white);
  box-shadow: 6px 6px 0 rgba(20, 14, 19, 0.16);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
}

.easy-card i {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  border: 2px solid var(--cubix-line);
  font-size: 22px;
}

.stat-box {
  border-left: 2px solid var(--cubix-line);
  color: var(--cubix-ink);
  padding: clamp(30px, 4vw, 48px);
  text-align: center;
}

.stat-box:first-child {
  border-left: 0;
}

.stat-box i {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  border: 2px solid var(--cubix-line);
  border-radius: 50%;
  font-size: 28px;
}

.stat-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
}

.stat-box span:last-child {
  display: block;
  max-width: 260px;
  margin-inline: auto;
  font-weight: 800;
  line-height: 1.25;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  padding: 18px;
  background: var(--cubix-cream);
}

.process-item span {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cubix-cream);
  font-weight: 800;
  background: var(--cubix-primary);
  border: 2px solid var(--cubix-line);
}

.price-card {
  border-radius: 8px;
  padding: 30px;
  border: 2px solid var(--cubix-line);
  background: var(--cubix-white);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
}

.price-card strong {
  display: block;
  color: var(--cubix-primary);
  font-size: 58px;
  line-height: 1;
}

.price-card strong .per-person {
  font-size: 0.42em;
  margin-left: 4px;
  vertical-align: baseline;
}

.food-details-hero,
.food-details-hero .hero-copy,
.food-details-hero .text-gradient {
  color: var(--cubix-ink);
}

.food-details-hero {
  background: var(--cubix-cream);
  color: var(--cubix-ink);
  border-bottom: 0;
}

.food-details-hero .badge-soft {
  color: var(--cubix-ink);
}

.food-details-hero .text-muted {
  color: var(--cubix-ink) !important;
}

.food-benefits-section {
  background: var(--cubix-teal);
  border-top: 0;
  border-bottom: 0;
}

.food-benefits-section .section-title,
.food-benefits-section .section-title p {
  color: var(--cubix-cream) !important;
}

.food-mode-section {
  background: var(--cubix-teal);
  border-top: 0;
  border-bottom: 0;
}

.food-mode-section .section-title,
.food-mode-section .section-title p {
  color: var(--cubix-cream) !important;
}

.food-easy-section {
  border-top: 0;
  border-bottom: 0;
}

.food-benefits-section .service-card,
.food-mode-section .service-card,
.section-soft .easy-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.food-benefits-section .service-card {
  color: var(--cubix-cream);
}

.food-benefits-section .service-card p {
  color: rgba(244, 236, 232, 0.86);
}

.food-benefits-section .service-card h5,
.food-mode-section .service-card h4 {
  font-size: 21px;
  line-height: 1.1;
}

.food-benefits-section .service-card p,
.food-mode-section .service-card p {
  font-size: 21px;
  line-height: 1.6;
}

.food-mode-section .service-card,
.food-mode-section .service-card p,
.section-soft .easy-card {
  color: var(--cubix-cream);
}

.food-easy-section .easy-card {
  color: var(--cubix-ink);
}

.training-alert {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  max-width: 760px;
  margin-inline: auto;
  color: var(--cubix-ink);
  text-align: left;
}

.training-alert-copy {
  flex: 0 1 auto;
}

.training-alert-heading {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.training-alert-icon {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cubix-ink);
  background: transparent;
  font-size: 32px;
}

.training-alert-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.training-alert h2 {
  margin-bottom: 0;
  color: var(--cubix-ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.training-alert p {
  max-width: 820px;
  margin: 0;
  color: var(--cubix-ink);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 400;
  line-height: 1.55;
}

.training-alert-certificate {
  flex: 0 0 clamp(170px, 22vw, 240px);
  align-self: center;
  width: clamp(170px, 22vw, 240px);
}

.training-alert-certificate img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(20, 14, 19, 0.14);
}

.gallery-card {
  overflow: hidden;
}

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

.gallery-card p {
  margin: 0;
  padding: 16px 18px;
  font-weight: 800;
}

.google-review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  padding: 42px;
  background: var(--cubix-white);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
}

.google-review-panel p {
  color: var(--cubix-muted);
  max-width: 720px;
}

.google-review-score {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.review-stars {
  color: var(--cubix-secondary);
  font-size: 24px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.halal-audience-card {
  text-align: center;
}

.halal-audience-card h4 {
  margin-bottom: 0;
}

.halal-details-hero {
  background: var(--cubix-cream);
  border-bottom: 0;
}

.halal-details-hero .text-gradient,
.halal-details-hero .hero-copy {
  color: var(--cubix-ink);
}

.halal-audience-section,
.halal-category-section {
  background: var(--cubix-teal);
  color: var(--cubix-cream);
  border-top: 0;
  border-bottom: 0;
}

.halal-audience-section .section-title h2,
.halal-category-section .section-title h2 {
  color: var(--cubix-cream);
}

.halal-audience-section .service-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.halal-audience-section .halal-audience-card h4 {
  color: var(--cubix-white);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
}

.halal-audience-section .icon-bubble {
  color: var(--cubix-ink);
  background: transparent;
  border: 0;
}

.halal-audience-section .icon-bubble img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.halal-challenges-section,
.halal-journey-section {
  border-top: 0;
  border-bottom: 0;
}

.category-image-card {
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
  display: flex;
  align-items: center;
}

.category-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.halal-journey {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.journey-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  padding: 22px;
  background: var(--cubix-white);
  box-shadow: 6px 6px 0 rgba(20, 14, 19, 0.14);
}

.halal-journey-section .journey-step {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.journey-number {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cubix-cream);
  font-weight: 900;
  background: var(--cubix-primary);
  border: 2px solid var(--cubix-line);
}

.journey-step h4 {
  margin-bottom: 8px;
}

.journey-step p {
  margin-bottom: 0;
  color: var(--cubix-muted);
}

.calendar-board {
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-teal);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
  overflow: hidden;
}

.calendar-month {
  padding: 22px 26px;
  color: var(--cubix-white);
  background: var(--cubix-teal);
}

.calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px;
  background: var(--cubix-teal);
  border-bottom: 2px solid var(--cubix-line);
}

.calendar-tab {
  border: 2px solid var(--cubix-line);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--cubix-white);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.calendar-tab:hover,
.calendar-tab.active {
  color: var(--cubix-teal);
  background: var(--cubix-cream);
  box-shadow: 0 4px 0 var(--cubix-line);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: rgba(244, 236, 232, 0.35);
  gap: 1px;
}

.calendar-grid[hidden] {
  display: none;
}

.calendar-weekday,
.calendar-day {
  background: var(--cubix-cream);
}

.calendar-weekday {
  padding: 10px 6px;
  color: var(--cubix-muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.calendar-day {
  min-height: 86px;
  padding: 8px;
}

.calendar-day.muted {
  background: rgba(244, 236, 232, 0.72);
  color: rgba(20, 14, 19, 0.56);
}

.calendar-day strong {
  display: block;
  margin-bottom: 7px;
  font-size: 22px;
  line-height: 1;
}

.calendar-entry {
  display: block;
  border-radius: 8px;
  padding: 7px 8px;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.calendar-entry:hover {
  color: var(--cubix-cream);
  filter: brightness(0.95);
}

.calendar-note {
  padding: 14px 20px;
  color: var(--cubix-white);
  background: var(--cubix-teal);
}

.cart-summary,
.cart-form {
  height: 100%;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
  padding: 28px;
}

.cart-hero {
  padding: 58px 0 34px;
}

.cart-hero .text-gradient {
  color: var(--cubix-white);
}

.cart-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.admin-tabs {
  border-bottom: 0;
  gap: 10px;
}

.admin-tabs .nav-link {
  border: 2px solid var(--cubix-line);
  border-radius: 999px;
  color: var(--cubix-ink);
  background: var(--cubix-white);
  font-weight: 900;
}

.admin-tabs .nav-link.active,
.admin-tabs .nav-link:hover {
  color: var(--cubix-white);
  background: var(--cubix-teal);
  border-color: var(--cubix-line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cubix-line);
}

.summary-row span {
  color: var(--cubix-muted);
}

.summary-total {
  color: var(--cubix-primary);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.cart-certificate-preview {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cubix-white);
  border: 1px solid rgba(20, 14, 19, 0.12);
}

.cart-certificate-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.maintenance-section {
  min-height: calc(100vh - 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0;
}

.maintenance-title {
  font-size: clamp(48px, 10vw, 132px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.mesti-page {
  background: var(--cubix-cream);
  color: var(--cubix-ink);
}

.mesti-row {
  padding: clamp(58px, 8vw, 104px) 0;
}

.mesti-row h1,
.mesti-row h2 {
  max-width: 980px;
  margin: 0 auto clamp(28px, 4vw, 46px);
  color: var(--cubix-teal);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.mesti-problem-row,
.mesti-purpose-row {
  background: var(--cubix-teal);
  color: var(--cubix-white);
}

.mesti-problem-row h1,
.mesti-purpose-row h2 {
  color: var(--cubix-cream);
}

.mesti-about-row p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--cubix-ink);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.mesti-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.mesti-list p {
  min-height: 86px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cubix-white);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1.15;
}

.problem-list p::before {
  content: "X";
  margin-right: 14px;
  color: #ffdad4;
  font-weight: 900;
}

.purpose-list p::before {
  content: "✓";
  margin-right: 14px;
  color: #dbfff5;
  font-weight: 900;
}

.mesti-who-row {
  background: var(--cubix-white);
}

.mesti-who-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mesti-who-grid div {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 2px solid rgba(0, 103, 100, 0.18);
  border-radius: 8px;
  background: var(--cubix-cream);
  color: var(--cubix-ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.mesti-issue-card .icon-bubble {
  color: var(--cubix-ink);
}

.halal-audience-section .mesti-issue-card {
  min-height: 190px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.halal-audience-section .mesti-issue-card h4 {
  color: var(--cubix-white);
}

.halal-audience-section .mesti-issue-card .icon-bubble {
  width: auto;
  height: auto;
  margin-bottom: 14px;
  color: var(--cubix-white);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.mesti-definition {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.mesti-definition p {
  margin: 0;
  color: var(--cubix-ink);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.8;
}

.mesti-applicant-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  text-align: center;
}

.mesti-applicant-section {
  background: var(--cubix-cream);
  color: var(--cubix-ink);
}

.mesti-applicant-section .section-title h2 {
  color: var(--cubix-ink);
}

.mesti-applicant-card h4 {
  margin: 0;
  color: var(--cubix-ink);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
}

.mesti-applicant-card .icon-bubble {
  width: 58px;
  height: 58px;
  margin: 0;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  border: 0;
  border-radius: 50%;
  font-size: 28px;
}

.mesti-purpose-section {
  background: var(--cubix-teal);
  color: var(--cubix-white);
}

.mesti-purpose-section .section-title h2 {
  color: var(--cubix-cream);
}

.halal-journey-section .mesti-purpose-card {
  border: 2px solid rgba(20, 14, 19, 0.18);
  background: var(--cubix-white);
  box-shadow: 6px 6px 0 rgba(20, 14, 19, 0.12);
}

.mesti-purpose-card h4 {
  color: var(--cubix-ink);
}

.footer {
  background: var(--cubix-cream) !important;
  border-top: 0;
}

.home-hero {
  padding: clamp(54px, 7vw, 92px) 0 clamp(58px, 8vw, 108px);
  background: var(--cubix-primary);
  color: var(--cubix-cream);
  border-bottom: 2px solid var(--cubix-line);
  overflow: hidden;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.home-hero-copy h1 {
  max-width: 820px;
  margin: 20px 0 22px;
  color: var(--cubix-cream);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero-copy p {
  max-width: 690px;
  color: rgba(244, 236, 232, 0.84);
  font-size: 1.13rem;
  line-height: 1.75;
}

.home-eyebrow {
  color: var(--cubix-ink);
  background: var(--cubix-secondary);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.home-hero .btn-primary,
.home-cta .btn-primary {
  color: var(--cubix-ink);
  background: var(--cubix-secondary);
  border-color: var(--cubix-line);
  box-shadow: 0 5px 0 var(--cubix-line);
}

.home-hero .btn-outline-dark {
  color: var(--cubix-cream);
  border-color: var(--cubix-cream);
}

.home-hero .btn-outline-dark:hover {
  color: var(--cubix-ink);
  background: var(--cubix-cream);
  border-color: var(--cubix-line);
}

.home-hero-media {
  position: relative;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 10px 10px 0 rgba(192, 101, 34, 0.9);
  overflow: hidden;
}

.home-hero-media img {
  width: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  padding: 18px;
  color: var(--cubix-ink);
  background: var(--cubix-cream);
  box-shadow: 5px 5px 0 rgba(20, 14, 19, 0.2);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 32px;
  line-height: 1;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--cubix-secondary);
  font-weight: 900;
  text-transform: uppercase;
}

.home-service-band,
.home-faq-section {
  padding: clamp(70px, 8vw, 118px) 0;
  background: var(--cubix-cream);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-service-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  min-height: 100%;
  color: var(--cubix-ink);
  background: var(--cubix-white);
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-service-card:hover {
  color: var(--cubix-ink);
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(20, 14, 19, 0.2);
}

.home-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--cubix-cream);
  border-bottom: 2px solid var(--cubix-line);
}

.home-service-card div {
  padding: 24px;
}

.home-service-card i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 2px solid var(--cubix-line);
  border-radius: 50%;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  font-size: 22px;
}

.home-service-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.home-service-card p {
  color: var(--cubix-muted);
  line-height: 1.65;
}

.home-service-card span {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cubix-secondary);
  font-weight: 900;
}

.home-process-section {
  padding: clamp(78px, 8vw, 122px) 0;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  border-top: 2px solid var(--cubix-line);
  border-bottom: 2px solid var(--cubix-line);
}

.home-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.home-process-grid h2,
.home-testimonial-section h2,
.home-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-process-grid p {
  color: rgba(244, 236, 232, 0.82);
  line-height: 1.75;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  color: var(--cubix-ink);
  background: var(--cubix-cream);
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
}

.process-item span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cubix-line);
  border-radius: 50%;
  color: var(--cubix-cream);
  background: var(--cubix-primary);
  font-weight: 900;
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.process-item p {
  margin-bottom: 0;
  color: var(--cubix-muted);
}

.home-proof-section {
  padding: clamp(44px, 6vw, 78px) 0;
  background: var(--cubix-secondary);
}

.home-stats {
  background: var(--cubix-cream);
}

.home-testimonial-section {
  padding: clamp(74px, 8vw, 118px) 0;
  background: var(--cubix-primary);
  color: var(--cubix-cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.testimonial-grid p {
  max-width: 680px;
  color: rgba(244, 236, 232, 0.82);
  line-height: 1.75;
}

.quote-card {
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--cubix-ink);
  background: var(--cubix-cream);
  box-shadow: 9px 9px 0 var(--cubix-secondary);
}

.quote-card p {
  margin: 20px 0;
  color: var(--cubix-ink);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.18;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  height: 100%;
  padding: 26px;
  background: var(--cubix-white);
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
}

.faq-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.faq-card p {
  margin-bottom: 0;
  color: var(--cubix-muted);
  line-height: 1.65;
}

.home-cta {
  padding: clamp(66px, 8vw, 108px) 0;
  background: var(--cubix-secondary);
  color: var(--cubix-ink);
}

.home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.home-cta p {
  max-width: 700px;
  margin-bottom: 0;
  line-height: 1.75;
}

.home-cta .section-kicker {
  color: var(--cubix-ink);
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.dan-copy-home {
  background: var(--cubix-cream);
}

.dan-copy-nav .order-link {
  color: var(--cubix-white);
  background: var(--cubix-teal);
  box-shadow: none;
}

.dan-copy-nav .nav-link:hover,
.dan-copy-nav .nav-link.active {
  color: var(--cubix-ink);
  background: transparent;
  outline: 2px solid var(--cubix-line);
  outline-offset: -2px;
  box-shadow: none;
}

.dan-copy-nav .order-link:hover {
  color: var(--cubix-white);
  background: var(--cubix-teal);
  outline: 0;
}

.dan-copy-hero {
  position: relative;
  background: var(--cubix-cream);
  color: var(--cubix-ink);
  overflow: hidden;
  padding-bottom: 0;
}

.dan-copy-hero.has-gallery-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/galeri2.png");
  background-position: center;
  background-size: cover;
  opacity: 0.28;
  z-index: 0;
}

.dan-copy-hero.has-gallery-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 236, 232, 0.58);
  z-index: 1;
}

.dan-copy-hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(62vh, 600px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(58px, 7vw, 98px) 0 clamp(48px, 6vw, 82px);
}

.hero-logo-stack img {
  width: 96px;
  height: auto;
  margin-bottom: 24px;
}

.dan-copy-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: clamp(40px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dan-copy-hero p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--cubix-ink);
  font-size: 1.16rem;
  line-height: 1.65;
}

.dan-copy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.dan-copy-faq .btn-primary {
  color: var(--cubix-cream);
  background: var(--cubix-primary);
  border-color: var(--cubix-line);
  box-shadow: 0 5px 0 var(--cubix-secondary);
}

.open-daily {
  margin-top: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.dan-copy-hero-image {
  height: clamp(340px, 56vw, 720px);
  border-top: 2px solid var(--cubix-line);
  border-bottom: 2px solid var(--cubix-line);
}

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

.dan-copy-section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.dan-copy-story {
  position: relative;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  margin-top: 0;
  padding-top: clamp(76px, 9vw, 132px);
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
}

.dan-copy-story::before {
  content: none;
}

.dan-copy-story .container {
  position: relative;
  z-index: 1;
}

.dan-copy-product {
  position: relative;
  color: var(--cubix-ink);
  background: var(--cubix-cream);
  border-top: 0;
  border-bottom: 0;
  margin-top: 0;
  padding-top: clamp(76px, 9vw, 132px);
  overflow: hidden;
}

.dan-copy-product::before {
  content: none;
}

.dan-copy-product .container {
  position: relative;
  z-index: 1;
}

.dan-copy-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.dan-copy-split.reverse {
  grid-template-columns: minmax(300px, 1.08fr) minmax(0, 0.92fr);
}

.dan-copy-text h2,
.dan-copy-team .section-title h2,
.dan-copy-reviews .section-title h2,
.faq-layout h2 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dan-copy-text h2 {
  font-size: clamp(36px, 5.2vw, 68px);
}

.dan-copy-team .section-title h2,
.dan-copy-reviews .section-title h2 {
  white-space: nowrap;
  font-size: clamp(34px, 5vw, 72px);
}

.dan-copy-text p {
  max-width: 620px;
  color: var(--cubix-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.dan-copy-story .dan-copy-text p,
.dan-copy-story .text-arrow {
  color: rgba(244, 236, 232, 0.84);
}

.dan-copy-product .dan-copy-text p,
.dan-copy-product .text-arrow {
  color: var(--cubix-muted);
}

.dan-copy-pjkm {
  background: var(--cubix-teal);
  color: var(--cubix-cream);
}

.dan-copy-pjkm .dan-copy-text h2,
.dan-copy-pjkm .dan-copy-text p,
.dan-copy-pjkm .text-arrow {
  color: var(--cubix-cream);
}

.dan-copy-pjkm .dan-copy-image-card {
  background: var(--cubix-white);
  box-shadow: 10px 10px 0 rgba(244, 236, 232, 0.22);
}

.dan-copy-product .dan-copy-image-card,
.dan-copy-pjkm .dan-copy-image-card {
  max-width: 520px;
  margin-inline: auto;
}

.dan-copy-product .dan-copy-image-card img,
.dan-copy-pjkm .dan-copy-image-card img {
  min-height: 360px;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--cubix-ink);
  font-weight: 900;
}

.dan-copy-image-card {
  overflow: hidden;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 10px 10px 0 rgba(20, 14, 19, 0.18);
}

.dan-copy-image-card img {
  width: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.dan-copy-mini-services {
  position: relative;
  padding: clamp(44px, 6vw, 78px) 0;
  background: var(--cubix-cream);
  border-bottom: 0;
  margin-top: 0;
  padding-top: clamp(44px, 6vw, 78px);
  overflow: hidden;
}

.dan-copy-mini-services::before {
  content: none;
}

.dan-copy-mini-services .container {
  position: relative;
  z-index: 1;
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-service {
  min-height: 100%;
  padding: clamp(18px, 3vw, 30px);
  color: var(--cubix-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.mini-service:hover {
  color: var(--cubix-ink);
}

.mini-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--cubix-ink);
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 38px;
}

.mini-service h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.mini-service p {
  color: var(--cubix-muted);
  line-height: 1.65;
}

.mini-service span {
  color: var(--cubix-ink);
  font-weight: 900;
}

.client-showcase {
  background: var(--cubix-cream);
  color: var(--cubix-ink);
  padding-top: clamp(46px, 6vw, 82px);
}

.client-showcase .section-title {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.client-showcase .section-title h2 {
  white-space: nowrap;
  color: var(--cubix-ink);
  font-size: clamp(30px, 4vw, 48px);
}

.client-showcase .section-title p {
  color: var(--cubix-muted);
}

.contact-hero {
  background: var(--cubix-cream);
  color: var(--cubix-ink);
  padding-top: clamp(46px, 6vw, 82px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.contact-details-section {
  background: var(--cubix-teal);
  color: var(--cubix-cream);
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

.contact-image-section {
  background: var(--cubix-cream);
}

.contact-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  text-align: center;
}

.contact-image-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 10px 10px 0 rgba(20, 14, 19, 0.18);
  max-width: none;
  margin-inline: 0;
}

.contact-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.contact-info-panel h1 {
  margin-bottom: 0;
  color: var(--cubix-ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: none;
}

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  max-width: 1040px;
  margin-inline: auto;
  padding-top: 0;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cubix-teal);
  background: var(--cubix-cream);
  font-size: 24px;
}

.contact-info-item h2 {
  margin-bottom: 6px;
  color: var(--cubix-cream);
  font-size: 19px;
  font-weight: 400;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: var(--cubix-cream);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--cubix-white);
}

.client-interlace-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
  margin-top: 40px;
  padding-bottom: 0;
}

.client-tile {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cubix-white);
  border: 1px solid rgba(0, 103, 100, 0.16);
  box-shadow: 0 10px 24px rgba(20, 14, 19, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.client-tile:nth-child(2n) {
  transform: none;
}

.client-tile:nth-child(3n) {
  transform: none;
}

.client-tile:nth-child(5n) {
  transform: none;
}

.client-tile:hover {
  transform: none;
  box-shadow: 0 18px 42px rgba(20, 14, 19, 0.14);
}

.client-tile img {
  width: 100%;
  height: 156px;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: clamp(16px, 2vw, 24px);
  filter: saturate(0.92) contrast(1.02);
}

.client-tile::after {
  content: none;
}

.client-tile span {
  display: none;
}

.dan-copy-team {
  background: var(--cubix-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.team-card img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: contain;
  object-position: top center;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.team-card h3 {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 900;
}

.team-card p {
  color: var(--cubix-muted);
  font-weight: 700;
}

.team-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding: 30px;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
}

.team-cta h4 {
  margin-bottom: 6px;
  font-size: 28px;
  font-weight: 900;
}

.team-cta p {
  margin-bottom: 0;
  color: var(--cubix-muted);
}

.dan-copy-reviews {
  color: var(--cubix-cream);
  background: var(--cubix-teal);
  border-top: 0;
  border-bottom: 0;
}

.dan-copy-reviews .section-title p {
  color: rgba(244, 236, 232, 0.78);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--cubix-ink);
  background: var(--cubix-cream);
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.review-card:hover {
  color: var(--cubix-ink);
  transform: translateY(-4px);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.16);
}

.review-card p {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-person span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cubix-cream);
  background: var(--cubix-secondary);
  font-weight: 900;
}

.review-person strong,
.review-person small {
  display: block;
}

.review-person small {
  color: var(--cubix-muted);
  font-weight: 700;
}

.dan-copy-faq {
  background: var(--cubix-cream);
  border-top: 2px solid var(--cubix-line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.faq-layout > div > p {
  color: var(--cubix-muted);
  line-height: 1.7;
}

.faq-list {
  border-top: 2px solid var(--cubix-line);
}

.faq-row {
  border-bottom: 2px solid var(--cubix-line);
}

.faq-row summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 900;
}

.faq-row summary::-webkit-details-marker {
  display: none;
}

.faq-row summary i {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-row[open] summary i {
  transform: rotate(45deg);
}

.faq-row p {
  max-width: 760px;
  margin: -8px 0 24px;
  color: var(--cubix-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-contact {
  margin-top: 28px;
  padding: 28px;
  border: 2px solid var(--cubix-line);
  border-radius: 8px;
  background: var(--cubix-white);
  box-shadow: 7px 7px 0 rgba(20, 14, 19, 0.18);
}

.faq-contact h4 {
  font-size: 28px;
  font-weight: 900;
}

.dan-copy-footer {
  padding: 56px 0 28px;
  color: var(--cubix-cream);
  background: var(--cubix-teal);
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 112px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 30px 0;
}

.footer-links a,
.footer-bottom-line a {
  color: var(--cubix-cream);
  font-weight: 900;
}

.footer-bottom-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 0;
  color: rgba(244, 236, 232, 0.76);
}

.footer-bottom-line span:last-child {
  display: flex;
  gap: 18px;
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 92px;
  }

  .navbar-collapse {
    width: 100%;
    padding-top: 76px;
  }

  .navbar-left,
  .navbar-right {
    justify-content: flex-start;
  }

  .nav-logo-center {
    display: none !important;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-danngood {
    min-height: 560px;
  }

  .hero-image-wrap {
    height: 360px;
  }

  .section-divider-top,
  .section-divider-bottom {
    height: 48px;
  }

  .dan-split,
  .dan-split-reverse {
    grid-template-columns: 1fr;
  }

  .dan-image-card img {
    min-height: 300px;
  }

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

  .showcase-grid {
    border-left: 0;
    border-right: 0;
  }

  .showcase-panel {
    min-height: 330px;
  }

  .showcase-panel-primary {
    border-right: 0;
  }

  .stat-box,
  .stat-box:first-child {
    border-left: 0;
    border-top: 2px solid var(--cubix-line);
  }

  .stat-box:first-child {
    border-top: 0;
  }

  .calendar-grid {
    display: block;
    background: var(--cubix-teal);
  }

  .calendar-weekday {
    display: none;
  }

  .calendar-day {
    min-height: auto;
    border-top: 1px solid rgba(244, 236, 232, 0.35);
  }

  .calendar-day:not(.has-event) {
    display: none;
  }

  .calendar-day.muted {
    display: none;
  }

  .halal-journey {
    grid-template-columns: 1fr;
  }

  .easy-grid {
    grid-template-columns: 1fr;
  }

  .google-review-panel {
    grid-template-columns: 1fr;
  }

  .google-review-score {
    justify-items: start;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-image-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .contact-image-card img {
    aspect-ratio: 4 / 3;
  }

  .home-hero-grid,
  .home-process-grid,
  .testimonial-grid,
  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-hero-media img {
    min-height: 360px;
  }

  .home-service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }

  .dan-copy-hero-inner {
    min-height: auto;
  }

  .dan-copy-split,
  .dan-copy-split.reverse,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .mini-service-grid,
  .client-interlace-grid,
  .mesti-who-grid,
  .review-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mesti-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 575.98px) {
  .home-hero-copy h1 {
    font-size: 44px;
  }

  .home-hero-actions,
  .home-cta-actions {
    display: grid;
  }

  .home-hero-actions .btn,
  .home-cta-actions .btn {
    width: 100%;
  }

  .client-interlace-grid {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .client-tile:nth-child(2n),
  .client-tile:nth-child(3n),
  .client-tile:nth-child(5n) {
    transform: none;
  }

  .client-tile img {
    height: 138px;
  }

  .mesti-who-grid {
    grid-template-columns: 1fr;
  }

  .mesti-list p {
    min-height: auto;
  }

  .training-alert {
    flex-direction: column;
    text-align: center;
  }

  .training-alert-heading {
    justify-content: center;
  }

  .training-alert-certificate {
    flex-basis: 170px;
    margin-left: 0;
  }

  .hero-note {
    position: static;
    max-width: none;
    border-width: 2px 0 0;
    border-radius: 0;
    box-shadow: none;
  }

  .home-service-card {
    grid-template-rows: 220px 1fr;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .dan-copy-hero h1 {
    font-size: 40px;
  }

  .dan-copy-actions {
    display: grid;
    width: 100%;
  }

  .dan-copy-actions .btn {
    width: 100%;
  }

  .dan-copy-hero-image {
    height: 330px;
  }

  .dan-copy-image-card img {
    min-height: 300px;
  }

  .mini-service-grid,
  .review-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 280px;
  }

  .footer-bottom-line {
    flex-direction: column;
  }
}
