/* ═══════════════════════════════════════════════════════════════
   Sikaram — style.css  (Single Page Version)
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy: #000000;
  --navy-d: #000000;
  --navy-l: #000000;
  --navy-pale: #e0e0e5;
  --red: #000000;
  --red-l: #000000;
  --bg: #ffffff;
  --bg2: #f9f9f9;
  --bg3: #ffffff;
  --text: #000000;
  --text-m: #000000;
  --text-s: #000000;
  --white: #ffffff;
  --gold: #8e8e93;
  --gold-l: #aeaeb2;
  --border: rgba(0, 0, 0, 0.08);
  --sh-sm: 0 2px 20px rgba(0, 0, 0, 0.05);
  --sh-md: 0 8px 48px rgba(0, 0, 0, 0.08);
  --sh-lg: 0 24px 80px rgba(0, 0, 0, 0.12);

  /* Glassy Tokens */
  --glass-white: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(20px) saturate(1.8);
}

/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: rgba(28, 43, 58, 0.1);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

section[id] {
  scroll-margin-top: 70px;
}

/* ── CURSOR ── */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(28, 43, 58, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  top: 0;
  left: 0;
  transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cursor-ring.hov {
  transform: scale(2.1);
  border-color: var(--red);
  background: rgba(140, 58, 58, 0.04);
}

@media (max-width: 1023px) {
  .cursor,
  .cursor-ring {
    display: none !important;
  }
  body {
    cursor: default !important;
  }
}

/* ── MOBILE OVERLAY ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--navy-d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold-l);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 28px;
  cursor: pointer;
  padding: 12px;
  transition: color 0.3s;
}

.mobile-close:hover {
  color: var(--white);
}

/* ── STICKY HEADER ── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 70px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}

.brand-text small {
  display: block;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-s);
  margin-top: 3px;
  font-family: 'Jost', sans-serif;
  text-transform: none;
}

#mainNav {
  display: flex;
  align-items: center;
  gap: 36px;
}

#mainNav a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-m);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

#mainNav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#mainNav a:hover {
  color: var(--navy);
}

#mainNav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 11px 26px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 10px;
  margin-right: -10px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--navy);
}

/* ── SHARED UTILS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.12s;
}

.reveal-d2 {
  transition-delay: 0.24s;
}

.reveal-d3 {
  transition-delay: 0.36s;
}

.reveal-d4 {
  transition-delay: 0.48s;
}

.reveal-d5 {
  transition-delay: 0.60s;
}

.sec-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.sec-eyebrow.light {
  color: var(--red-l);
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--navy);
}

.sec-title.light {
  color: var(--white);
}

.sec-title em {
  font-style: italic;
  color: var(--red);
}

.sec-title.light em {
  color: var(--gold-l);
}

.sec-sub {
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-s);
  font-weight: 300;
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.btn-primary {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 16px 44px;
  text-decoration: none;
  border: 1px solid var(--navy);
  border-radius: 8px;
  transition: all 0.35s;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--navy);
}

.btn-outline {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid rgba(28, 43, 58, 0.3);
  padding: 16px 44px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.35s;
  display: inline-block;
}

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

.btn-primary:active,
.btn-outline:active,
.form-submit:active {
  transform: scale(0.98);
  opacity: 0.95;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  overflow: visible;
  background-color: var(--white);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: filter 0.6s ease, opacity 0.6s ease;
}

body.cat-overlay-active #hero-canvas {
  filter: blur(3px);
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
}

.hero-desktop-wrap {
  display: block;
}

.hero-mobile-wrap {
  display: none;
}


body.cat-overlay-active .hero-inner > *:not(.hero-categories-simple) {
  filter: blur(5px);
  opacity: 0.2;
  pointer-events: none;
  transition: all 0.5s ease;
}

.hero-logo-badge {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeDown 1s ease 0.2s forwards;
}

.hero-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.hero-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 15vw, 200px);
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -4px;
  line-height: 0.9;
  margin-bottom: -60px;
  opacity: 0;
  animation: fadeDown 1.2s ease 0.6s forwards;
}

.hero-brand-sub {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-top: -60px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeDown 1.1s ease 0.8s forwards;
}

.hero-tagline {
  margin-top: 28px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(12px, 1.4vw, 15px);
  font-style: italic;
  color: var(--text-s);
  opacity: 0;
  animation: fadeDown 1s ease 0.9s forwards;
}

.hero-location {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-s);
  opacity: 0;
  animation: fadeDown 1s ease 1.05s forwards;
}

.hero-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  animation: fadeDown 1s ease 1.35s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.9s forwards;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-s);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

/* Floating stats bottom-right */
.hero-stats {
  position: absolute;
  bottom: 44px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 1s ease 2.1s forwards;
}

.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.hstat-lbl {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-s);
  margin-top: 3px;
}

.hstat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-categories-simple {
  margin-top: 120px;
  opacity: 0;
  animation: fadeDown 1s ease 1.5s forwards;
}

.hero-categories-simple ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  overflow: visible;
}

.hero-categories-simple ul li {
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-categories-simple.menu-open ul li {
  filter: blur(2px);
  opacity: 0.4;
}

.hero-categories-simple.menu-open ul li.active-cat {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.05);
}

.hero-categories-simple ul li a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.hero-categories-simple ul li a:hover {
  color: var(--red);
}

.cat-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 180px;
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 16px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

.cat-submenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cat-submenu a {
  padding: 8px 24px;
  font-size: 11px;
  color: var(--text-m) !important;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  letter-spacing: 1.5px;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 6px;
  margin: 0 8px;
}

.cat-submenu a:hover {
  background: rgba(28, 43, 58, 0.04);
  color: var(--red) !important;
  padding-left: 28px;
}

/* Multi-column Mega Menus */
.cat-submenu.mega-2 {
  min-width: 380px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  text-align: left;
}

.cat-submenu.mega-3 {
  min-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  text-align: left;
}

.cat-submenu.mega-kids {
  min-width: 420px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px;
  text-align: left;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-left: 24px;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.cat-submenu.mega-2 a,
.cat-submenu.mega-3 a,
.cat-submenu.mega-kids a {
  padding: 6px 24px;
}

/* ════════════════════════════════════════════
   COLLECTION
════════════════════════════════════════════ */
#collection {
  padding: 120px 60px 100px;
  background: var(--bg);
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

/* ── Collection Banner Grid ─────────────────────── */
.cb-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.cb-banner {
  grid-column: span 2;
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(28, 43, 58, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}


.cb-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(28, 43, 58, 0.14);
}

.cb-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.95);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cb-banner:hover img {
  transform: scale(1.06);
}

.cb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 20, 0.08) 0%,
    rgba(10, 10, 20, 0.65) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px;
  transition: background 0.4s ease;
}

.cb-banner:hover .cb-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 20, 0.15) 0%,
    rgba(10, 10, 20, 0.78) 100%
  );
}

.cb-num {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.45);
  align-self: flex-start;
}

.cb-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cb-tag {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-l, #c9a96e);
  font-weight: 500;
}

.cb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin: 4px 0 10px;
}

.cb-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s, letter-spacing 0.3s;
  width: fit-content;
}

.cb-banner:hover .cb-cta {
  color: #fff;
  border-bottom-color: #fff;
  letter-spacing: 3px;
}





/* Specialty Banner */
.specialty-banner {
  margin-top: 80px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.specialty-banner-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.specialty-banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.specialty-banner-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  width: 100%;
  max-width: 900px;
}

.specialty-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.specialty-banner-desc {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  font-family: 'Jost', sans-serif;
  max-width: 600px;
  margin-bottom: 40px;
}

.specialty-banner-features {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
#about {
  background: var(--bg2);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

#about-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 80px 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-lead {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-m);
  font-weight: 300;
  margin-top: 28px;
  margin-bottom: 32px;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  border-left: 2px solid var(--text);
  padding-left: 24px;
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 77.5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.tl-item {
  display: grid;
  grid-template-columns: 52px 12px 1fr;
  align-items: flex-start;
  gap: 0 20px;
  margin-bottom: 40px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  padding-top: 3px;
  text-align: right;
  letter-spacing: 1px;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  justify-self: center;
}

.tl-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.tl-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
}

.tl-content p {
  font-size: 15px;
  color: var(--text-m);
  line-height: 1.7;
  font-weight: 300;
}

/* Values Row */
.values-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.val {
  padding: 52px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s;
}

.val:last-child {
  border-right: none;
}

.val:hover {
  background: rgba(255, 255, 255, 0.03);
}

.val-icon {
  font-size: 20px;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 16px;
  display: block;
}

.val h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}

.val p {
  font-size: 13px;
  color: var(--text-s);
  line-height: 1.7;
  font-weight: 300;
}

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
#reviews {
  padding: 120px 0 0;
  background: var(--bg3);
  overflow: hidden;
}

#reviews .section-head {
  padding: 0 60px;
  margin-bottom: 64px;
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 0 20px;
}

.carousel-wrap::before,
.carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg3), transparent);
}

.carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg3), transparent);
}

.carousel-track {
  display: flex;
  gap: 24px;
  animation: scrollTrack 70s linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

/* Review Card */
.rv-card {
  width: 360px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 40px 36px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  border-radius: 12px;
}

.rv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--navy), var(--red));
}

.rv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(28, 43, 58, 0.11);
}

.rv-qmark {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--navy-pale);
  margin-bottom: 16px;
  display: block;
}

.rv-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-m);
  line-height: 1.7;
  margin-bottom: 28px;
}

.rv-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.rv-stars span {
  color: var(--gold);
  font-size: 13px;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-l), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold-l);
  flex-shrink: 0;
}

.rv-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.rv-role {
  font-size: 11px;
  color: var(--text-s);
  margin-top: 2px;
}

/* Stats Bar */
.stats-bar {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.stat {
  padding: 52px 40px;
  text-align: center;
}

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 400;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.stat-l {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-s);
  margin-top: 8px;
  display: block;
}

.stat-sep {
  width: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
#contact {
  padding: 120px 80px 100px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-desc {
  font-size: 15px;
  color: var(--text-s);
  line-height: 1.9;
  font-weight: 300;
  margin-top: 24px;
  margin-bottom: 48px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ci {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.ci:first-child {
  padding-top: 0;
}

.ci:last-child {
  border-bottom: none;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 16px;
  height: 16px;
}

.ci-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-s);
  display: block;
  margin-bottom: 5px;
}

.ci-val {
  font-size: 14px;
  color: var(--text-m);
  display: block;
  text-decoration: none;
  line-height: 1.7;
  font-weight: 300;
  transition: color 0.3s;
}

a.ci-val:hover {
  color: var(--navy);
}

.map-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.map-btn:hover {
  color: var(--red);
  border-color: var(--red);
}

/* Contact Details Container */
.contact-right {
  background: var(--bg3);
  padding: 52px;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--sh-sm);
}


.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  margin-bottom: 20px;
}

.fg label {
  display: block;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-s);
  margin-bottom: 10px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.fg select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='black' d='M0 0l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px 6px;
  padding-right: 24px;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-bottom-color: var(--navy);
}

.fg textarea {
  min-height: 96px;
  resize: none;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 17px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.3s, transform 0.3s;
}

.form-submit:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 52px 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 700;
}

.ft-tag {
  font-size: 12px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-s);
}

.ft-nav {
  display: flex;
  gap: 24px;
}

.ft-nav a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-m);
  text-decoration: none;
  transition: color 0.3s;
}

.ft-nav a:hover {
  color: var(--gold-l);
}

.ft-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.ft-social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ft-social-caption {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-s);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-align: right;
  transition: color 0.3s;
}

.soc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s ease;
}

.soc:hover {
  transform: translateY(-4px) scale(1.08);
  opacity: 0.85;
}

.soc-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  flex-shrink: 0;
}

.soc-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.soc--instagram .soc-icon {
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 16px rgba(193, 53, 132, 0.30);
}

.soc--facebook .soc-icon {
  background: #1877f2;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.30);
}

.soc--whatsapp .soc-icon {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.soc:hover .soc--instagram .soc-icon,
.soc--instagram:hover .soc-icon {
  box-shadow: 0 8px 28px rgba(193, 53, 132, 0.50);
}

.soc:hover .soc--facebook .soc-icon,
.soc--facebook:hover .soc-icon {
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.50);
}

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

.soc-label {
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-s);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  transition: color 0.3s;
}

.soc:hover .soc-label {
  color: var(--text-m);
}

.footer-bottom {
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--text-s);
  letter-spacing: 0.4px;
}

/* ════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════ */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollAnim {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }

  49% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  99% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Specialized Uniform Solutions ──────────────── */
#uniforms {
  padding: 120px 60px 100px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.uniform-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.uniform-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--sh-sm);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}

.uniform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
}

.uniform-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy);
}

.uniform-card-icon svg {
  width: 28px;
  height: 28px;
}

.uniform-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.uniform-card-desc {
  font-size: 15px;
  color: var(--text-m);
  line-height: 1.6;
}

.uniform-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin: 28px 0;
  padding: 0;
}

.uniform-list li {
  font-size: 14px;
  color: var(--text);
  position: relative;
  padding-left: 20px;
  font-weight: 400;
}

.uniform-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #8e8e93);
}

.uniform-card-note {
  font-size: 13.5px;
  color: var(--text-s);
  line-height: 1.7;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin: 0;
}

/* Why Choose Us Grid */
.why-choose-us {
  margin-bottom: 80px;
}

.why-head {
  text-align: center;
  margin-bottom: 48px;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 30px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
  box-shadow: var(--sh-sm);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold, #8e8e93);
  transition: background 0.3s, color 0.3s;
}

.why-card:hover .why-icon {
  background: var(--navy);
  color: var(--white);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  font-family: 'Jost', sans-serif;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-s);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* Call to Action */
.uniform-cta {
  background: var(--bg2);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border);
}

.uniform-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.uniform-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.uniform-cta p {
  font-size: 15px;
  color: var(--text-m);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 30px;
}


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* ── Laptop (1024px – 1366px): fix Collection Navigation visibility ── */
@media (min-width: 1024px) and (max-width: 1366px) {
  #hero {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-top: 80px;
    padding-bottom: 40px;
    align-items: flex-start;
  }

  .hero-inner {
    padding: 40px 40px 20px;
  }

  .hero-brand-title {
    font-size: clamp(60px, 10vw, 130px);
    margin-bottom: -40px;
  }

  .hero-brand-sub {
    margin-top: -40px;
    margin-bottom: 20px;
  }

  .hero-categories-simple {
    margin-top: 60px;
  }

  .hero-categories-simple ul {
    gap: 18px;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  #header {
    padding: 0 28px;
  }

  #mainNav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    display: none;
  }

  #collection {
    padding: 100px 28px 80px;
  }

  .cb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cb-banner {
    grid-column: span 1;
  }

  #uniforms {
    padding: 100px 32px 80px;
  }
  .uniform-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }



  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 32px 60px;
  }

  .values-row {
    grid-template-columns: 1fr 1fr;
  }

  .val {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .val:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  #reviews .section-head {
    padding: 0 28px;
  }

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

  .stat-sep {
    display: none;
  }

  .stats-bar > :nth-child(1),
  .stats-bar > :nth-child(5) {
    border-right: 1px solid var(--border);
  }

  .stats-bar > :nth-child(1),
  .stats-bar > :nth-child(3) {
    border-bottom: 1px solid var(--border);
  }

  .stats-bar > :nth-child(3),
  .stats-bar > :nth-child(7) {
    border-right: none;
  }

  .stats-bar > :nth-child(5),
  .stats-bar > :nth-child(7) {
    border-bottom: none;
  }

  .stat {
    padding: 36px 20px;
    border: none;
  }

  #contact {
    padding: 100px 28px 80px;
  }

  .contact-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 36px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 44px 28px;
    gap: 28px;
  }

  .ft-social {
    align-items: center;
  }

  .ft-social-caption {
    text-align: center;
  }

  .soc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .soc-icon svg {
    width: 21px;
    height: 21px;
  }

  .ft-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 28px;
  }

  .footer-bottom p {
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  #header {
    padding: 0 20px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-text small {
    font-size: 7px;
    letter-spacing: 1px;
  }

  #hero {
    height: auto;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
  }

  .hero-inner {
    padding: 0 24px;
    width: 100%;
  }

  .hero-desktop-wrap {
    display: none;
  }

  .hero-mobile-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hm-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hm-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  .hm-brand {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-s);
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.2;
  }

  .hm-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.3;
  }

  .hm-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 14vw, 76px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .hm-subtitle {
    font-size: 14px;
    color: var(--text-m);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 290px;
  }

  .hm-actions {
    width: 100%;
  }

  .hm-actions .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 20px !important;
  }



  .sec-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .cb-grid {
    grid-template-columns: 1fr;
  }
  .cb-banner {
    grid-column: span 1;
  }

  #uniforms {
    padding: 80px 20px 60px;
  }
  .uniform-card {
    padding: 30px 24px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-card {
    padding: 30px 24px;
  }
  .uniform-cta {
    padding: 40px 20px;
  }



  /* Mobile Accordion Category Menu */
  body.cat-overlay-active .hero-inner > *:not(.hero-categories-simple) {
    filter: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-categories-simple {
    margin-top: 48px;
    padding: 0;
    width: 100%;
  }

  .hero-categories-simple ul {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .hero-categories-simple ul li {
    position: relative !important;
    border-bottom: 1px solid var(--border);
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .hero-categories-simple.menu-open ul li {
    filter: none !important;
    opacity: 1 !important;
  }

  .hero-categories-simple.menu-open ul li.active-cat {
    transform: none !important;
  }

  .hero-categories-simple ul li > a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 8px !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    color: var(--navy) !important;
    font-weight: 500;
  }

  .hero-categories-simple ul li > a::after {
    content: '+';
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-s);
    transition: transform 0.3s ease;
  }

  .hero-categories-simple ul li.active-cat > a::after {
    content: '−';
  }

  .cat-submenu {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0 0 16px 16px !important;
    margin: 0 !important;
    max-height: unset !important;
    overflow-y: visible !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    transition: none !important;
  }

  .cat-submenu.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .cat-submenu.mega-2,
  .cat-submenu.mega-3,
  .cat-submenu.mega-kids {
    display: none !important;
    grid-template-columns: none !important;
    padding: 0 0 16px 16px !important;
    gap: 8px !important;
  }

  .cat-submenu.mega-2.active,
  .cat-submenu.mega-3.active,
  .cat-submenu.mega-kids.active {
    display: flex !important;
    flex-direction: column !important;
  }

  .mega-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }

  .mega-col:last-child {
    margin-bottom: 0;
  }

  .mega-title {
    font-size: 12px !important;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px !important;
    padding-left: 8px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .cat-submenu a {
    padding: 10px 8px !important;
    margin: 0 !important;
    font-size: 13px !important;
    text-align: left !important;
    white-space: normal !important;
    color: var(--text-m) !important;
    border-radius: 6px;
    display: block !important;
  }

  .cat-submenu a:hover {
    background: rgba(28, 43, 58, 0.04) !important;
    padding-left: 12px !important;
  }


  .specialty-banner-content {
    padding: 40px 24px;
  }

  .specialty-banner-features {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
  }

  .about-inner {
    padding: 80px 20px 50px;
  }

  .timeline::before {
    left: 61.5px;
  }

  .tl-item {
    grid-template-columns: 45px 10px 1fr;
    gap: 0 12px;
    margin-bottom: 30px;
  }

  .values-row {
    grid-template-columns: 1fr;
  }

  .val {
    border-right: none !important;
    padding: 40px 24px;
  }

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

  .stats-bar > :nth-child(1),
  .stats-bar > :nth-child(3),
  .stats-bar > :nth-child(5) {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .stats-bar > :nth-child(7) {
    border-right: none !important;
    border-bottom: none !important;
  }

  .stat {
    padding: 32px 20px !important;
  }

  .rv-card {
    width: 85vw;
    padding: 30px 24px;
  }

  .contact-form {
    padding: 32px 20px;
  }

  .ci {
    flex-direction: column;
    gap: 12px;
  }

  .soc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .soc-icon svg {
    width: 18px;
    height: 18px;
  }

  .ft-social-icons {
    gap: 14px;
  }
}

@media (max-width: 400px) {
  .cat-submenu.mega-3 {
    grid-template-columns: 1fr;
  }
}