*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  /* Brand Colors */
  --navy: #0b2d5e;
  --blue: #3b82f6;
  --sky: #2979d4;
  --gold: #B8924A;
  --gold-light: #D4AA6A;
  --orange: #e85d20;

  /* Greens */
  --green: #B8924A;
  --green-light: #3D6647;
  --green-dark: #1A2E20;
  --green-deeper: #111D15;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FAF6EF;
  --cream-dark: #F0E9DC;
  --charcoal: #1E1E1E;
  --dark: #0a1929;

  /* Backgrounds */
  --bg: #0d0d0f;
  --surface: #141416;

  /* Text */
  --text: #e5e5e5;
  --text-muted: rgba(255, 255, 255, 0.87);
  --text-dim: rgba(255, 255, 255, 0.829);
  --muted: #555;

  /* Borders */
  --border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.08);

  /* Misc UI */
  --top: #f59e0b;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --font-d: 'Cormorant Garamond', serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;

  /* Radius */
  --radius: 14px;

  /* Animations */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tr: .26s cubic-bezier(.4, 0, .2, 1);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(11, 45, 94, .08);
  --shadow-sm: 0 3px 12px rgba(11, 45, 94, .12);
  --shadow-md: 0 8px 30px rgba(11, 45, 94, .16);
  --shadow-lg: 0 20px 60px rgba(11, 45, 94, .22);
}

body {
  font-family: var(--font-b);
  color: var(--dark);
  background: #f4f8fd;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}
/* ── SECTION WRAPPERS ───────────────────────────────── */
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 70px 0; }

/* ── SCROLL REVEAL ──────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.revealed {
    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; }

  
/* ── TYPOGRAPHY UTILITIES ───────────────────────────── */
.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.body-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}
/* ── DIVIDER ────────────────────────────────────────── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ornament-divider .line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}
.ornament-divider .diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  font-size: .76rem;
  letter-spacing: .02em;
  position: relative;
  z-index: 300
}

.topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 0
}

.tb-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0
}

.tb-left a {
  color: rgba(255, 255, 255, .78);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr)
}

.tb-left a:hover {
  color: #fff
}

.tb-left a i {
  color: var(--gold);
  font-size: .7rem
}

.tb-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .18)
}

.tb-ticker {
  flex: 1;
  overflow: hidden;
  text-align: center;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent)
}

.tb-ticker-inner {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite
}

.tb-ticker-inner span {
  color: var(--gold);
  font-weight: 600
}

.tb-ticker-inner span i {
  margin-right: 5px;
  opacity: .8
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0
}

.tb-right a {
  color: rgba(255, 255, 255, .78);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--tr)
}

.tb-right a:hover {
  color: #fff
}

.tb-lang {
  appearance: none;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-b);
  font-size: .76rem;
  cursor: pointer;
  padding-right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='rgba(255,255,255,.6)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center
}

.tb-lang option {
  background: var(--navy);
  color: #fff
}

/* ─── HEADER ─── */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 200
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(21, 84, 168, .3);
  flex-shrink: 0
}

.logo-mark i {
  color: #fff;
  font-size: 1.1rem
}

.logo-text-wrap {
  line-height: 1.1
}

.logo-name {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em
}

.logo-name span {
  color: var(--sky)
}

.logo-tagline {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500
}

.search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  border: 2px solid var(--light);
  border-radius: 50px;
  background: var(--pale);
  transition: border-color var(--tr), box-shadow var(--tr)
}

.search-wrap:focus-within {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(41, 121, 212, .1)
}

  
.search-input {
  flex: 1;
  border: none;
  background: #3271d930;
  padding: 0 16px;
  font-family: var(--font-b);
  font-size: .87rem;
  color: var(--dark);
  outline: none;
  height: 46px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  
}

.search-input::placeholder {
  color: var(--muted)
}

.search-btn {
  width: 48px;
  height: 46px;
  border-radius: 0 50px 50px 0;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity var(--tr)
}

.search-btn:hover {
  opacity: .88
}

.search-btn i {
  color: #fff;
  font-size: .9rem
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0
}

.act-btn {
  position: relative;
  width: 200px;
  height: 46px;
  border-radius: 50px;
  background: var(--pale);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 800;
  transition: background var(--tr), transform var(--tr)
}

.act-btn:hover {
  background: var(--light);
  transform: translateY(-1px)
}

.act-btn i {
  font-size: 1rem;
  color: var(--navy);
  padding-left: 10px;
}

.act-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff
}

/* ─── NAVBAR ─── */
.navbar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
  position: relative;
  z-index: 190
}

.navbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 50px;
  display: flex;
  align-items: center
}

/* All Categories */
.all-cat-wrap {
  position: relative;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
  margin-right: 4px
}

.all-cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .13);
  border: none;
  color: #fff;
  height: 50px;
  padding: 0 18px;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--tr)
}

.all-cat-btn:hover,
.all-cat-wrap.open .all-cat-btn {
  background: rgba(255, 255, 255, .2)
}

.all-cat-btn i.fa-grip {
  font-size: .9rem
}

.all-cat-btn .caret {
  font-size: .52rem;
  opacity: .7;
  transition: transform .25s
}

.all-cat-wrap.open .all-cat-btn .caret {
  transform: rotate(180deg)
}

.cat-mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 820px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
  z-index: 400;
  border-top: 3px solid var(--sky)
}

.all-cat-wrap.open .cat-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.cat-col {
  padding: 20px 18px
}

.cat-col+.cat-col {
  border-left: 1px solid var(--pale)
}

.cat-col-title {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  padding-bottom: 9px;
  border-bottom: 2px solid var(--light);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 6px
}

.cat-col-title i {
  font-size: .74rem;
  color: var(--blue)
}

.cat-col ul {
  list-style: none
}

.cat-col ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font-size: .81rem;
  color: var(--dark);
  transition: color var(--tr), padding-left var(--tr)
}

.cat-col ul li a:hover {
  color: var(--blue);
  padding-left: 4px
}

.cat-col ul li a i {
  font-size: .55rem;
  color: var(--muted);
  width: 10px
}

.tag {
  font-size: .58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: auto;
  flex-shrink: 0
}

.tag-new {
  background: #e8f5e9;
  color: var(--green)
}

.tag-hot {
  background: #fff3e0;
  color: #e65100
}

.tag-sale {
  background: #fce4ec;
  color: #c62828
}

/* Nav list */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  margin: 0;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center
}

.nav-link {
  color: rgba(255, 255, 255, .85);
  padding: 0 13px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .84rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--tr), background var(--tr);
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  transition: left var(--tr), right var(--tr)
}

.nav-link:hover,
.nav-item:hover>.nav-link {
  color: #fff;
  background: rgba(255, 255, 255, .09)
}

.nav-link:hover::after,
.nav-item:hover>.nav-link::after {
  left: 10px;
  right: 10px
}

.nav-link i.fa-chevron-down {
  font-size: .52rem;
  opacity: .65;
  transition: transform .24s
}

.nav-item:hover>.nav-link i.fa-chevron-down {
  transform: rotate(180deg)
}

.nav-hotline {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  flex-shrink: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .18)
}

.nav-hotline i {
  color: var(--gold);
  font-size: 1.05rem
}

.hotline-lbl {
  font-size: .6rem;
  opacity: .62;
  letter-spacing: .1em;
  text-transform: uppercase
}

.hotline-num {
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .04em;
  font-weight: 700
}

/* L1 dropdown */
.dd {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 218px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
  border-top: 3px solid var(--sky);
  z-index: 500;
  list-style: none
}

.nav-item:hover>.dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dd-item {
  position: relative
}

.dd-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 15px;
  color: var(--dark);
  font-size: .83rem;
  gap: 8px;
  transition: background var(--tr), color var(--tr), padding-left var(--tr)
}

.dd-link:hover {
  background: var(--pale);
  color: var(--blue);
  padding-left: 22px
}

.dd-link>.fa-chevron-right {
  font-size: .56rem;
  color: var(--muted);
  flex-shrink: 0
}

/* L2 */
.dd2 {
  position: absolute;
  top: -6px;
  left: calc(100% + 3px);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 206px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
  border-top: 3px solid var(--sky);
  z-index: 501;
  list-style: none
}

.dd-item:hover>.dd2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0)
}

/* L3 */
.dd3 {
  position: absolute;
  top: -6px;
  left: calc(100% + 3px);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 194px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
  border-top: 3px solid var(--gold);
  z-index: 502;
  list-style: none
}

.dd-item:hover>.dd3 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0)
}

.dd3 .dd-link:hover {
  background: #fffbf0;
  color: #8a5e00
}

/* Mega */
.dd-mega {
  position: absolute;
  top: calc(100% + 2px);
  left: -100px;
  width: 600px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
  border-top: 3px solid var(--sky);
  z-index: 500
}

.nav-item:hover>.dd-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.mega-col-ttl {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light);
  margin-bottom: 7px
}

.dd-mega ul {
  list-style: none
}

.dd-mega ul li a {
  display: block;
  padding: 5px 0;
  font-size: .81rem;
  color: var(--dark);
  transition: color var(--tr), padding-left var(--tr)
}

.dd-mega ul li a:hover {
  color: var(--blue);
  padding-left: 5px
}

/* Hamburger — hidden on desktop, shown on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 250
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #000000;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

/* ─── MOBILE DRAWER ─── */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 45, 94, .55);
  backdrop-filter: blur(4px);
  z-index: 600;
  opacity: 0;
  transition: opacity .3s
}

.mob-overlay.vis {
  opacity: 1
}

.mob-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 92vw;
  height: 100%;
  background: var(--white);
  z-index: 610;
  transition: right .34s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -8px 0 40px rgba(11, 45, 94, .25)
}

.mob-drawer.open {
  right: 0
}

.drw-head {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 18px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0
}

.drw-logo {
  display: flex;
  align-items: center;
  gap: 9px
}

.drw-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center
}

.drw-logo-mark i {
  color: #fff;
  font-size: .95rem
}

.drw-logo-text {
  font-family: var(--font-d);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700
}

.drw-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .15);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr)
}

.drw-close:hover {
  background: rgba(255, 255, 255, .28)
}

.drw-search {
  padding: 12px 14px;
  border-bottom: 1px solid var(--light);
  display: flex;
  gap: 8px;
  flex-shrink: 0
}

.drw-search input {
  flex: 1;
  border: 2px solid var(--light);
  border-radius: 24px;
  padding: 8px 14px;
  font-family: var(--font-b);
  font-size: .83rem;
  outline: none;
  background: var(--pale)
}

.drw-search input:focus {
  border-color: var(--sky)
}

.drw-search button {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .83rem
}

.drw-nav {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0
}

.drw-nav::-webkit-scrollbar {
  width: 4px
}

.drw-nav::-webkit-scrollbar-thumb {
  background: var(--light);
  border-radius: 2px
}

.m-item {
  border-bottom: 1px solid #edf3fb
}

.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  color: var(--dark);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--tr), color var(--tr);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-b);
  gap: 8px
}

.m-link:hover {
  background: var(--pale);
  color: var(--blue)
}

.m-caret {
  width: 22px;
  height: 22px;
  background: var(--pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s
}

.m-caret i {
  font-size: .52rem;
  color: var(--blue)
}

.m-link.active .m-caret {
  background: var(--blue);
  transform: rotate(180deg)
}

.m-link.active .m-caret i {
  color: #fff
}

.m-link.active {
  color: var(--blue);
  background: var(--pale)
}

.m-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
  background: #f8fbff;
  border-left: 3px solid var(--sky);
  margin-left: 18px
}

.m-sub.open {
  max-height: 1200px
}

.m-sub .m-item {
  border-bottom: 1px solid #e6f0fb
}

.m-sub .m-link {
  padding: 10px 14px 10px 16px;
  font-size: .84rem;
  font-weight: 400
}

.m-sub2 {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
  background: #edf4fe;
  border-left: 2px solid var(--gold);
  margin-left: 14px
}

.m-sub2.open {
  max-height: 600px
}

.m-sub2 .m-link {
  padding: 9px 12px 9px 16px;
  font-size: .81rem;
  font-weight: 400;
  color: var(--muted)
}

.m-sub2 .m-link:hover {
  color: var(--blue)
}

.m-sub3 {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s;
  background: #e4effd;
  border-left: 2px solid var(--orange);
  margin-left: 10px
}

.m-sub3.open {
  max-height: 400px
}

.m-sub3 .m-link {
  padding: 8px 10px 8px 14px;
  font-size: .79rem;
  color: var(--muted)
}

.drw-foot {
  padding: 14px 18px;
  border-top: 1px solid var(--light);
  background: var(--pale);
  display: flex;
  justify-content: space-around;
  flex-shrink: 0
}

.drw-foot a {
  color: var(--blue);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600
}

/* ─── BANNER ─── */
.banner-section {
  max-width: 1550px;
  margin: 22px auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 306px;
  gap: 18px;
  align-items: stretch
}

/* Slider */
.slider-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column
}

.slides-track {
  display: flex;
  transition: transform .75s cubic-bezier(.4, 0, .2, 1);
  flex: 1
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease
}

.slide:hover .slide-img {
  transform: scale(1.04)
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 45, 94, .85) 0%, rgba(11, 45, 94, .5) 52%, rgba(11, 45, 94, .08) 100%)
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 52px 56px;
  max-width: 500px
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(232, 160, 32, .4)
}

.slide-title {
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 4px;
  font-weight: 600
}

.slide-italic {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  font-style: italic;
  color: var(--gold);
  line-height: 1.08;
  display: block;
  margin-bottom: 14px;
  font-weight: 600
}

.slide-desc {
  color: rgba(255, 255, 255, .76);
  font-size: .88rem;
  margin-bottom: 28px;
  line-height: 1.72;
  font-weight: 300
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .87rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255, 255, 255, .22);
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr)
}

.slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 255, 255, .32);
  background: var(--gold);
  color: #fff
}

.slide-btn i {
  font-size: .78rem
}

.slide-badge {
  position: absolute;
  bottom: 26px;
  right: 26px;
  z-index: 3;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  min-width: 72px
}

.slide-badge-num {
  font-family: var(--font-d);
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1
}

.slide-badge-txt {
  font-size: .62rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px
}

/* Slider controls */
.sl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 45, 94, .2);
  transition: background var(--tr), transform var(--tr);
  z-index: 10;
  color: var(--navy);
  font-size: .84rem
}

.sl-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08)
}

.sl-prev {
  left: 14px
}

.sl-next {
  right: 14px
}

.sl-dots {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10
}

.sl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  border: none;
  transition: width .3s, background .3s, border-radius .3s
}

.sl-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #fff
}

/* Side promos */
.side-promos {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px
}

.promo-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease
}

.promo-card:hover .promo-img {
  transform: scale(1.06)
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 45, 94, .92) 0%, rgba(11, 45, 94, .25) 55%, transparent 100%)
}

.promo-body {
  position: relative;
  z-index: 2;
  padding: 18px
}

.promo-lbl {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px
}

.promo-lbl i {
  font-size: .66rem
}

.promo-title-txt {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  font-weight: 600
}

.promo-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .77rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(232, 160, 32, .45);
  border-radius: 20px;
  padding: 5px 13px;
  transition: background var(--tr), color var(--tr)
}

.promo-card:hover .promo-link-btn {
  background: var(--gold);
  color: #fff
}

.promo-link-btn i {
  font-size: .6rem;
  transition: transform .2s
}

.promo-card:hover .promo-link-btn i {
  transform: translateX(3px)
}

/* ════════════════════════════
RESPONSIVE — COMPLETE OVERHAUL
════════════════════════════ */

/* ── 1150px: tablet landscape ── */
@media(max-width:1150px) {
  .dd-mega {
    width: 500px;
    left: -50px;
    grid-template-columns: repeat(2, 1fr)
  }

  .cat-mega {
    width: 600px;
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ── 960px: tablet ── */
@media(max-width:960px) {
  .tb-ticker {
    display: none
  }

  .banner-section {
    grid-template-columns: 1fr
  }

  .side-promos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto !important;
    gap: 14px
  }

  .promo-card {
    min-height: 200px
  }
}

/* ── 768px: mobile breakpoint ── */
@media(max-width:768px) {

  /* Topbar */
  .topbar-inner {
    padding: 0 16px;
    height: 36px
  }

  .tb-ticker {
    display: none
  }

  .tb-left a.tb-gst,
  .tb-sep:nth-child(4),
  .tb-sep:nth-child(2) {
    display: none
  }

  .tb-left {
    gap: 10px
  }

  .tb-right {
    gap: 8px
  }

  /* Header two-row wrap */
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 14px;
    gap: 0;
    row-gap: 8px
  }

  /* Hide empty navbar on mobile — hamburger is in header */
  .navbar {
    display: none
  }

  .logo {
    flex: 1;
    min-width: 0
  }

  .logo-tagline {
    display: none
  }

  .logo-name {
    font-size: 1.25rem
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 9px
  }

  .logo-mark i {
    font-size: .9rem
  }

  /* Action icons — right of logo */
  .hdr-actions {
    order: 2;
    gap: 2px
  }

  .act-btn {
    /*width: 38px;*/
    height: 38px
  }

  .act-btn i {
    font-size: .88rem
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    order: 3;
    margin-left: 6px
  }

  /* Search — full row below */
  .search-wrap {
    order: 4;
    flex-basis: 100%;
    width: 100%;
    border-radius: 50px
  }


  .search-input {
    height: 40px;
    font-size: .83rem
  }

  .search-btn {
    width: 42px;
    height: 40px;
    border-radius: 0 50px 50px 0
  }

  /* Navbar — only show hamburger row */
  .navbar-inner {
    padding: 0 14px;
    height: 46px
  }

  .nav-list,
  .nav-hotline {
    display: none
  }

  .all-cat-wrap {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mob-overlay {
    display: block
  }

  /* Banner */
  .banner-section {
    padding: 0 14px;
    margin: 14px auto;
    gap: 12px
  }

  .slide {
    min-height: 280px
  }

  .slide-content {
    padding: 26px 24px;
    max-width: 85%
  }

  .slide-title {
    font-size: 1.55rem
  }

  .slide-italic {
    font-size: 1.75rem
  }

  .slide-desc {
    font-size: .8rem;
    margin-bottom: 18px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden
  }

  .slide-btn {
    padding: 10px 20px;
    font-size: .8rem
  }

  .slide-badge {
    bottom: 14px;
    right: 14px;
    padding: 8px 12px;
    border-radius: 9px;
    min-width: 60px
  }

  .slide-badge-num {
    font-size: 1.3rem
  }

  .slide-badge-txt {
    font-size: .56rem
  }

  .sl-btn {
    width: 34px;
    height: 34px;
    font-size: .75rem
  }

  .sl-prev {
    left: 10px
  }

  .sl-next {
    right: 10px
  }

  /* Side promos — 2 cols on tablet-mobile */
  .side-promos {
    grid-template-columns: 1fr 1fr;
    height: auto !important;
    gap: 12px
  }

  .promo-card {
    min-height: 180px;
    border-radius: 12px
  }

  .promo-body {
    padding: 14px
  }

  .promo-title-txt {
    font-size: 1rem;
    margin-bottom: 8px
  }

  .promo-lbl {
    font-size: .58rem;
    margin-bottom: 3px
  }

  .promo-link-btn {
    font-size: .72rem;
    padding: 4px 10px
  }
}

/* ── 480px: small mobile ── */
@media(max-width:480px) {

  /* Topbar */
  .tb-left a.tb-loc,
  .tb-sep {
    display: none
  }

  .tb-left a.tb-phone {
    font-size: .72rem
  }

  .tb-right a.tb-login span {
    display: none
  }

  /* Header */
  .header-inner {
    padding: 9px 12px;
    row-gap: 7px
  }

  .logo-name {
    font-size: 1.15rem
  }

  .logo-mark {
    width: 34px;
    height: 34px
  }

  .logo-mark i {
    font-size: .82rem
  }

  .act-btn {
    /*width: 35px;*/
    height: 35px
  }

  /* Banner */
  .banner-section {
    padding: 0 12px;
    margin: 10px auto
  }

  .slide {
    min-height: 240px
  }

  .slide-content {
    padding: 22px 20px;
    max-width: 88%
  }

  .slide-tag {
    font-size: .58rem;
    padding: 4px 10px;
    margin-bottom: 10px
  }

  .slide-title {
    font-size: 1.3rem
  }

  .slide-italic {
    font-size: 1.5rem;
    margin-bottom: 10px
  }

  .slide-desc {
    display: none
  }

  .slide-btn {
    padding: 9px 18px;
    font-size: .78rem
  }

  .slide-badge {
    display: none
  }

  /* Side promos */
  .side-promos {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .promo-card {
    min-height: 155px;
    border-radius: 10px
  }

  .promo-body {
    padding: 12px
  }

  .promo-title-txt {
    font-size: .92rem;
    margin-bottom: 7px
  }
}

/* ── 360px: extra-small phones ── */
@media(max-width:360px) {
  .logo-text-wrap {
    display: none
  }

  .logo-mark {
    width: 36px;
    height: 36px
  }

  .act-btn {
    width: 33px;
    height: 33px
  }

  .hamburger span {
    width: 22px
  }

  .slide {
    min-height: 220px
  }

  .slide-content {
    padding: 18px 16px
  }

  .slide-title {
    font-size: 1.15rem
  }

  .slide-italic {
    font-size: 1.3rem
  }

  .side-promos {
    grid-template-columns: 1fr
  }

  .promo-card {
    min-height: 140px
  }
}

/* ── CREATIVE FEATURES STRIP ────────────────────────── */
#features-strip {
  background: var(--blue);
  padding: 0;
}
.feat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feat-strip-item {
  padding: 50px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.feat-strip-item:last-child { border-right: none; }
.feat-strip-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.feat-strip-item:hover { background: rgba(255,255,255,0.04); }
.feat-strip-item:hover::before { width: 100%; }
.feat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.feat-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.feat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.feat-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgb(255 255 255 / 20%);
  line-height: 1;
}

/* about-section */
.about-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title h1 {
    color: #2196F3;
    font-size: 2.5rem;
    font-weight: bold;
}

.section-subtitle h2 {
    font-size: 1.8rem;
    color: #333;
}

.floating-image {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-text {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.content-text p {
    margin-bottom: 20px;
}

.highlight {
    color: #000;
    font-weight: 600;
}

.content-text::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .floating-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

.quad-image{
    position:relative;
    width:100%;
    max-width:450px;
    aspect-ratio:4/3;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr 1fr;
    gap:8px;
}

/* pieces */
.quad{
    position:relative;
    overflow:hidden;
    border-radius:6px;

    opacity:0;
    transition:all .7s cubic-bezier(.22,.61,.36,1);
}

/* image */
.quad img{
    position:absolute;
    width:200%;
    height:200%;
    object-fit:cover;
}

/* image positions */
.q1 img{ left:0; top:0; }
.q2 img{ right:0; top:0; }
.q3 img{ left:0; bottom:0; }
.q4 img{ right:0; bottom:0; }

/* start positions */
.q1{ transform:translate(-40px,-40px) scale(.9); }
.q2{ transform:translate(40px,-40px) scale(.9); }
.q3{ transform:translate(-40px,40px) scale(.9); }
.q4{ transform:translate(40px,40px) scale(.9); }

/* animate */
.animate-on-scroll.active .quad{
    opacity:1;
    transform:translate(0,0) scale(1);
}

/* delay */
.animate-on-scroll.active .q1{ transition-delay:0s; }
.animate-on-scroll.active .q2{ transition-delay:.15s; }
.animate-on-scroll.active .q3{ transition-delay:.3s; }
.animate-on-scroll.active .q4{ transition-delay:.45s; }

/* ── PRODUCTS ───────────────────────────────────────── */
#products { background: #d4e7ff61; padding: 60px 0; }
.product-filter-btn {
  background: none;
  border: 1px solid rgba(44,74,53,0.2);
  padding: 8px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}
.product-filter-btn:hover,
.product-filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.product-card {
  background: linear-gradient(90deg, #ebebeb 0%, #d7d6d5 100%);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.product-card-img {
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 320px;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 500;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background:rgb(152 193 235 / 58%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.product-overlay-btn:hover { background: var(--white); color: var(--green); }
.product-card-body { padding: 22px; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.product-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green);
  font-weight: 600;
}
.product-price .old-price {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 300;
}
.product-swatches { display: flex; gap: 6px; margin-top: 10px; }
.swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s;
}
.swatch:hover { transform: scale(1.3); }

/* ── why us ──────────────────────────────────────────── */
#why-about {  padding: 60px 0;}
.why-about-img-main {
  width: 100%; height: 540px;
  object-fit: cover;
}
.why-about-img-accent {
  position: absolute;
  bottom: -40px; right: -30px;
  width: 200px; height: 250px;
  object-fit: cover;
  border: 6px solid var(--cream);
  border-top-left-radius: 50px;
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.15); */
}
.why-about-stat-card {
  background: var(--blue);
  color: var(--white);
  padding: 28px 24px;
  text-align: center;
  flex: 1;
}
.why-about-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.why-about-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.why-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  padding: 10px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--green);
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
}
.why-about-badge i { color: var(--gold); }

/* ── TESTIMONIALS ───────────────────────────────────── */
#testimonials { background: #d4e7ff61; }
.testimonial-card {
  background: rgb(27 94 180 / 85%);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 38px;
  position: relative;
  transition: background var(--transition);
  height: 100%;
}
.testimonial-card:hover { background:rgb(27 94 180 / 85%); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.6;
  /* margin-bottom: 24px; */
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testimonial-author-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
}
.testimonial-author-loc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.stars { color: var(--gold-light); font-size: 0.75rem; margin-bottom: 18px; }

/* Review Summary Box */
.review-summary-box{
    background: rgb(27 94 180 / 85%);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 36px;
}

/* Score */
.review-score{
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

/* Stars */
.review-stars{
    color: var(--gold-light);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* Review Count */
.review-count{
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.12em;
    margin-top: 6px;
}

/* Bar Row */
.review-bar-row{
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Star Label */
.review-star-label{
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    width: 30px;
}

/* Progress Background */
.review-progress{
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

/* Progress Fill */
.review-progress-fill{
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
}

/* Light Fill */
.review-progress-fill.light{
    background: var(--gold-light);
}

/* Percentage */
.review-percent{
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    width: 30px;
    text-align: right;
}

/* Width Utilities */
.fill-88{ width:88%; }
.fill-8{ width:8%; }
.fill-3{ width:3%; }

/* ── FAQ ────────────────────────────────────────────── */
#faq { background: var(--cream); }
.faq-item {
  border-bottom: 1px solid rgba(44,74,53,0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--green); }
.faq-question.open { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 1px solid rgba(44,74,53,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--green);
  transition: all var(--transition);
}
.faq-question.open .faq-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}
.faq-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── CONTACT / FOOTER ───────────────────────────────── */
#contact { background: #226bc342; }
.contact-form-input {
  width: 100%;
  background: rgb(255 255 255 / 19%);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 14px 18px;
  transition: border-color var(--transition);
  outline: none;
}
.contact-form-input:focus { border-color: var(--gold); }
.contact-form-input::placeholder { color: rgba(255,255,255,0.35); }
.btn-submit {
  background: var(--gold);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 40px;
  cursor: pointer;
  transition: background var(--transition);
  font-weight: 500;
}
.btn-submit:hover { background: var(--gold-light); }

.footer-divider { border-color: rgba(255,255,255,0.07); }
.footer-nav-link {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.footer-nav-link:hover { color: var(--gold); }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-btn i{
  color: var(--charcoal);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

/* Divider */
.contact-divider .line{
  background: var(--gold);
}

.contact-divider .diamond{
  background: var(--gold);
}

/* Section label */
.contact-label{
  color: var(--gold-light);
}

/* Title */
.contact-title{
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
}

/* Description */
.contact-description{
  color: var(--charcoal);
}

/* Contact Info Item */
.contact-info-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

/* Icons */
.contact-icon{
  color:var(--gold);
  font-size:1.1rem;
  margin-top:2px;
}

/* Info Label */
.contact-info-label{
  font-size:0.7rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--charcoal);
  margin-bottom:4px;
}

/* Info Text */
.contact-info-text{
  font-size:0.88rem;
  color:var(--charcoal);
  font-weight:300;
}

/* Form Box */
.contact-form-box{
  background:rgb(27 94 180);
  border:1px solid rgba(255,255,255,0.07);
  padding:50px;
}

/* Small Labels */
.contact-label-small{
  font-size:0.68rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:rgb(255 255 255);
  display:block;
  margin-bottom:8px;
}

/* ── BACK TO TOP ────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover { background: var(--gold); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
  .feat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .g1,.g2,.g3,.g4,.g5,.g6,.g7,.g8,.g9 {
    grid-column: auto; grid-row: auto;
  }
  .about-img-accent { display: none; }
}
@media (max-width: 767px) {
  .feat-strip-grid { grid-template-columns: 1fr; }
  .feat-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 70px 0; }
  .slider-nav-btn { display: none; }
}


/* ══════════════════════════════════════
    NEWSLETTER BAND
══════════════════════════════════════ */
.newsletter-band {
  background: #e8f2fe;
  padding: 48px 0;
}

.newsletter-eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 6px;
}

.newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #000;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.newsletter-subtext {
  font-size: 0.8rem;
  font-weight: 300;
  color:#000;
}

.newsletter-form-wrap {
  display: flex;
  max-width: 480px;
  margin-left: auto;
}

.newsletter-input {
  flex: 1;
  background: #1b5eb4;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 13px 18px;
  outline: none;
  transition: background var(--ease);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.22);
}

.newsletter-btn {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 26px;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--ease);
}

.newsletter-btn:hover {
  background: var(--green-dark);
}

.newsletter-privacy {
  font-size: 0.68rem;
  color: #000;
  margin-top: 8px;
  text-align: right;
}

.newsletter-privacy a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}

.newsletter-privacy a:hover {
  color: var(--white);
}


/* ══════════════════════════════════════
    FOOTER MAIN BODY
══════════════════════════════════════ */
.footer-body {
  background: #1b5eb4;
  padding: 72px 0 0;
}


/* ── Brand ─────────────────────────── */
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
}

.footer-logo-dot {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.footer-about {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}


/* ── Social Icons ──────────────────── */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 146, 74, 0.1);
}


/* ── Column Title ──────────────────── */
.footer-col-title {
  position: relative;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}


/* ── Nav Link List ─────────────────── */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 2px;
}

.footer-nav-list a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease), gap var(--ease);
}

.footer-nav-list a i {
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--ease);
}

.footer-nav-list a:hover {
  color: var(--white);
  gap: 10px;
}

.footer-nav-list a:hover i {
  opacity: 1;
}

.link-badge {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  margin-left: auto;
}

.badge-new {
  background: var(--gold);
  color: var(--white);
}

.badge-sale {
  background: #c0392b;
  color: var(--white);
}


/* ── Contact Items ─────────────────── */
.contact-list {
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon-box {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(184, 146, 74, 0.15);
  border: 1px solid rgba(184, 146, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.82rem;
  transition: background var(--ease);
}

.contact-item:hover .contact-icon-box {
  background: rgba(184, 146, 74, 0.28);
}

.contact-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.contact-value a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--ease);
}

.contact-value a:hover {
  color: var(--gold-light);
}

.contact-value-secondary {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.contact-value-secondary a {
  color: var(--text-dim);
}

.contact-value-secondary a:hover {
  color: var(--gold-light);
}




/* ── Divider ───────────────────────── */
.footer-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 52px 0 0;
}


/* ══════════════════════════════════════
    FOOTER BOTTOM BAR
══════════════════════════════════════ */
.footer-bottom {
  background: var(--green-deeper);
  padding: 22px 0;
}

.footer-copy {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin: 0;
  color: rgb(255 255 255 / 74%);
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-copy a:hover {
  color: var(--gold);
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links li {
  display: flex;
  align-items: center;
}

.legal-links a {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  padding: 4px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--ease);
}

.legal-links li:last-child a {
  border-right: none;
}

.legal-links a:hover {
  color: var(--gold-light);
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
  align-items: center;
}

.payment-label {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 4px;
}

.pay-badge {
  height: 24px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: border-color var(--ease), color var(--ease);
}

.pay-badge:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.65);
}


/* ══════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .newsletter-form-wrap {
    max-width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .newsletter-privacy {
    text-align: left;
  }

  .payment-row {
    justify-content: center;
  }

  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .newsletter-form-wrap {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }

  .newsletter-btn {
    width: 100%;
    padding: 13px;
  }

  .footer-body {
    padding: 52px 0 0;
  }
}


  /* ─── FLOATING DOCK ─── */
  .floating-dock {
    position: fixed;
    bottom: 32px;
    right: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 9999;
  }

  /* Each pill button */
  .fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px 0 14px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(20,20,22,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    transition:
      transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.3s ease,
      border-color 0.3s ease;
    transform-origin: right center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }

  /* Shimmer layer */
  .fab::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* Icon wrapper */
  .fab-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .fab-label {
    position: relative;
    z-index: 1;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  }

  .fab:hover .fab-label {
    max-width: 120px;
    opacity: 1;
  }

  .fab:hover .fab-icon {
    transform: scale(1.15);
  }

  .fab:hover {
    transform: scale(1.05) translateX(-2px);
  }

  .fab:active {
    transform: scale(0.96);
  }

  /* ── WhatsApp ── */
  .fab-whatsapp .fab-icon {
    background: rgba(37,211,102,0.15);
    color: var(--green);
    box-shadow: 0 0 12px rgba(37,211,102,0.2);
  }

  .fab-whatsapp:hover {
    border-color: rgba(37,211,102,0.4);
    box-shadow: 0 6px 30px rgba(37,211,102,0.15), 0 4px 24px rgba(0,0,0,0.4);
  }

  .fab-whatsapp::before {
    background: radial-gradient(ellipse at left, rgba(37,211,102,0.06) 0%, transparent 70%);
  }
  .fab-whatsapp:hover::before { opacity: 1; }

  /* ── Call ── */
  .fab-call .fab-icon {
    background: rgba(59,130,246,0.15);
    color: var(--blue);
    box-shadow: 0 0 12px rgba(59,130,246,0.2);
  }

  .fab-call:hover {
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 6px 30px rgba(59,130,246,0.15), 0 4px 24px rgba(0,0,0,0.4);
  }

  .fab-call::before {
    background: radial-gradient(ellipse at left, rgba(59,130,246,0.06) 0%, transparent 70%);
  }
  .fab-call:hover::before { opacity: 1; }

  /* ── Go to Top ── */
  .fab-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.9);
    transition:
      opacity 0.4s ease,
      transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  .fab-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
  }

  .fab-top .fab-icon {
    background: rgba(245,158,11,0.15);
    color: var(--top);
    box-shadow: 0 0 12px rgba(245,158,11,0.2);
  }

  .fab-top:hover {
    border-color: rgba(245,158,11,0.4);
    box-shadow: 0 6px 30px rgba(245,158,11,0.15), 0 4px 24px rgba(0,0,0,0.4);
  }

  .fab-top::before {
    background: radial-gradient(ellipse at left, rgba(245,158,11,0.06) 0%, transparent 70%);
  }
  .fab-top:hover::before { opacity: 1; }

  /* Arrow animation on hover */
  .fab-top:hover .arrow-icon {
    animation: arrowUp 0.5s ease infinite alternate;
  }
  @keyframes arrowUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-3px); }
  }

  /* Phone ring animation */
  .fab-call:hover .call-icon {
    animation: ring 0.6s ease infinite;
  }
  @keyframes ring {
    0%,100% { transform: rotate(0deg) scale(1.15); }
    20%     { transform: rotate(-12deg) scale(1.15); }
    40%     { transform: rotate(12deg) scale(1.15); }
    60%     { transform: rotate(-8deg) scale(1.15); }
    80%     { transform: rotate(8deg) scale(1.15); }
  }

  /* WhatsApp pulse */
  .fab-whatsapp:hover .wa-icon {
    animation: pulse 0.8s ease infinite alternate;
  }
  @keyframes pulse {
    from { filter: drop-shadow(0 0 0px rgba(37,211,102,0.6)); }
    to   { filter: drop-shadow(0 0 6px rgba(37,211,102,0.9)); }
  }

  /* SVG icons */
  svg { display: block; }



  /* ── Scoped to .smap-page — zero class conflicts ── */

.smap-page {
  --smap-blue: #3b82f6;
  --smap-blue-light: #eff6ff;
  --smap-blue-mid: #bfdbfe;
  --smap-blue-dark: #1d4ed8;
  --smap-white: #ffffff;
  --smap-bg: #f8faff;
  --smap-text: #1e3a5f;
  --smap-muted: #64748b;
  --smap-border: #dbeafe;
  --smap-radius: 10px;
  --smap-shadow: 0 2px 12px rgba(59,130,246,0.08);

  font-family: 'DM Sans', sans-serif;
  background: var(--smap-bg);
  color: var(--smap-text);
  min-height: 100vh;
  padding: 56px 24px 80px;
}

.smap-page *, .smap-page *::before, .smap-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Header ── */
.smap-header {
  text-align: center;
  margin-bottom: 52px;
}

.smap-header span {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--smap-text);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.smap-header h1::after {
  content: '';
  display: block;
  margin: 10px auto 0;
  width: 48px;
  height: 3px;
  background: var(--smap-blue);
  border-radius: 99px;
}

/* ── Wrapper ── */
.smap-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Top row (3-col) ── */
.smap-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

/* ── Section block ── */
.smap-section {
  margin-bottom: 44px;
}

.smap-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--smap-blue);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.smap-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--smap-blue) 0%, var(--smap-border) 100%);
  border: none;
  margin-bottom: 20px;
  border-radius: 99px;
}

.smap-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.smap-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ── Card ── */
.smap-card {
  background: var(--smap-white);
  border: 1.5px solid var(--smap-border);
  border-radius: var(--smap-radius);
  padding: 20px 22px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  box-shadow: var(--smap-shadow);
}

.smap-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--smap-blue);
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: 3px 0 0 3px;
}

.smap-card:hover {
  border-color: var(--smap-blue);
  box-shadow: 0 6px 24px rgba(59,130,246,0.14);
  transform: translateY(-2px);
}

.smap-card:hover::before {
  opacity: 1;
}

.smap-card-title {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--smap-text);
  margin-bottom: 5px;
  transition: color 0.2s ease;
}

.smap-card:hover .smap-card-title {
  color: var(--smap-blue);
}

.smap-card-desc {
  font-size: 0.82rem;
  color: var(--smap-muted);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .smap-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .smap-grid-3 { grid-template-columns: 1fr; }
  .smap-grid-4 { grid-template-columns: 1fr; }
  .smap-grid-2 { grid-template-columns: 1fr; }
}



/* ── All classes prefixed .phero- — zero conflicts ── */


.demo-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 28px 0 14px;
}

.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 60, 0.82) 0%,
    rgba(29, 78, 216, 0.55) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--phero-blue), #60a5fa, var(--phero-blue));
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.section-pad{
  overflow:hidden;
}

#why-about{
  overflow:hidden;
}