/* ==========================================
   DESIGN TOKENS — Primitive → Semantic → Component
   Brand: Alba Pro (luxury Arabic hospitality, RTL-first)
   ========================================== */
:root {
  /* ---------- Primitive tokens ---------- */
  --c-navy-900: #142331;
  --c-navy-800: #1d3144;
  --c-navy-700: #263e54;
  --c-gold-500: #e8b828;
  --c-gold-400: #f3c434;
  --c-gold-600: #cda21c;
  --c-gold-700: #8a6a08; /* WCAG 4.5:1 gold-ink on white */
  --c-gold-800: #7a5c02; /* WCAG 3:1 focus ring on white */
  --c-slate-600: #64747f; /* WCAG 4.5:1 muted text on light bg */
  --c-slate-900: #14202b;
  --c-surface: #ffffff;
  --c-surface-muted: #f8f9fa;
  --c-footer: #0f1a24;
  --c-whatsapp: #25d366;
  --c-whatsapp-dark: #20bd5a;

  /* ---------- Semantic tokens ---------- */
  --navy: var(--c-navy-800);
  --navy-dark: var(--c-navy-900);
  --navy-light: var(--c-navy-700);
  --gold: var(--c-gold-500);
  --gold-hover: var(--c-gold-400);
  --gold-dark: var(--c-gold-600);
  --gold-ink: var(--c-gold-700);
  --focus-ring: var(--c-gold-800);
  --bg: var(--c-surface-muted);
  --white: var(--c-surface);
  --text: var(--c-slate-900);
  --muted: var(--c-slate-600);

  /* ---------- Typography ---------- */
  --font-family: "Cairo", "Tajawal", sans-serif;
  --font-size-xs: 0.8rem;
  --font-size-sm: 0.9rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.05rem;
  --font-size-xl: 1.5rem;
  --fw-normal: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* ---------- Spacing scale ---------- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 3rem;

  /* ---------- Radius ---------- */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* ---------- Elevation ---------- */
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 14px 35px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 8px 24px rgba(232, 184, 40, 0.35);
  --shadow-gold-hover: 0 12px 32px rgba(232, 184, 40, 0.5);
  --shadow-lift: 0 20px 50px rgba(20, 32, 43, 0.14);

  /* ---------- Motion ---------- */
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ---------- Layout ---------- */
  --container-max: 1280px;
  --nav-height: 76px;
  --header-offset: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", "Tajawal", sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

body.drawer-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.3;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Accessible focus ring on dark surfaces (gold reads 7.2:1 on navy) */
.topbar :focus-visible,
.drawer-panel :focus-visible,
.hero-carousel :focus-visible,
.site-footer :focus-visible,
.about-panel-inner :focus-visible {
  outline-color: var(--gold);
}

/* Visible focus for interactive cards */
.category-card:focus-visible,
.product-item:focus-visible,
.contact-card:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================
   ACCESSIBILITY UTILITIES
   ========================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  inset-inline-start: 1rem;
  z-index: 1000;
  background: var(--navy);
  color: var(--gold);
  padding: 0.7rem 1.25rem;
  border-radius: 0 0 10px 10px;
  font-weight: var(--fw-bold);
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 0;
}

/* Anchor offset for the fixed navbar on scroll */
section[id],
.product-category {
  scroll-margin-top: var(--header-offset);
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.container {
  max-width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.col {
  flex: 1 0 0%;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-4,
.col-6,
.col-8,
.col-12 {
  flex: 0 0 auto;
}

.col-4 {
  width: 33.333333%;
  max-width: 33.333333%;
}

.col-6 {
  width: 50%;
  max-width: 50%;
}

.col-8 {
  width: 66.666667%;
  max-width: 66.666667%;
}

.col-12 {
  width: 100%;
  max-width: 100%;
}

/* ==========================================
   SITE HEADER & NAVBAR (LUXURY B2B)
   RTL-aware layout with logical properties.
   
   z-index scale:
     10  dropdown menu
     20  fixed navbar
     30  mobile toggle
     100 drawer overlay
     110 mobile drawer
   ========================================== */

.site-header {
  position: static;
}

/* TOPBAR — announcement ticker */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(232, 184, 40, 0.22);
  overflow: hidden;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 34px;
}

.topbar-meta {
  display: flex;
  gap: 1.4rem;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 0.92rem;
  line-height: 1;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  line-height: 1;
}

.topbar-icon {
  color: var(--gold);
  font-weight: 700;
}

.announcement-track {
  display: none;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.announcement-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 34px;
}

.announcement-text .sep {
  display: inline-block;
  margin: 0 2rem;
  color: var(--gold);
  opacity: 0.6;
}

@keyframes announcementScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.topbar-social,
.drawer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}

.topbar-social {
  margin-inline-start: auto;
}

.topbar-social a,
.drawer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 184, 40, 0.4);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar-social a:hover,
.drawer-social a:hover {
  background: #f1c245;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.topbar-social img,
.drawer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.topbar-social a:hover img,
.drawer-social a:hover img {
  transform: scale(1.06);
}

/* Enlarge the tap/click area of social icons without changing layout */
.topbar-social a,
.drawer-social a {
  position: relative;
}

.topbar-social a::after,
.drawer-social a::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
}

/* Top Bar Phone Fix: keep "+966 56 293 3331" LTR inside the RTL marquee */
.topbar .announcement-text bdi,
.topbar .phone-link,
.topbar .phone-number {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

/* announcement visible only on mobile */
@media (max-width: 992px) {
  .topbar-meta {
    display: none;
  }
  .announcement-track {
    display: block;
  }
  .announcement-text {
    animation: announcementScroll 45s linear infinite;
  }
}

@media (max-width: 700px) {
  .announcement-text {
    font-size: 0.78rem;
  }
  .announcement-text .sep {
    margin: 0 1rem;
  }
}

@media (max-width: 420px) {
  .topbar-inner {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.3rem;
    min-height: 28px;
  }
  .announcement-text {
    font-size: 0.7rem;
    line-height: 28px;
  }
  .topbar-social {
    gap: 0.3rem;
  }
  .topbar-social a {
    width: 22px;
    height: 22px;
  }
  .topbar-social img {
    width: 10px;
    height: 10px;
  }
}

/* MAIN BAR */
.mainbar {
  background-color: var(--white);
  border-bottom: 1px solid rgba(20, 32, 43, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.mainbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

/* FIXED NAVBAR (clone, appears on scroll) */
.mainbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid rgba(20, 32, 43, 0.08);
  transform: translateY(-100%);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.mainbar-fixed.is-visible {
  transform: translateY(0);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

.mainbar-fixed .mainbar-inner {
  min-height: 76px;
}

/* LOGO - simple flex item, no absolute positioning */
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 57px;
  padding: 0.25rem;
  background: var(--white);
  border-radius: 8px;
  transition: height 0.3s ease;
}

.brand-logo {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-inline-start: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* NAV - centered, expanding to fill space */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-inline-start: auto;
  gap: 0.75rem;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0.1rem;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--gold-ink);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown toggle button */
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-inline-start: -0.25rem;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  transition: background 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  background: rgba(20, 32, 43, 0.06);
}

.dropdown-arrow {
  stroke: currentColor;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.nav-item.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-item.is-open .dropdown-toggle {
  color: var(--gold-ink);
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  inset-inline-end: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item .item-icon {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  background: #fffdf2;
  color: var(--gold-ink);
}

.dropdown-item.highlight {
  background: linear-gradient(135deg, #fffdf0 0%, #fff8e1 100%);
  border: 1px solid rgba(232, 184, 40, 0.35);
  font-weight: 700;
}

.dropdown-item.highlight:hover,
.dropdown-item.highlight:focus-visible {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* CTA BUTTON */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  margin-inline-start: 0.75rem;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.98rem;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 184, 40, 0.5);
}

.nav-cta:active {
  transform: translateY(0);
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  flex-shrink: 0;
  align-self: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  z-index: 30;
}

.mobile-toggle:focus,
.mobile-toggle:active {
  background: transparent;
  box-shadow: none;
}

/* Keyboard-only focus cue on the bars (button itself stays clean) */
.mobile-toggle:focus-visible span {
  background: var(--gold-ink);
  box-shadow: 0 0 0 3px rgba(232, 184, 40, 0.35);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  width: min(70vw, 280px);
  height: 100vh;
  z-index: 1000;
  background: var(--navy-dark);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

[dir="rtl"] .mobile-drawer {
  transform: translateX(-100%);
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-panel {
  height: 100%;
  color: var(--white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow-y: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(232, 184, 40, 0.18);
}

.drawer-head .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer-head .brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  border-radius: 14px;
}

.drawer-head .brand-text {
  display: grid;
  gap: 0.15rem;
  line-height: 1.1;
}

.drawer-head .brand-main {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold);
}

.drawer-head .brand-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.drawer-close {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
}

.drawer-nav-link,
.drawer-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-align: start;
}

.drawer-group-toggle {
  justify-content: space-between;
}

.drawer-group-toggle .toggle-content {
  flex: 1;
  gap: 0.6rem;
}

.drawer-nav-link:hover,
.drawer-group-toggle:hover,
.drawer-nav-link:focus-visible,
.drawer-group-toggle:focus-visible {
  background: rgba(232, 184, 40, 0.15);
  color: var(--gold);
  transform: translateX(1px);
}

.drawer-nav-link.active {
  background: rgba(232, 184, 40, 0.2);
  color: var(--gold);
}

.toggle-content {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.toggle-arrow {
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.drawer-group-toggle[aria-expanded='true'] .toggle-arrow {
  transform: rotate(180deg);
}

.drawer-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  padding-inline: 0.5rem;
}

.drawer-group-toggle[aria-expanded='true'] + .drawer-submenu {
  max-height: none;
  opacity: 1;
}

.drawer-submenu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-top: 0.3rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.drawer-submenu a svg {
  width: 18px;
  height: 18px;
}

.drawer-submenu a:hover,
.drawer-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
  transform: translateX(1px);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(232, 184, 40, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 80%;
  margin: 0 auto;
  padding: 10px 18px;
  text-align: center;
  gap: 0.5rem;
  background: rgba(232, 184, 40, 0.95);
  color: var(--navy-dark);
  border-radius: 18px;
  font-size: 1rem;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(232, 184, 40, 0.25);
}

.drawer-info {
  display: grid;
  gap: 0.25rem;
  line-height: 1.4;
}

.drawer-footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.drawer-footer-item img {
  flex-shrink: 0;
}

.drawer-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.drawer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #eab308;
  border: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.drawer-social a:hover,
.drawer-social a:focus-visible {
  transform: scale(1.05);
  background-color: #facc15;
}

.drawer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.65);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}



/* ==========================================
   RESPONSIVE: below 993px, collapse to the drawer
   ========================================== */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-inline-start: auto;
  }

  .mainbar-inner {
    min-height: 64px;
  }

  .brand-card {
    height: 44px;
  }

  .brand-name {
    max-width: 42vw;
  }
}

/* ==========================================
   HERO CAROUSEL
   ========================================== */

.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy-dark);
}

/* Background slides */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.carousel-slide:not(.active) .carousel-bg {
  transform: scale(1);
  transition: transform 0.8s ease;
}

.carousel-slide.active .carousel-bg {
  transform: scale(1.15);
  animation: carouselZoom 6s ease both;
}

@keyframes carouselZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,49,68,0.88) 0%, rgba(29,49,68,0.65) 50%, rgba(29,49,68,0.35) 100%);
}

/* Content */
.carousel-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

.carousel-content {
  text-align: center;
  max-width: 720px;
}

.carousel-slide.active .carousel-content {
  animation: carouselFadeUp 0.8s ease 0.3s both;
}

.carousel-eyebrow {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  background: rgba(232, 184, 40, 0.18);
  color: var(--gold);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(232, 184, 40, 0.25);
  margin-bottom: 1.25rem;
}

.carousel-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.25;
  font-weight: 800;
}

.carousel-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto 1.75rem;
}

.carousel-content .btn {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

@keyframes carouselFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

.carousel-control.prev {
  right: 2rem;
}

.carousel-control.next {
  left: 2rem;
}

/* Decorative ornaments */
.hero-ornament,
.hero-side-decor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero-ornament-left {
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 0 0, rgba(232,184,40,0.12) 0%, transparent 70%);
}

.hero-ornament-right {
  bottom: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 100% 100%, rgba(232,184,40,0.1) 0%, transparent 70%);
}

.hero-side-left {
  top: 50%;
  left: 0;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(232,184,40,0.3), transparent);
  transform: translateY(-50%);
}

.hero-side-right {
  top: 50%;
  right: 0;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(232,184,40,0.3), transparent);
  transform: translateY(-50%);
}

/* ==========================================
   SECTION PATTERN
   ========================================== */

.section {
  padding: 5rem 0;
}

/* Adjusted section spacing (~15% tighter overall, more breathing room) */
.section {
  padding-top: 4.25rem !important;
  padding-bottom: 4.25rem !important;
}

.section-divider {
  margin-bottom: 1.25rem !important;
}

/* ==========================================
   ABOUT SECTION – Brand Identity (Animated)
   ========================================== */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Animated gold sweep background */
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(232,184,40,0.04) 45%,
    rgba(232,184,40,0.07) 50%,
    rgba(232,184,40,0.04) 55%,
    transparent 70%);
  background-size: 300% 100%;
  animation: aboutGoldSweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aboutGoldSweep {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

/* Floating geometric ornament */
.about-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(232,184,40,0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: aboutShapeFloat 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aboutShapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(5deg); border-color: rgba(232,184,40,0.12); }
  66% { transform: translate(-10px, 15px) rotate(-3deg); border-color: rgba(232,184,40,0.06); }
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

/* ---------- Left: Navy Panel with Logo (Animated) ---------- */
.about-panel {
  position: relative;
}

.about-panel-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Geometric shapes inside the panel */
.about-panel-inner .geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-panel-inner .geo-diamond {
  width: 24px;
  height: 24px;
  top: 10%;
  left: 8%;
  opacity: 0.12;
  animation: geoSpin 14s linear infinite;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.about-panel-inner .geo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
}

.about-panel-inner .geo-dot-1 {
  bottom: 15%;
  right: 10%;
  animation: geoFloat 5s ease-in-out infinite;
}

.about-panel-inner .geo-dot-2 {
  top: 32%;
  left: 5%;
  width: 5px;
  height: 5px;
  animation: geoFloat 6s ease-in-out infinite reverse;
}

.about-panel-inner .geo-dot-3 {
  top: 20%;
  right: 25%;
  width: 6px;
  height: 6px;
  opacity: 0.1;
  animation: geoFloat 4.5s ease-in-out infinite 1s;
}

.about-panel-inner .geo-arc {
  width: 38px;
  height: 19px;
  border: 1.5px solid rgba(232,184,40,0.15);
  border-bottom: none;
  border-radius: 38px 38px 0 0;
  opacity: 0.12;
  bottom: 20%;
  left: 10%;
  animation: geoFloat 7s ease-in-out infinite 0.5s;
}

.about-panel-inner .geo-filled-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  opacity: 0.18;
  top: 42%;
  right: 8%;
  animation: geoPulse 3s ease-in-out infinite;
  transform: rotate(45deg);
}

.about-panel-inner .geo-bar {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0.12;
  top: 58%;
  left: 6%;
  animation: geoBarPulse 4s ease-in-out infinite;
}

@keyframes geoSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes geoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes geoPulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.5); opacity: 0.2; }
}

@keyframes geoBarPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.08; }
  50% { transform: scaleX(1.6); opacity: 0.16; }
}

/* Panel inner glow layers */
.about-panel-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(232,184,40,0.1) 0%, transparent 70%);
  animation: aboutGlowOrbit 8s ease-in-out infinite;
  pointer-events: none;
}

.about-panel-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  animation: aboutGlowOrbit 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes aboutGlowOrbit {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  25% { transform: translate(15px, -10px) scale(1.1); opacity: 1; }
  50% { transform: translate(-10px, 15px) scale(0.9); opacity: 0.5; }
  75% { transform: translate(-15px, -5px) scale(1.05); opacity: 0.8; }
}

/* Floating logo */
.about-panel-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 0.75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
  animation: aboutFloat 4s ease-in-out infinite;
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

/* Logo glow ring */
.about-panel-logo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(232,184,40,0.3);
  animation: aboutRingPulse 2s ease-in-out infinite;
}

@keyframes aboutRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; border-color: rgba(232,184,40,0.3); }
  50% { transform: scale(1.08); opacity: 1; border-color: rgba(232,184,40,0.6); }
}

/* Staggered decorative dots */
.about-panel-decor {
  display: flex;
  gap: 8px;
  margin: 1.75rem 0 2rem;
  position: relative;
  z-index: 1;
}

.about-panel-decor span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.about-panel-decor span:nth-child(1) { animation: aboutDotPulse 1.8s ease-in-out infinite; }
.about-panel-decor span:nth-child(2) { animation: aboutDotPulse 1.8s ease-in-out 0.3s infinite; }
.about-panel-decor span:nth-child(3) { animation: aboutDotPulse 1.8s ease-in-out 0.6s infinite; width: 9px; height: 9px; }

@keyframes aboutDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 1; }
}

.about-panel-numbers {
  position: relative;
  z-index: 1;
}

.about-panel-big-num {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 0.5rem;
  animation: aboutGoldGlow 3s ease-in-out infinite;
}

@keyframes aboutGoldGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(232,184,40,0.2)); }
  50% { filter: drop-shadow(0 0 18px rgba(232,184,40,0.5)); }
}

.about-panel-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ---------- Right: Content (Animated Reveal) ---------- */
.about-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(232,184,40,0.12);
  color: var(--gold-ink);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(232,184,40,0.15);
  position: relative;
  overflow: hidden;
}

.about-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,184,40,0.2), transparent);
  animation: aboutShimmer 3s ease-in-out infinite;
}

@keyframes aboutShimmer {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: -100%; }
}

.about-heading {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

/* Animated heading line */
.about-heading-line {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.about-heading-line span {
  height: 4px;
  border-radius: 4px;
  transform-origin: right center;
  transform: scaleX(0);
}

.about-heading-line span:first-child {
  width: 40px;
  background: var(--gold);
}

.about-heading-line span:last-child {
  width: 20px;
  background: var(--navy-light);
}

.about-main.visible .about-heading-line span:first-child {
  animation: aboutLineGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.about-main.visible .about-heading-line span:last-child {
  animation: aboutLineGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}

@keyframes aboutLineGrow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.about-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 54ch;
  margin: 0 0 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-text-ext {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 54ch;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-text-ext strong {
  color: var(--navy);
}

.about-features {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  max-width: 54ch;
  display: grid;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-features li {
  position: relative;
  padding-inline-start: 1.4rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-features li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.about-features strong {
  color: var(--navy);
}

.about-main.visible .about-features {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

/* Reveal triggers for text */
.about-main.visible .about-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.about-main.visible .about-text-ext {
  opacity: 1;
  transform: translateY(0);
}

.about-main.visible .about-text-ext:first-of-type {
  transition-delay: 0.45s;
}

.about-main.visible .about-text-ext:last-of-type {
  transition-delay: 0.6s;
}

/* ---------- Stats Bar (Animated) ---------- */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-radius: 1.25rem;
  padding: 2rem 1rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-stats::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232,184,40,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-stats::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: aboutShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.about-stat-item {
  flex: 1;
  text-align: center;
  color: #fff;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.1rem;
  row-gap: 0.15rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.about-stat-item:hover {
  transform: translateY(-6px);
}

.about-stat-val {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  color: var(--gold);
  transition: color 0.3s ease;
}

.about-stat-item:hover .about-stat-val {
  color: var(--gold-hover);
}

.about-stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  white-space: nowrap !important;
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.about-stat-item:hover .about-stat-suffix {
  opacity: 1;
}

.about-stat-label {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-top: 0.15rem;
  transition: color 0.3s ease;
}

.about-stat-item:hover .about-stat-label {
  color: rgba(255,255,255,0.95);
}

.about-stat-divider {
  width: 1px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-panel {
    max-width: 360px;
    margin: 0 auto;
  }
  .about-panel-inner {
    padding: 2.5rem 1.5rem;
  }
  .about-panel-decor {
    margin: 1.25rem 0 1.5rem;
  }
  .about-panel-big-num {
    font-size: 3.5rem;
  }
  .about-main {
    text-align: center;
  }
  .about-heading-line {
    justify-content: center;
  }
  .about-text, .about-text-ext {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .about-text, .about-text-ext {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  .about-heading {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .about-panel-inner {
    padding: 1.75rem 1.25rem;
  }
  .about-panel-logo {
    width: 80px;
    height: 80px;
  }
  .about-panel-logo::after {
    inset: -3px;
  }
  .about-panel-decor {
    margin: 1rem 0 1.25rem;
  }
  .about-panel-big-num {
    font-size: 2.5rem;
  }
  .about-panel-label {
    font-size: 0.85rem;
  }
  .about-stat-val {
    font-size: 1.6rem;
  }
}



.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--navy);
  margin: 0;
  font-weight: 800;
}

.section-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 160px;
  height: 28px;
  margin: 0.75rem auto 1.5rem;
}

.section-divider .line {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--navy-dark), transparent);
  position: relative;
  overflow: hidden;
}

.section-divider .line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 50%;
  animation: dividerSheen 2.8s ease-in-out infinite;
}

.section-divider .line:first-child::after {
  animation-delay: 0s;
}

.section-divider .line:last-child::after {
  animation-delay: 0.15s;
}

.section-divider .diamond {
  width: 16px;
  height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
  animation: dividerDiamondGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(232,184,40,0.6));
}

@keyframes dividerSheen {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(200%); }
  100% { transform: translateX(-100%); }
}

@keyframes dividerDiamondGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(232,184,40,0.3)) brightness(1); }
  50% { filter: drop-shadow(0 0 16px rgba(232,184,40,0.7)) brightness(1.3); }
}

.section-divider.reveal {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.section-divider.reveal.visible {
  opacity: 1;
  transform: scaleX(1);
}

.section-body {
  text-align: center;
}

.about-text {
  max-width: 68ch;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.section-lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: var(--shadow-gold-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(20,32,43,0.15);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-ink);
  box-shadow: var(--shadow-gold);
}

/* ==========================================
   PRODUCTS PAGE
   ========================================== */
.products-page {
  padding-top: 1rem;
}

@media (max-width: 740px) {
  .products-page {
    padding-top: 0.5rem;
  }
  .products-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }
  .products-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  .category-heading {
    font-size: 1.1rem;
    gap: 0.5rem;
  }
  .category-heading-icon {
    width: 28px;
    height: 28px;
  }
  .category-heading-icon svg {
    width: 16px;
    height: 16px;
  }
  .product-category {
    scroll-margin-top: 80px;
  }
}

.products-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.products-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ---------- Filter toolbar (category tabs) ---------- */
.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.filter-btn {
  border: 1px solid rgba(20, 32, 43, 0.08);
  background: var(--white);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration-fast) ease,
              color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) ease;
}

.filter-btn:hover {
  color: var(--navy);
  background: rgba(232, 184, 40, 0.12);
  border-color: rgba(232, 184, 40, 0.34);
  box-shadow: 0 6px 18px rgba(20, 32, 43, 0.08);
}

.filter-btn.is-active {
  background: var(--navy);
  color: var(--gold);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(20, 32, 43, 0.22);
}

.filter-btn:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {
  .product-toolbar {
    margin-bottom: 1.75rem;
  }

  .product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0.2rem;
  }

  .filter-btn {
    font-size: 0.85rem;
    padding: 6px 14px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .filter-btn {
    font-size: 0.78rem;
    padding: 0.55rem 0.9rem;
  }

  .product-toolbar {
    gap: 0.6rem;
  }
}

/* Filtering states */
.product-category.is-hidden {
  display: none;
}

.product-item.is-hidden {
  display: none;
}

.product-empty {
  display: none;
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
  border: 1px dashed rgba(20, 32, 43, 0.18);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 1rem;
}

.product-empty.is-visible {
  display: block;
}

.product-empty-cta {
  display: inline-block;
  margin-top: 1.25rem;
}

@media (max-width: 480px) {
  .filter-btn {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  .product-toolbar {
    gap: 0.6rem;
  }
}

.product-category {
  margin-bottom: 3.5rem;
  scroll-margin-top: 100px;
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--gold);
}

.category-heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
}

.category-heading-icon svg {
  width: 20px;
  height: 20px;
}

.sub-category-header {
  text-align: center;
  margin: 2.5rem 0 1.5rem;
}

.sub-category-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.divider-line .line {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--navy), transparent);
}

.divider-line .diamond-icon {
  color: var(--gold);
  font-size: 12px;
  transform: rotate(45deg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.product-item,
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: var(--white);
  border: 1.5px solid #dbe1ec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(12,31,63,.06);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.2,1),
              box-shadow .3s ease,
              border-color .3s ease;
  font-family: 'Cairo', sans-serif;
}

.product-item *,
.product-modal,
.product-modal * {
  font-family: 'Cairo', sans-serif !important;
}

.product-item:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -12px rgba(12,31,63,.22);
  border-color: var(--gold);
}

.product-item:active,
.card:active {
  transform: translateY(-2px);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgb(253, 253, 253);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 10px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  max-width: 100%;
  max-height: 100%;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

@media (max-width: 767px) {
  .product-image {
    padding: 14px;
  }

  .product-image img {
    padding: 4px;
    transform: scale(1.04);
  }
}

@media (min-width: 768px) {
  .product-image {
    padding: 18px;
  }

  .product-image img {
    padding: 10px;
  }
}

.product-item:hover .product-image img {
  transform: scale(1.06);
}

.product-divider {
  height: 2px;
  margin: 0 22px;
  background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
  position: relative;
  top: 1px;
}

.product-body,
.card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: var(--font-family);
}

.title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.title {
  font-family: var(--font-family);
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  color: var(--navy);
  line-height: 1.4;
}

.swatch {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #c7ceda, 0 2px 5px rgba(12,31,63,.15);
  margin-top: 2px;
}

.product-desc,
.desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 14px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.75em * 3);
}

.product-meta,
.specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--navy-soft);
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #dbe1ec;
  gap: 14px;
}

.product-meta span b,
.specs span b {
  color: var(--navy);
  font-weight: 700;
}

.product-code,
.code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  background: var(--navy-pale);
  border: 1px solid #dde4f0;
  border-radius: 7px;
  padding: 5px 10px;
  letter-spacing: .3px;
  margin-bottom: 16px;
  width: fit-content;
}

.spacer {
  flex: 1;
}

.product-actions,
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.product-actions {
  justify-content: space-between;
}

.product-view,
.icon-btn {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  order: 2;
  border-radius: 11px;
  border: 1.5px solid var(--gold);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
  font-size: 17px;
  color: var(--navy);
}

.product-quote,
.cta {
  flex: 1;
  order: 1;
  background: var(--navy);
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  border-radius: 11px;
  padding: 14px 10px;
  font-size: 13px;
  font-family: var(--font-family);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 20px rgba(232, 184, 40, 0.18);
}

.product-quote svg,
.cta svg {
  fill: currentColor;
}

.product-quote:hover,
.product-quote:focus-visible,
.cta:hover,
.cta:focus-visible {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(232, 184, 40, 0.22);
}

.product-view:hover,
.product-view:focus-visible,
.icon-btn:hover,
.icon-btn:focus-visible {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.product-quote .wa,
.cta .wa {
  color: #25D366;
  font-size: 15px;
}

@media (max-width: 767px) {
  .product-quote,
  .cta {
    font-size: 12px;
    padding: 12px 10px;
  }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }



.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(20, 32, 43, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift),
              0 6px 18px rgba(232, 184, 40, 0.2),
              0 0 0 1px rgba(232, 184, 40, 0.35);
  border-color: var(--gold);
}

.category-carousel {
  position: relative;
}

.category-pagination {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.category-pagination button {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 32, 43, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.category-pagination button.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.category-card.is-hidden {
  display: none;
}

.category-card.is-entering {
  opacity: 0;
  transform: translateY(14px);
}

.category-card {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.category-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card-img {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.category-card-img img {
  width: auto;
  height: 139px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-img img {
  transform: scale(1.08);
}

.category-card-body {
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-name {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.category-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.category-cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(232,184,40,0.3);
}

.category-card:hover .category-cta {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(20, 32, 43, 0.28);
}

.category-card-body .category-cta {
  align-self: center;
}

/* ==========================================
   CLIENTS MARQUEE
   ========================================== */
.marquee-wrapper {
  overflow: hidden;
  margin-top: 2rem;
}

.marquee-track {
  display: flex;
  direction: ltr;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.client-logo {
  height: 100px;
  width: auto;
  margin-left: 3rem;
  flex-shrink: 0;
  filter: grayscale(0.5);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 740px) {
  .client-logo {
    height: 60px;
    margin-left: 1.5rem;
  }
  .marquee-wrapper {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .client-logo {
    height: 44px;
    margin-left: 1rem;
  }
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
/* ==========================================
   TESTIMONIALS SLIDER
   ========================================== */
/* ==========================================
   TESTIMONIALS – Animated Cards
   ========================================== */
#testimonials {
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,184,40,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(232,184,40,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.testimonials-slider {
  margin-top: -20px;
  margin-bottom: 2.5rem;
  overflow: visible;
}

.tslider-container {
  /* Horizontal mask for the sliding track. Vertical padding keeps card
     shadows, the gold top border and hover lift inside the clip box. */
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 1rem 0.6rem 1.5rem;
}

.tslider-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  direction: ltr;
  overflow: visible;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tslide {
  flex: 0 0 calc((100% - 3rem) / 3);
  box-sizing: border-box;
  min-width: 0;
  display: flex;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(20,32,43,0.06);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.5s ease,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.testimonial-card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Quote decoration */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.2rem;
  right: 0.6rem;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(232,184,40,0.08);
  font-family: serif;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232,184,40,0.1), 0 4px 12px rgba(0,0,0,0.04);
  border-color: rgba(232,184,40,0.15);
  border-top-color: var(--gold);
}

.testimonial-stars {
  color: var(--gold-ink);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.55;
  font-size: 0.82rem;
  margin: 0 0 0.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  border-top: 1px solid rgba(20,32,43,0.05);
  padding-top: 0.35rem;
  position: relative;
  z-index: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  font-size: 0.82rem;
}

.testimonial-role {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 0.1rem 0 0;
}

/* Controls + Dots */
.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0;
}

.tslider-prev,
.tslider-next {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(20, 32, 43, 0.12);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background var(--duration-fast) ease,
              color var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) ease;
}

.tslider-prev:hover:not(:disabled),
.tslider-next:hover:not(:disabled),
.tslider-prev:focus-visible,
.tslider-next:focus-visible {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.tslider-prev:active,
.tslider-next:active {
  transform: translateY(0);
}

/* Sleek progress bar replaces pagination dots */
.testimonial-progress-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}

.testimonial-progress-bar {
  width: 120px;
  max-width: 120px;
  height: 3px;
  margin: 0 auto;
  background-color: rgba(29, 49, 68, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.testimonial-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: #e8b828;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .testimonial-progress-bar {
    width: 140px;
    max-width: 140px;
  }
}

@media (max-width: 560px) {
  .tslider-controls {
    gap: 0.5rem;
  }
  .tslider-prev,
  .tslider-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1023px) {
  .tslider-track {
    gap: 1.25rem;
  }
  .tslide {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 767px) {
  .tslider-track {
    gap: 1rem;
  }
  .tslide {
    flex: 0 0 100%;
  }
}

/* ==========================================
   CERTIFICATES (reuses the Clients marquee)
   ========================================== */
.certificates-slider .client-logo {
  background: var(--white);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(20, 32, 43, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  filter: none;
  opacity: 1;
}

.certificates-slider .client-logo:hover {
  box-shadow: var(--shadow-card);
}


/* ==========================================
   VISIT / MAP SECTION
   ========================================== */
.visit-desc {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* Fix map spacing & overlap — clean separation between text and map */
.visit-desc {
  margin-bottom: 2rem !important;
}

.map-container {
  margin-top: 1.5rem !important;
  display: block !important;
  clear: both !important;
}

.map-container iframe {
  display: block !important;
}

/* ==========================================
   CONTACT — animated UI/UX
   ========================================== */
.contact-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,40,0.06) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
  animation: contactGlow 6s ease-in-out infinite alternate;
}

@keyframes contactGlow {
  0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  100% { transform: translateX(-40%) scale(1.3); opacity: 1; }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(20,32,43,0.06);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(29, 49, 68, 0.08);
  border-color: rgba(232, 184, 40, 0.4);
}

.contact-card:hover .contact-icon-box {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.contact-card:hover .contact-icon-box img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(36%) saturate(1450%) hue-rotate(170deg) brightness(0.9);
}

/* Contact cards as interactive links */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(20, 32, 43, 0.06);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(29, 49, 68, 0.08);
  border-color: rgba(232, 184, 40, 0.4);
}

.contact-card:hover .contact-icon-box {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.contact-card:hover .contact-icon-box img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(36%) saturate(1450%) hue-rotate(170deg) brightness(0.9);
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.contact-icon-box img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(75%) saturate(3) hue-rotate(5deg) brightness(0.95);
  transition: filter 0.3s ease;
}

.contact-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 800;
  margin: 0 0 0.4rem;
  transition: color 0.3s ease;
}

.contact-card:hover h4 {
  color: var(--gold-ink);
}

.contact-card p,
.contact-link {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--gold-ink);
}

.contact-link.phone-number {
  direction: ltr;
  unicode-bidi: isolate;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
  position: relative;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: btnRing 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 0 0 6px rgba(232,184,40,0.15), var(--shadow-gold); }
}

@keyframes btnRing {
  0% { opacity: 0; transform: scale(1); }
  25% { opacity: 0.5; }
  50% { opacity: 0; transform: scale(1.06); }
  100% { opacity: 0; transform: scale(1); }
}

.btn-map {
  position: relative;
  overflow: hidden;
}

.btn-map svg {
  transition: transform 0.3s ease;
}

.btn-map:hover svg {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

@media (min-width: 769px) {
  .btn-whatsapp-desktop {
    background-color: #e8b828;
    color: #1d3144;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(232, 184, 40, 0.25);
    transition: all 0.3s ease;
  }

  .btn-whatsapp-desktop:hover {
    background-color: #d4a520;
    transform: translateY(-2px);
  }

  .btn-maps-desktop {
    background-color: #ffffff;
    color: #1d3144;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(29, 49, 68, 0.05);
    outline: none;
    transition: all 0.3s ease;
  }

  .btn-maps-desktop:hover {
    background-color: #1d3144;
    color: #ffffff;
    border-color: #1d3144;
  }
}

@media (max-width: 480px) {
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .contact-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-actions,
  .action-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding: 0 1rem;
    margin: 1.25rem 0 0;
  }

  .btn-whatsapp,
  .btn-whatsapp-mobile {
    width: 70%;
    align-self: center;
    background-color: #e8b828;
    color: #1d3144;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(232, 184, 40, 0.3);
  }

  .btn-whatsapp:active {
    transform: scale(0.98);
    background-color: #d4a520;
  }

  .btn-map,
  .btn-maps,
  .btn-maps-mobile,
  a[href*="maps.google"],
  a[href*="goo.gl/maps"] {
    width: 70%;
    align-self: center;
    background-color: #ffffff;
    color: #1d3144;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(29, 49, 68, 0.05);
    outline: none;
  }

  .contact-card,
  .location-card {
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
  }

  .contact-card .contact-icon-box,
  .contact-card .icon-wrapper,
  .location-card .icon-wrapper,
  .contact-card i,
  .location-card i {
    margin: 0 auto 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .contact-card h3,
  .contact-card h4,
  .location-card h3,
  .location-card h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    text-align: center;
  }

  .contact-card p,
  .contact-card .contact-link,
  .location-card p {
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: center;
    margin: 0;
  }

  .contact-actions,
  .action-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 85%;
    max-width: 280px;
    margin: 1.25rem auto 0;
  }

  .btn-whatsapp,
  .btn-map,
  .btn-maps,
  .btn-whatsapp-mobile,
  .btn-maps-mobile {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    border-radius: 30px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }

  .btn-whatsapp img,
  .btn-whatsapp svg,
  .btn-whatsapp i,
  .btn-map img,
  .btn-map svg,
  .btn-map i,
  .btn-maps img,
  .btn-maps svg,
  .btn-maps i {
    font-size: 0.95rem;
  }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  animation: waPulse 2s ease-in-out infinite;
}

body.drawer-expanded .wa-float {
  opacity: 0;
  pointer-events: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

@media (max-width: 480px) {
  .wa-float {
    width: 44px;
    height: 44px;
    bottom: 0.75rem;
    left: 0.75rem;
  }
  .wa-float svg {
    width: 22px;
    height: 22px;
  }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7); }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  padding: 3rem 0 2rem;
  background: #0f1a24;
  color: rgba(255, 255, 255, 0.85);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer-col h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 800;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 30ch;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 184, 40, 0.4);
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: #f1c245;
}

.footer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.footer-social a:hover img {
  transform: scale(1.06);
}

/* Inline footer contact items — icon + text on the same row (all screens) */
.footer-col span {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important; /* right-aligned in RTL */
  gap: 0.6rem !important;
  margin-bottom: 0.85rem !important;
  text-align: right !important;
}

.footer-col span img {
  color: #e8b828 !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
  filter: brightness(0) saturate(100%) invert(74%) sepia(75%) saturate(3) hue-rotate(5deg) brightness(0.95);
}

/* Ensure LTR for the phone number */
.footer-col a[href^="tel:"] {
  direction: ltr !important;
  display: inline-block !important;
  unicode-bidi: embed !important;
}

.footer-copy {
  width: 100%;
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

/* ==========================================
   RESPONSIVE — REST OF PAGE
   ========================================== */
@media (max-width: 992px) {
  .hero-carousel {
    height: 80vh;
    min-height: 500px;
    max-height: 640px;
  }

  .carousel-content h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .carousel-content p {
    font-size: 0.95rem;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .carousel-control.prev {
    right: 1rem;
  }

  .carousel-control.next {
    left: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: auto;
    min-height: auto;
    max-height: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
    margin: 0.75rem 0.75rem 1rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(20, 32, 43, 0.22);
  }
  .carousel-container {
    height: auto;
  }
  .carousel-slide,
  .carousel-overlay {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  .carousel-slide {
    border-radius: 20px;
    overflow: hidden;
  }
  .carousel-slide.active {
    position: relative;
  }
  .carousel-slide .carousel-bg {
    transform: none;
  }
  .carousel-content-wrapper {
    height: auto;
    width: 100%;
    margin-bottom: 0;
    padding: 40px 20px;
    box-sizing: border-box;
  }
  .carousel-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .carousel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .carousel-content h2 {
    font-size: 1.4rem;
    line-height: 1.35;
    margin-bottom: 0.7rem;
  }
  .carousel-content p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
  .carousel-content .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
  .carousel-eyebrow {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    margin-bottom: 0.85rem;
  }
  .carousel-control {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

@media (max-width: 560px) {
  .hero-carousel {
    height: auto;
    margin: 0.6rem 0.6rem 0.9rem;
    border-radius: 18px;
  }
  .carousel-slide {
    border-radius: 18px;
  }

  .carousel-control {
    display: none;
  }

  .btn {
    justify-content: center;
  }

  .map-container iframe {
    height: 280px;
  }
}

@media (max-width: 420px) {
  .hero-carousel {
    height: auto;
  }
  .carousel-content-wrapper {
    padding: 48px 14px;
  }
  .carousel-content h2 {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }
  .carousel-content p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .carousel-content .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
  }
  .carousel-eyebrow {
    font-size: 0.7rem;
    padding: 0.25rem 0.85rem;
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 768px) {
  .footer-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  /* Fix phone number formatting — keep the number LTR inside RTL text */
  .footer-col a[href^="tel:"] {
    direction: ltr !important;
    display: inline-block !important;
    unicode-bidi: embed !important;
  }

  /* Icon hierarchy — icon + text sit on one cleanly-aligned row */
  .footer-col span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 0 1.5rem;
  }
  .footer-shell {
    gap: 1.5rem;
  }
  .footer-col h4 {
    font-size: 0.9rem;
  }
  .footer-col span {
    font-size: 0.82rem;
  }
  .footer-logo {
    height: 36px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 0.85rem;
  }
}

@media (max-width: 740px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .testimonial-card {
    padding: 0.7rem 0.6rem;
  }
  .tslider-container {
    padding: 0.75rem 0.6rem 1.25rem;
  }
  .testimonial-stars {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
  }
  .testimonial-text {
    font-size: 0.78rem;
    margin-bottom: 0.4rem;
  }
  .testimonial-name {
    font-size: 0.78rem;
  }
  .testimonial-role {
    font-size: 0.68rem;
  }
  .category-card-img {
    padding: 1rem;
  }
  .category-card-img img {
    height: 112px;
  }
  .category-card-body {
    padding: 0.75rem 0.5rem 1rem;
  }
  .category-name {
    font-size: 0.85rem;
  }
  .category-desc {
    font-size: 0.7rem;
  }
  .category-cta {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
    margin-top: 0.5rem;
  }
  .product-item img {
    height: 125px;
    max-width: calc(100% - 1.5rem);
    margin: 1rem auto 0;
  }
  .product-info {
    padding: 0.75rem;
  }
  .product-info h3 {
    font-size: 0.85rem;
  }
  .product-desc {
    font-size: 0.8rem;
  }
  .contact-card {
    padding: 1.25rem 0.75rem;
  }
  .contact-icon-box {
    width: 42px;
    height: 42px;
  }
  .contact-icon-box img {
    width: 20px;
    height: 20px;
  }
  .section {
    padding: 3rem 0;
  }
  .section-body {
    padding: 0;
  }
  .section-lead {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  .section-title {
    font-size: clamp(1.3rem, 3.2vw, 1.6rem);
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .category-card-img img {
    height: 90px;
  }
  .product-item img {
    height: 180px;
  }
  .category-card-body {
    padding: 0.5rem 0.35rem 0.75rem;
  }
  .category-name {
    font-size: 0.78rem;
  }
  .category-desc {
    font-size: 0.65rem;
  }
  .category-cta {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }
  .product-info h3 {
    font-size: 0.9rem;
  }
  .product-desc {
    font-size: 0.8rem;
  }
  .about-stat-val {
    font-size: 1.3rem;
  }
  .about-stat-suffix {
    font-size: 0.9rem;
  }
  .about-stat-label {
    font-size: 0.65rem;
  }
  .about-stat-divider {
    height: 30px;
  }
  .about-stats {
    padding: 1rem 0.5rem;
    gap: 0.25rem;
  }
  .testimonial-card {
    padding: 0.6rem 0.5rem;
  }
  .section {
    padding: 2rem 0;
  }
  .container {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

/* Stats counter: 2×2 grid on small phones so columns aren't squished */
@media (max-width: 560px) {
  .about-stats {
    flex-wrap: wrap;
    gap: 1.5rem 0.25rem;
    padding: 1.5rem 0.75rem;
  }
  .about-stat-item {
    flex: 1 1 40%;
  }
  .about-stat-divider {
    display: none;
  }
}

/* Testimonials: compact mobile cards (drop the forced 230px height) */
@media (max-width: 768px) {
  /* Clip the wrapper so no neighboring slide peeks through */
  .testimonials-slider {
    overflow: hidden !important;
    width: 100% !important;
  }

  .testimonial-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.25rem 1rem !important;
    min-height: auto !important;
    box-sizing: border-box !important;
  }

  .testimonial-text {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.75rem !important;
  }

  .testimonial-stars {
    margin-bottom: 0.5rem !important;
    font-size: 0.85rem !important;
  }

  .testimonial-author {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
  }

  .testimonial-name {
    font-size: 0.95rem !important;
    margin-bottom: 0.15rem !important;
  }

  .testimonial-role {
    font-size: 0.8rem !important;
  }
}

/* ==========================================
   PRODUCT MODAL
   ========================================== */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 1rem;
}

.product-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: min(85vw, 600px);
  position: relative;
  padding: 1.6rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-height: 92vh;
  overflow-y: auto;
  font-family: 'Cairo', sans-serif;
}

.product-modal-close {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.product-modal-close:hover,
.product-modal-close:focus-visible {
  background: rgba(0,0,0,0.12);
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.product-modal-img {
  display: block;
  width: 100%;
  max-height: 300px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 1.2rem;
  border-radius: 8px;
}

.product-modal-body {
  text-align: center;
}

.product-modal-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.6rem;
}

.product-modal-desc {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 0.9rem;
}

.product-modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.product-modal-specs .product-spec {
  font-size: 1rem;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #d9e1eb;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 3px 10px rgba(20, 35, 49, 0.08);
}

.product-modal-specs .product-spec--code {
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(180deg, #fffdf6 0%, #fff4c7 100%);
  border-color: #f0d97f;
}

.product-modal-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--gold);
  font-weight: var(--fw-extrabold);
  font-size: 0.9rem;
  border: 1px solid rgba(232, 184, 40, 0.35);
  transition: background var(--duration-fast) ease,
              color var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) ease;
}

.product-modal-quote:hover,
.product-modal-quote:focus-visible {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.product-modal-quote:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .product-modal-overlay {
    padding: 0.75rem;
  }

  .product-modal {
    width: 85vw;
    max-width: 85vw;
    padding: 1rem;
    max-height: 92vh;
  }

  .product-modal-img {
    max-height: 220px;
    margin-bottom: 0.9rem;
  }

  .product-modal-title {
    font-size: 1.05rem;
  }

  .product-modal-desc {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .product-modal-specs .product-spec {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .product-modal-quote {
    padding: 11px 22px;
    font-size: 0.9rem;
  }
}

/* ==========================================
   MOBILE: FLOATING WHATSAPP CLEARANCE
   ========================================== */
@media (max-width: 768px) {
  /* Ensure content scrolls past the floating action button */
  .about-section,
  section:not(.hero-carousel) {
    padding-bottom: 5rem !important;
  }

  .wa-float,
  .floating-whatsapp,
  .whatsapp-btn {
    bottom: 15px !important;
    left: 15px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 999 !important;
  }
}

/* FORCE OVERRIDE FOR MOBILE CONTACT SECTION */
@media screen and (max-width: 768px) {

  /* 1. RESET LOCATION CARD TO MATCH OTHER CARDS */
  .contact-section .location-card,
  .contact-section .contact-card:nth-child(2),
  .contact-section div[class*="location"],
  .contact-card.location,
  .contact-section .contact-card:first-child {
    border-radius: 16px !important;
    padding: 1.5rem 1rem !important;
    border: none !important;
    background-color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    box-sizing: border-box !important;
  }

  /* Force location text block to reset layout */
  .contact-section .location-card *,
  .contact-section .contact-card:nth-child(2) *,
  .contact-section .contact-card:first-child * {
    text-align: center !important;
    writing-mode: horizontal-tb !important;
  }

  /* 2. ENLARGE ACTION BUTTONS SLIGHTLY */
  .contact-actions,
  .action-buttons-wrapper,
  .contact-section .btn-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 1.5rem auto 0 auto !important;
  }

  /* WhatsApp & Maps Buttons */
  .contact-section .btn-whatsapp,
  .contact-section .btn-map,
  .contact-section .btn-maps,
  .contact-section a[class*="whatsapp"],
  .contact-section a[class*="maps"] {
    width: 100% !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.95rem !important;
    border-radius: 50px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }

  /* Specific style for Maps button background/border */
  .contact-section .btn-map,
  .contact-section .btn-maps,
  .contact-section a[class*="maps"] {
    background: #ffffff !important;
    color: #1d3144 !important;
    border: 1px solid #d1d5db !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }
}
