/* ============================================
   SEEBOO TEX FAAB - COMPLETE SITE CSS
   White Premium Theme | All Pages
   ============================================ */
:root {
  --gold: #b8972a;
  --gold-light: #d4af50;
  --gold-dark: #8a6e1a;
  --white: #ffffff;
  --off-white: #fafafa;
  --light: #f5f3ef;
  --gray: #e8e4de;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-muted: #888;
  --black: #111;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 60px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --tr: 0.3s ease;
}

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

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

body {
  font-family: var(--font-b);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden
}

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

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: #f1f1f1
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 30px
}

section {
  padding: 90px 0
}

/* ---- TYPOGRAPHY ---- */
.tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0
}

h2.title {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px
}

h2.title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400
}

.sec-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 55px
}

.sec-header p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--tr);
  cursor: pointer;
  font-family: var(--font-b)
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold)
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 151, 42, 0.3)
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #fff
}

.btn-dark {
  background: #fff;
  color: var(--text-dark);
  border: 2px solid #fff
}

.btn-dark:hover {
  background: transparent;
  color: #fff
}

.btn-sm {
  padding: 9px 22px;
  font-size: 11px
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--black);
  padding: 9px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .65)
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.tb-left {
  display: flex;
  gap: 22px
}

.tb-left a {
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr)
}

.tb-left a:hover {
  color: var(--gold-light)
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.tb-right span {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .3)
}

.socials {
  display: flex;
  gap: 8px
}

.socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  transition: var(--tr)
}

.socials a:hover {
  background: var(--gold);
  color: #fff
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--gray);
  box-shadow: 0 1px 12px rgba(0, 0, 0, .05);
  transition: var(--tr)
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center
}

.nav-links li {
  position: relative
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: var(--tr)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(184, 151, 42, .07)
}

.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--tr);
  z-index: 100
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-links .dropdown li a {
  padding: 10px 18px;
  display: block;
  border-radius: 0;
  font-size: 13px
}

.nav-links .dropdown li a:hover {
  background: rgba(184, 151, 42, .08);
  padding-left: 24px;
  color: var(--gold)
}

.nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--tr);
  white-space: nowrap
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--tr)
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ---- PAGE HERO BANNER ---- */
.page-hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2010 100%)
}

.page-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .3) 100%)
}

.page-hero .content {
  position: relative;
  z-index: 2;
  color: #fff
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 16px
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: var(--tr)
}

.page-hero .breadcrumb a:hover {
  color: var(--gold-light)
}

.page-hero .breadcrumb span {
  color: var(--gold-light)
}

.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400
}

.page-hero p {
  font-size: 16px;
  opacity: .8;
  max-width: 520px;
  line-height: 1.7
}

/* ---- MARQUEE ---- */
.marquee {
  background: var(--gold);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap
}

.marquee-track {
  display: inline-flex;
  gap: 50px;
  animation: marquee 25s linear infinite;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

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

/* ---- HERO SLIDER (Homepage) ---- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 520px;
  overflow: hidden
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease
}

.slide.active {
  opacity: 1
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.slide-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 65%, transparent 100%)
}

.slide-body {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 620px
}

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px
}

.slide-body h1 {
  font-family: var(--font-h);
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px
}

.slide-body h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400
}

.slide-body p {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 34px;
  line-height: 1.65
}

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.sld-prev,
.sld-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  transition: var(--tr)
}

.sld-prev:hover,
.sld-next:hover {
  background: var(--gold);
  border-color: var(--gold)
}

.sld-prev {
  left: 22px
}

.sld-next {
  right: 22px
}

.sld-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10
}

.sld-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--tr)
}

.sld-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px
}

/* ---- STATS ---- */
.stats-band {
  background: var(--light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: 70px 0
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

.stat-box {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: var(--tr)
}

.stat-box:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.stat-box img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin: 0 auto 14px
}

.stat-num {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline
}

.stat-sfx {
  font-family: var(--font-h);
  font-size: 26px;
  color: var(--gold);
  display: inline
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4
}

/* ---- COLLECTIONS GRID ---- */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.coll-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--tr)
}

.coll-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.coll-imgwrap {
  position: relative;
  overflow: hidden;
  height: 270px
}

.coll-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.coll-card:hover .coll-imgwrap img {
  transform: scale(1.06)
}

.coll-ov {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--tr)
}

.coll-card:hover .coll-ov {
  opacity: 1
}

.coll-info {
  padding: 22px
}

.coll-info h3 {
  font-family: var(--font-h);
  font-size: 22px;
  margin-bottom: 8px
}

.coll-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px
}

.coll-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  transition: var(--tr)
}

.coll-link:hover {
  letter-spacing: .5px
}

/* ---- PRODUCTS GRID ---- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 46px
}

.fb {
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 30px;
  border: 1.5px solid var(--gray);
  color: var(--text-muted);
  transition: var(--tr);
  background: #fff;
  font-family: var(--font-b)
}

.fb:hover,
.fb.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 46px
}

.prod-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray);
  transition: var(--tr)
}

.prod-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px)
}

.prod-imgwrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--light)
}

.prod-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.prod-card:hover .prod-imgwrap img {
  transform: scale(1.05)
}

.prod-acts {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--tr)
}

.prod-card:hover .prod-acts {
  opacity: 1;
  transform: translateX(0)
}

.act-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--tr);
  color: var(--text-dark)
}

.act-btn:hover {
  background: var(--gold);
  color: #fff
}

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px
}

.prod-badge.hot {
  background: #e63946
}

.prod-info {
  padding: 16px
}

.prod-cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  display: block
}

.prod-name {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px
}

.prod-btn {
  display: block;
  text-align: center;
  background: var(--light);
  color: var(--text-dark);
  padding: 9px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--tr)
}

.prod-btn:hover {
  background: var(--gold);
  color: #fff
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-imgwrap {
  position: relative
}

.about-imgwrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg)
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #fff;
  padding: 22px 26px;
  text-align: center;
  border-radius: var(--radius)
}

.about-badge .num {
  display: block;
  font-family: var(--font-h);
  font-size: 46px;
  font-weight: 700;
  line-height: 1
}

.about-badge .lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: .9;
  line-height: 1.4
}

.about-txt p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0
}

.feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid)
}

.feat svg {
  color: var(--gold);
  flex-shrink: 0
}

.about-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px
}

.text-link {
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--tr)
}

.text-link:hover {
  gap: 10px
}

/* ---- VALUES GRID ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.val-card {
  padding: 32px;
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  transition: var(--tr)
}

.val-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px)
}

.val-icon {
  font-size: 32px;
  margin-bottom: 16px
}

.val-card h3 {
  font-family: var(--font-h);
  font-size: 20px;
  margin-bottom: 10px
}

.val-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7
}

/* ---- PROCESS STEPS ---- */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.process-row::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: .25
}

.step {
  text-align: center;
  padding: 0 20px
}

.step-num {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  background: #fff;
  position: relative;
  z-index: 1;
  transition: var(--tr)
}

.step:hover .step-num {
  background: var(--gold);
  color: #fff
}

.step h4 {
  font-family: var(--font-h);
  font-size: 18px;
  margin-bottom: 10px
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7
}

/* ---- TESTIMONIALS ---- */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.test-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--tr);
  position: relative
}

.test-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

.test-card::before {
  content: '\201C';
  font-family: var(--font-h);
  font-size: 72px;
  color: var(--gold);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 18px;
  line-height: 1
}

.stars {
  color: #f5b800;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px
}

.test-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic
}

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

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0
}

.t-name {
  font-weight: 600;
  font-size: 14px
}

.t-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  overflow: hidden
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72)
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto
}

.cta-content h2 {
  font-family: var(--font-h);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2
}

.cta-content h2 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400
}

.cta-content p {
  font-size: 16px;
  opacity: .82;
  margin-bottom: 36px;
  line-height: 1.7
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ---- CONTACT STRIP ---- */
.contact-strip {
  padding: 52px 0;
  background: var(--black)
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.cs-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .75)
}

.cs-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px
}

.cs-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px
}

.cs-val {
  font-size: 13px;
  line-height: 1.5
}

.cs-val a {
  color: rgba(255, 255, 255, .75);
  transition: var(--tr)
}

.cs-val a:hover {
  color: var(--gold-light)
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text-dark)
}

.footer-main {
  padding: 72px 0 54px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 46px
}

.f-logo {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .88;
  margin-bottom: 18px
}

.f-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-bottom: 14px
}

.f-gstin {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 18px
}

.f-socials {
  display: flex;
  gap: 8px
}

.f-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  transition: var(--tr)
}

.f-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff
}

.f-col h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.f-col ul li {
  margin-bottom: 10px
}

.f-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 5px
}

.f-col ul a:hover {
  color: var(--gold-light);
  padding-left: 5px
}

.f-contact li {
  display: flex;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 12px;
  line-height: 1.6;
  align-items: flex-start
}

.f-contact li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px
}

.f-contact li a {
  color: rgba(255, 255, 255, .45)
}

.f-contact li a:hover {
  color: var(--gold-light)
}

.f-newsletter h4 {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 24px 0 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.nl-form {
  display: flex
}

.nl-form input {
  flex: 1;
  padding: 10px 13px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-right: none;
  color: #fff;
  font-size: 12px;
  font-family: var(--font-b);
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none
}

.nl-form input:focus {
  border-color: var(--gold)
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, .25)
}

.nl-form button {
  background: var(--gold);
  color: #fff;
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  font-family: var(--font-b);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--tr)
}

.nl-form button:hover {
  background: var(--gold-dark)
}

.footer-bottom {
  background: rgba(0, 0, 0, .3);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, .3)
}

/* ---- MODAL ---- */
.modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr)
}

.modal-wrap.open {
  opacity: 1;
  visibility: visible
}

.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 680px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(.9);
  transition: var(--tr)
}

.modal-wrap.open .modal {
  transform: scale(1)
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: var(--tr)
}

.modal-close:hover {
  background: var(--gold);
  color: #fff
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.modal-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover
}

.modal-body {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px
}

.modal-body h3 {
  font-family: var(--font-h);
  font-size: 22px
}

.modal-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7
}

/* ---- FLOATING BUTTONS ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 998;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--tr)
}

.wa-float:hover {
  transform: scale(1.08);
  background: #1eb358
}

.back-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 998;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
  color: var(--text-dark)
}

.back-top.show {
  opacity: 1;
  visibility: visible
}

.back-top:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start
}

.contact-info-card {
  background: var(--light);
  padding: 38px;
  border-radius: var(--radius)
}

.contact-info-card h3 {
  font-family: var(--font-h);
  font-size: 24px;
  margin-bottom: 24px
}

.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 151, 42, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0
}

.ci-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px
}

.ci-val {
  font-size: 15px;
  font-weight: 500
}

.ci-val a {
  color: var(--text-dark);
  transition: var(--tr)
}

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

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--gray)
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 15px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-b);
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: var(--tr);
  width: 100%;
  resize: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 42, .1)
}

.form-group select option {
  background: #fff
}

.form-msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-top: 10px;
  display: none
}

.form-msg.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block
}

.form-msg.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block
}

/* ---- ABOUT PAGE ---- */
.cert-section {
  background: var(--light)
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.cert-img {
  max-width: 280px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius)
}

.cert-text h3 {
  font-family: var(--font-h);
  font-size: 28px;
  margin-bottom: 16px
}

.cert-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8
}

.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px
}

/* ---- EVENTS PAGE ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.event-card {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--tr)
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent
}

.event-img {
  height: 220px;
  overflow: hidden
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.event-card:hover .event-img img {
  transform: scale(1.05)
}

.event-info {
  padding: 22px
}

.event-date {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px
}

.event-info h3 {
  font-family: var(--font-h);
  font-size: 20px;
  margin-bottom: 10px
}

.event-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7
}

/* ---- AOS ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0)
}

[data-aos="fade-right"] {
  transform: translateX(-24px)
}

[data-aos="fade-right"].visible {
  transform: translateX(0)
}

[data-aos="fade-left"] {
  transform: translateX(24px)
}

[data-aos="fade-left"].visible {
  transform: translateX(0)
}

[data-aos="zoom-in"] {
  transform: scale(.92)
}

[data-aos="zoom-in"].visible {
  transform: scale(1)
}

/* ---- MISC ---- */
.text-center {
  text-align: center
}

.mt-50 {
  margin-top: 50px
}

.bg-light {
  background: var(--light)
}

.bg-white {
  background: #fff
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0
}

.why-imgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.why-imgrid img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--tr)
}

.why-imgrid img:nth-child(1) {
  margin-top: 36px
}

.why-imgrid img:nth-child(3) {
  margin-top: -36px
}

.why-imgrid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow)
}

.why-pts {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0
}

.wp {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.wp-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 151, 42, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0
}

.wp h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px
}

.wp p {
  font-size: 13px;
  color: var(--text-muted)
}

/* ---- RESPONSIVE ---- */
@media(max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr)
  }

  .prod-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:900px) {

  .about-grid,
  .contact-grid,
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 46px
  }

  .coll-grid,
  .test-grid {
    grid-template-columns: 1fr 1fr
  }

  .cs-grid {
    grid-template-columns: 1fr 1fr
  }

  .process-row {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .process-row::before {
    display: none
  }

  .about-imgwrap img {
    height: 360px
  }

  .about-badge {
    bottom: -14px;
    right: -14px
  }

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

  .events-grid {
    grid-template-columns: 1fr 1fr
  }

  .slide-body h1 {
    font-size: clamp(32px, 6vw, 48px);
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 20px;
  }

  .tb-right span,
  .tb-right .socials {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 26px 26px;
    box-shadow: var(--shadow-lg);
    transition: right .3s ease;
    z-index: 998;
    overflow-y: auto;
    gap: 2px
  }

  .nav-links.open {
    right: 0
  }

  .nav-links a {
    padding: 11px 0;
    font-size: 15px;
    width: 100%;
    border-bottom: none
  }

  .nav-links .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 14px
  }

  .nav-cta {
    display: none
  }

  .hero {
    height: 85vh;
    min-height: 480px;
  }

  .slide-body {
    left: 5%;
    right: 5%;
    max-width: 100%;
    text-align: center;
  }

  .slide-btns {
    justify-content: center;
  }

  .sld-prev,
  .sld-next {
    display: none;
  }

  .coll-grid,
  .events-grid {
    grid-template-columns: 1fr
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-row {
    grid-template-columns: 1fr 1fr
  }

  .modal-grid {
    grid-template-columns: 1fr
  }

  .modal-grid img {
    height: 220px
  }

  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media(max-width:540px) {
  .container {
    padding: 0 16px;
  }

  .tb-left {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .topbar .container {
    justify-content: center;
  }

  .slide-body h1 {
    font-size: 36px;
  }

  .slide-body p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .prod-grid {
    grid-template-columns: 1fr
  }

  .stats-row {
    grid-template-columns: 1fr
  }

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

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .fb {
    width: 100%;
    text-align: center;
  }

  .cs-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

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

  .test-grid,
  .coll-grid,
  .values-grid {
    grid-template-columns: 1fr
  }

  .cta-btns,
  .slide-btns,
  .about-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    text-align: center
  }

  .page-hero {
    padding: 55px 0
  }

  .back-top {
    bottom: 100px;
    right: 24px;
  }

  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}