/* ================================================
   Aaray PACKAGING — COMPONENTS
   components.css — navbar, cards, buttons, badges, forms, topbar
   ================================================ */

/* ---- TOPBAR ---- */
.topbar {
  height: 42px;
  background: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-pad);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1001;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__phone {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  font-weight: 500;
}

.topbar__phone:hover {
  color: var(--color-gold);
}

.topbar__whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.topbar__whatsapp:hover {
  color: #25d366;
}

.topbar__whatsapp img {
  width: 16px;
  height: 16px;
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 var(--container-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--transition-slow),
    box-shadow var(--transition-slow),
    backdrop-filter var(--transition-slow);
  will-change: background;
}

/* Transparent state (homepage hero) */
.navbar--transparent {
  background: transparent;
}

/* Scrolled / inner page state */
.navbar--glass {
  background: var(--color-navy-85);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 32px rgba(15, 18, 57, 0.3);
}

/* Inner pages always start glass */
.navbar--inner {
  background: var(--color-navy);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.navbar__logo img {
  height: 70px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    color var(--transition),
    background var(--transition);
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

/* Products Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    color var(--transition),
    background var(--transition);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
}

.navbar__dropdown-toggle:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.navbar__dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.navbar__dropdown:hover .navbar__dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Mega menu */
.navbar__mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 680px;
  background: rgba(15, 18, 57, 0.95);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius-card);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.navbar__dropdown:hover .navbar__mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-col__link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 0;
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.mega-col__link:hover {
  color: var(--color-white);
  padding-left: 6px;
}

/* Navbar CTA */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-gold);
  color: var(--color-navy) !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-btn);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
  z-index: 1001;
}

.navbar__hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.navbar__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.navbar__drawer {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 48px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.navbar__drawer.is-open {
  transform: translateX(0);
}

.drawer__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.drawer__link:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.drawer__accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
  transition: color var(--transition);
}

.drawer__accordion-btn.is-open {
  color: var(--color-gold);
}

.drawer__accordion-btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.drawer__accordion-btn.is-open svg {
  transform: rotate(180deg);
}

.drawer__submenu {
  display: none;
  padding: 12px 0 12px 16px;
  gap: 8px;
  flex-direction: column;
}

.drawer__submenu.is-open {
  display: flex;
}

.drawer__submenu-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 12px;
  margin-bottom: 4px;
}

.drawer__submenu a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.drawer__submenu a:hover {
  color: var(--color-white);
}

.drawer__cta {
  margin-top: 32px;
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--gradient-gold);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-btn);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gradient-navy);
  color: var(--color-white);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(15, 18, 57, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(15, 18, 57, 0.35);
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--color-navy);
  border: 2px solid transparent;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.product-card__cta .btn--outline,
.product-card__cta .btn--outline-white {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 10px 5px rgba(255, 255, 255, 0.5);
}

.product-card__cta .btn--outline:hover,
.product-card__cta .btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-navy);
  box-shadow:
    0 6px 22px rgba(15, 18, 57, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--color-white);
  border: 2px solid transparent;
  font-size: 1rem;
  padding: 14px 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

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

/* ---- GLASS CARDS ---- */
.card-light {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.35) 100%
  );
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-left-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  box-shadow:
    0 4px 24px rgba(15, 18, 57, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 -1px 0 rgba(15, 18, 57, 0.04) inset;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

/* Subtle gloss sheen on top half */
.card-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  pointer-events: none;
  z-index: 0;
}

.card-light > * {
  position: relative;
  z-index: 1;
}

.card-light:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 56px rgba(15, 18, 57, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.card-dark {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  pointer-events: none;
  z-index: 0;
}

.card-dark > * {
  position: relative;
  z-index: 1;
}

.card-dark:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(201, 168, 76, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

/* ---- BADGES & PILLS ---- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--color-navy);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.variant-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(15, 18, 57, 0.06);
  color: var(--color-navy);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 18, 57, 0.15);
}

.variant-tag--white {
  background: #f0f2ff;
}

.variant-tag--kraft {
  background: #fdf3e3;
  color: #7a5a1a;
  border-color: rgba(122, 90, 26, 0.2);
}

.variant-tag--ripple {
  background: #f0fff4;
  color: #1a5a3a;
  border-color: rgba(26, 90, 58, 0.2);
}

/* ---- PRODUCT CARD ---- */
.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0;
}

.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: calc(var(--radius-card) - 1px) calc(var(--radius-card) - 1px) 0
    0;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(201, 168, 76, 0.1) 0%,
    rgba(15, 18, 57, 0.06) 50%,
    rgba(138, 43, 226, 0.06) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.product-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
}

.product-card__image {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
  transform: scale(1.06) translateY(-4px);
}

.product-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
  max-width: none;
}

.product-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card__cta {
  margin-top: auto;
}

/* ---- STAT CARD ---- */
.stat-card {
  padding: 32px 24px;
  text-align: center;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}

.stat-card--dark .stat-card__number {
  color: var(--color-gold);
}

.stat-card__unit {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 8px;
  max-width: none;
  line-height: 1.4;
}

.stat-card--dark .stat-card__label {
  color: var(--color-muted-dark);
}

/* ---- WHY CARD ---- */
.why-card {
  padding: 36px 28px;
}

.why-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.why-card__title {
  color: var(--color-black);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 0.88rem;
  color: var(--color-black);
  line-height: 1.7;
  max-width: none;
}

/* ---- TESTIMONIAL CARD ---- */
.testimonial-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold);
  font-size: 1rem;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.75;
  font-style: italic;
  max-width: none;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  font-style: normal;
  font-size: 1rem;
}

.testimonial-card__meta {
  font-size: 0.8rem;
  color: var(--color-muted);
  max-width: none;
}

/* ---- FAQ ACCORDION ---- */
.faq-item {
  padding: 0;
  overflow: hidden;
  transition: border-left var(--transition);
}

.faq-item.is-open {
  border-left: 4px solid var(--color-navy);
}

.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}

.faq-item__btn:hover {
  color: var(--color-gold);
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 300;
  transition:
    transform var(--transition),
    background var(--transition);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: var(--color-white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: none;
}

/* ---- CONTACT FORM ---- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(15, 18, 57, 0.04);
  border: 1.5px solid rgba(15, 18, 57, 0.15);
  border-radius: 10px;
  color: var(--color-navy);
  font-size: 0.9rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(15, 18, 57, 0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230F1239' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-error-msg {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 2px;
}

/* Form status */
.form-success,
.form-error {
  display: none;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}

.form-success {
  background: rgba(72, 199, 116, 0.12);
  color: #1a7a3a;
  border: 1px solid rgba(72, 199, 116, 0.3);
}

.form-error {
  background: rgba(229, 62, 62, 0.08);
  color: #c53030;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

/* ---- FILTER TABS ---- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-navy);
  background: transparent;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

.filter-tab.is-active,
.filter-tab:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* ---- CONTACT INFO ---- */
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 18, 57, 0.06);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--color-navy);
}

.contact-info__text a {
  color: var(--color-navy);
  font-weight: 500;
  transition: color var(--transition);
}

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

.contact-info__text p {
  color: var(--color-muted);
  font-size: 0.9rem;
  max-width: none;
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--gradient-navy);
  background-size: cover;
  background-position: center;
  padding: 110px var(--container-pad) 90px;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 58vh;
  display: flex;
  align-items: center;
}

/* Dark scrim so bg image stays readable */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 18, 57, 0.88) 0%,
    rgba(15, 18, 57, 0.62) 60%,
    rgba(15, 18, 57, 0.45) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Gold accent glow bottom-right */
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -8%;
  width: 45%;
  height: 130%;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  text-align: left;
  max-width: 680px;
}

.page-hero__title {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-hero__sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 55ch;
  margin: 0;
}

/* Breadcrumb left-aligned in hero */
.page-hero .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 24px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb__current {
  color: var(--color-gold);
  font-weight: 500;
}

/* ---- GALLERY CARD ---- */
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 57, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__label {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-heading);
}

/* ---- FOOTER ---- */
footer {
  background: var(--color-navy);
  color: var(--color-white);
}

.footer__top {
  padding: var(--section-padding) var(--container-pad);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer__brand p {
  color: var(--color-muted-dark);
  font-size: 0.88rem;
  max-width: 30ch;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer__contact address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  display: inline-block;
}

.footer__contact a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--color-gold);
}

/* ---- MAPS ---- */
.map-embed {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: none;
}

/* ---- QUICK INFO CARDS (contact page) ---- */
.quick-info-card {
  padding: 28px 24px;
  text-align: center;
}

.quick-info-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-gold);
}

.quick-info-card__title {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 8px;
}

.quick-info-card__value {
  color: var(--color-muted-dark);
  font-size: 0.92rem;
  max-width: none;
}

.quick-info-card__value a {
  color: var(--color-gold);
  transition: opacity var(--transition);
}

.quick-info-card__value a:hover {
  opacity: 0.8;
}

/* ---- SPEC TABLE ---- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid rgba(15, 18, 57, 0.08);
}

.spec-table td {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--color-navy);
  width: 40%;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--gradient-navy);
  padding: clamp(48px, 6vw, 80px) var(--container-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.6;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--color-muted-dark);
  max-width: 50ch;
  margin: 0 auto 32px;
}

.cta-banner__note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* ---- VARIANT CARDS - Full Width Image, Content Below ---- */
.variant-card {
  padding: 0 !important;
  text-align: left !important;
  align-items: stretch !important;
  gap: 0 !important;
  overflow: hidden;
}

.variant-card__image-wrap {
  width: 100% !important;
  aspect-ratio: 4/3 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #eef0f7 !important;
  flex-shrink: 0;
}

.variant-card__image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: transform var(--transition-slow);
}

.variant-card:hover .variant-card__image-wrap img {
  transform: scale(1.04);
}

.variant-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.variant-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.variant-card__desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.variant-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.variant-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-navy);
}

.variant-card__features li i {
  color: var(--color-gold);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.variant-card .btn {
  margin-top: auto;
}

/* ---- PRODUCT CARDS - Redesigned ---- */
.product-card {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 56px rgba(15, 18, 57, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: calc(var(--radius-card) - 1px) calc(var(--radius-card) - 1px) 0
    0;
  background: linear-gradient(
    145deg,
    rgba(201, 168, 76, 0.08) 0%,
    rgba(15, 18, 57, 0.05) 100%
  );
  flex-shrink: 0;
}

.product-card__image {
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
  border-radius: 0;
  margin: 0;
}

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

.product-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
  max-width: none;
}

.product-card__cta {
  margin-top: auto;
  padding-top: 4px;
}

/* ---- FAQ ACCORDION ---- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(15, 18, 57, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(15, 18, 57, 0.08);
}

.faq-item.is-open {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-trigger:hover {
  color: var(--color-gold);
}

.faq-trigger__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
  line-height: 1;
}

.faq-item.is-open .faq-trigger__icon {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: var(--color-white);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-content {
  max-height: 400px;
}

.faq-text {
  padding: 0 24px 22px;
  font-size: 0.925rem;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: none;
}

/* ---- USE CASES - MASONRY GRID GALLERY ---- */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

.use-case-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-navy);
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  min-height: 200px;
}

/* Tall items - first and last span 2 rows */
.use-case-item:nth-child(1),
.use-case-item:nth-child(6) {
  grid-row: span 2;
  min-height: 420px;
}

.use-case-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(15, 18, 57, 0.25);
}

.use-case-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.use-case-item:hover img {
  transform: scale(1.07);
}

.use-case-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 18, 57, 0.82) 0%,
    rgba(15, 18, 57, 0.2) 55%,
    transparent 100%
  );
  transition: background var(--transition);
}

.use-case-item:hover .use-case-item__overlay {
  background: linear-gradient(
    to top,
    rgba(15, 18, 57, 0.88) 0%,
    rgba(15, 18, 57, 0.35) 55%,
    transparent 100%
  );
}

.use-case-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 22px;
  z-index: 2;
}

.use-case-item__label span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.use-case-item__label p {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  max-width: none;
  line-height: 1.3;
  transition: transform var(--transition);
}

.use-case-item:hover .use-case-item__label p {
  transform: translateY(-3px);
}

/* ---- RESPONSIVE ADJUSTMENTS ---- */
@media (max-width: 900px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-case-item:nth-child(1),
  .use-case-item:nth-child(6) {
    grid-row: span 1;
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .use-cases-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .use-case-item {
    min-height: 160px;
  }

  .use-case-item:nth-child(1),
  .use-case-item:nth-child(6) {
    min-height: 160px;
  }

  .faq-trigger {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .page-hero__title {
    font-size: clamp(1.7rem, 5vw, 2.6rem);
  }
}

/* ---- CAROUSEL SECTION ---- */
.carousel {
  width: 100%;
  max-width: var(--container-max);
  margin: 60px auto;
  padding: 0 var(--container-pad);
}

.carousel .list {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.carousel .list::-webkit-scrollbar {
  height: 8px;
}

.carousel .list::-webkit-scrollbar-track {
  background: var(--color-navy-07);
  border-radius: 10px;
}

.carousel .list::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 10px;
  transition: background var(--transition);
}

.carousel .list::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

.carousel .item {
  flex: 0 0 calc(50% - 12px);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--color-off-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.carousel .item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.carousel .item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f0f2ff;
  display: block;
}

.carousel .item .intro {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.carousel .item .title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.carousel .item .sub-title {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.carousel .item .description {
  font-size: 0.9rem;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
  opacity: 0.85;
}

.carousel .item .btn-see {
  align-self: flex-start;
  margin-top: auto;
}

.carousel .item .detail {
  display: none;
  padding: 0 24px 24px 24px;
  background: rgba(201, 168, 76, 0.06);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  font-size: 0.85rem;
  color: var(--color-navy);
  line-height: 1.8;
}

.carousel .item .detail > div {
  margin-bottom: 8px;
}

.carousel .item .detail .title {
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.carousel .item:hover .detail {
  display: block;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0 var(--container-pad);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-muted);
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-muted);
  font-size: 1rem;
}

.carousel-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-counter {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 500;
  min-width: 60px;
  text-align: center;
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel .item {
    flex: 0 0 calc(70% - 12px);
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .carousel .item {
    flex: 0 0 100%;
    min-width: unset;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .carousel-counter {
    font-size: 0.8rem;
    min-width: 50px;
  }
}
