/* ============================================
   WATERMAN - Luxury Bathware CSS
   Color: #111111 | #C9A227 | #FFFFFF | #F5F5F5
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ---- ROOT VARIABLES ---- */
:root {
  --gold: #C9A227;
  --gold-light: #e8c84a;
  --gold-dark: #9a7a1a;
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --white: #ffffff;
  --light: #F5F5F5;
  --gray: #888888;
  --gray-light: #e0e0e0;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(201,162,39,0.25);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p { font-size: 1rem; color: #444; }


.logo-img {
    max-width: 245px; /* cap width on top of the height set lower in HEADER section */
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.section-title { color: var(--black); margin-bottom: 1.2rem; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 580px; }

/* ---- UTILITY ---- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-dark { background: var(--dark); }
.bg-black { background: var(--black); }
.bg-light { background: var(--light); }

.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0;
}
.gold-line.center { margin: 20px auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}

/* ============================================
   HEADER
============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: var(--transition);
}
.logo:hover .logo-img {
  box-shadow: 0 4px 16px rgba(201,162,39,0.25);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }

/* Categories dropdown (desktop) */
.nav-dropdown { position: relative; }
.nav-link-caret i { font-size: 0.6rem; margin-left: 6px; transition: var(--transition); }
.nav-dropdown:hover .nav-link-caret i,
.nav-dropdown.is-open .nav-link-caret i { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(17,17,17,0.98);
  border: 1px solid rgba(201,162,39,0.18);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(.2,.8,.2,1), visibility 0.28s ease;
  z-index: 1001;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 11px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  padding-left: 19px;
}
.nav-dropdown-viewall {
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 13px !important;
  font-weight: 600;
  font-size: 0.74rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-dropdown-viewall i { font-size: 0.65rem; }

.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.call-btn:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
}
.call-btn i { font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 78px; left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,162,39,0.2);
  padding: 30px 24px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
}
.mobile-nav .call-btn { margin-top: 24px; width: fit-content; }

/* Mobile categories accordion */
.mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 1rem;
  font-family: var(--font-body);
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  text-transform: none;
}
.mobile-nav-toggle.active,
.mobile-nav-toggle:hover { color: var(--white); }
.mobile-nav-toggle i { font-size: 0.7rem; color: var(--gold); transition: var(--transition); }
.mobile-nav-toggle.open i { transform: rotate(180deg); }
.mobile-nav-submenu {
  display: none;
  flex-direction: column;
  padding-bottom: 10px;
}
.mobile-nav-submenu.open { display: flex; }
.mobile-nav-submenu a {
  padding: 11px 0 11px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  border-left: 2px solid rgba(201,162,39,0.25);
}
.mobile-nav-submenu a.active,
.mobile-nav-submenu a:hover { color: var(--gold); border-left-color: var(--gold); }


/* ============================================
   HERO — Luxury Deep Gold/Bronze/Black Water
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-water {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, #1c160a 0%, #0a0805 38%, #050403 70%, #000000 100%);
}

/* Banner video — sits behind the gold/bronze water-effect layers so the
   existing caustics, shimmer, waves and bubbles blend on top of it. */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  filter: grayscale(0.15) brightness(0.6) saturate(1.15) contrast(1.05);
  mix-blend-mode: luminosity;
}
@media (max-width: 768px) {
  .hero-video { opacity: 0.38; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,4,3,0.35) 0%, rgba(5,4,3,0.55) 55%, rgba(5,4,3,0.85) 100%);
  pointer-events: none;
}

/* Deep bronze underglow — gives the black real warmth instead of flat grey-black */
.hero-water-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 22% 18%, rgba(201,162,39,0.16), transparent 62%),
    radial-gradient(ellipse 60% 50% at 82% 12%, rgba(140,98,30,0.13), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(120,80,20,0.18), transparent 70%);
}

/* Brushed-metal diagonal sheen, slowly drifting — like light catching brass */
.hero-water-shimmer {
  position: absolute;
  inset: -10%;
  background: repeating-linear-gradient(
    115deg,
    transparent 0%,
    rgba(212,175,90,0.07) 3%,
    rgba(255,223,140,0.04) 5%,
    transparent 9%,
    transparent 18%
  );
  background-size: 260% 100%;
  mix-blend-mode: screen;
  animation: shimmerDrift 22s linear infinite;
  opacity: 0.7;
}
@keyframes shimmerDrift {
  0% { background-position: 0% 0%; }
  100% { background-position: -260% 0%; }
}

/* Caustics — soft moving light-through-water blobs, the signature "luxury water" cue */
.hero-caustics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.85;
}
.hero-caustics span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,224,150,0.55) 0%, rgba(201,162,39,0.18) 45%, transparent 75%);
  filter: blur(4px);
  animation: causticDrift ease-in-out infinite;
}
.hero-caustics span:nth-child(1) { width: 220px; height: 140px; left: 8%;  top: 14%; animation-duration: 17s; }
.hero-caustics span:nth-child(2) { width: 160px; height: 100px; left: 62%; top: 8%;  animation-duration: 21s; animation-delay: 2s; }
.hero-caustics span:nth-child(3) { width: 280px; height: 170px; left: 38%; top: 32%; animation-duration: 25s; animation-delay: 4s; }
.hero-caustics span:nth-child(4) { width: 190px; height: 120px; left: 80%; top: 40%; animation-duration: 19s; animation-delay: 1s; }
.hero-caustics span:nth-child(5) { width: 150px; height: 95px;  left: 18%; top: 52%; animation-duration: 23s; animation-delay: 6s; }
@keyframes causticDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  33% { transform: translate(3%, 2%) scale(1.12); opacity: 0.85; }
  66% { transform: translate(-2%, 3%) scale(0.94); opacity: 0.6; }
}

/* Fine gold particulate — like light catching mineral dust in still water */
.hero-water-grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(rgba(212,175,90,0.5) 0.6px, transparent 0.6px),
    radial-gradient(rgba(212,175,90,0.3) 0.5px, transparent 0.5px);
  background-size: 90px 90px, 130px 130px;
  background-position: 0 0, 40px 60px;
  animation: grainDrift 60s linear infinite;
}
@keyframes grainDrift {
  0% { background-position: 0 0, 40px 60px; }
  100% { background-position: -180px 90px, -160px 250px; }
}

.hero-wave {
  position: absolute;
  left: -5%;
  width: 110%;
  height: 40%;
  bottom: 0;
}
.hero-wave path { transition: var(--transition); }
.hero-wave-1 { opacity: 0.65; animation: waveDrift1 15s ease-in-out infinite; }
.hero-wave-1 path { fill: rgba(218,180,90,0.20); }
.hero-wave-2 { opacity: 0.5; bottom: -1%; animation: waveDrift2 20s ease-in-out infinite; }
.hero-wave-2 path { fill: rgba(150,108,32,0.20); }
.hero-wave-3 { opacity: 0.96; bottom: -2%; animation: waveDrift3 25s ease-in-out infinite; }
.hero-wave-3 path { fill: rgba(5,4,3,0.95); }

/* Slim metallic highlight riding the crest of the front wave — the "glint" */
.hero-wave-glint { position: absolute; left: -5%; width: 110%; height: 40%; bottom: -2%; opacity: 0.55; animation: waveDrift3 25s ease-in-out infinite; }
.hero-wave-glint path { fill: none; stroke: rgba(255,221,150,0.5); stroke-width: 2; }

@keyframes waveDrift1 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-3%) scaleY(1.08); }
}
@keyframes waveDrift2 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(3.5%) scaleY(0.92); }
}
@keyframes waveDrift3 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-2.5%); }
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bubbles span {
  position: absolute;
  bottom: -40px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,236,190,0.9), rgba(201,162,39,0.4) 60%, transparent 100%);
  box-shadow: 0 0 10px rgba(201,162,39,0.45);
  animation: bubbleRise linear infinite;
}
.hero-bubbles span:nth-child(1) { left: 6%;  width: 5px;  height: 5px;  animation-duration: 11s; animation-delay: 0s; }
.hero-bubbles span:nth-child(2) { left: 17%; width: 8px;  height: 8px;  animation-duration: 14s; animation-delay: 1.5s; }
.hero-bubbles span:nth-child(3) { left: 29%; width: 4px;  height: 4px;  animation-duration: 9s;  animation-delay: 3s; }
.hero-bubbles span:nth-child(4) { left: 41%; width: 7px;  height: 7px;  animation-duration: 16s; animation-delay: 0.8s; }
.hero-bubbles span:nth-child(5) { left: 56%; width: 5px;  height: 5px;  animation-duration: 12s; animation-delay: 4s; }
.hero-bubbles span:nth-child(6) { left: 68%; width: 9px;  height: 9px;  animation-duration: 17s; animation-delay: 2.2s; }
.hero-bubbles span:nth-child(7) { left: 82%; width: 6px;  height: 6px;  animation-duration: 13s; animation-delay: 5s; }
.hero-bubbles span:nth-child(8) { left: 93%; width: 4px;  height: 4px;  animation-duration: 10s; animation-delay: 1.2s; }
@keyframes bubbleRise {
  0% { bottom: -5%; opacity: 0; transform: translateX(0); }
  10% { opacity: 0.8; }
  50% { transform: translateX(14px); }
  90% { opacity: 0.5; }
  100% { bottom: 105%; opacity: 0; transform: translateX(-10px); }
}

/* Vignette — pulls focus to the centre, classic premium-photography frame */
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 70% at 50% 45%, transparent 50%, rgba(0,0,0,0.55) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-water-shimmer, .hero-wave-1, .hero-wave-2, .hero-wave-3, .hero-wave-glint, .hero-bubbles span, .hero-caustics span, .hero-water-grain,
  .page-hero-waves .hero-wave-1, .page-hero-waves .hero-wave-2, .page-hero-waves .hero-wave-3, .page-hero-waves .hero-wave-glint {
    animation: none !important;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 8px 20px 8px 6px;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 999px;
  background: rgba(201,162,39,0.06);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(201,162,39,0.6);
  flex-shrink: 0;
  margin-left: 6px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================
   ABOUT SECTION (Homepage)
============================================ */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-home-image {
  position: relative;
}
.about-home-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-home-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 180px; height: 180px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}
.about-home-image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 30px; right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.about-home-content { padding-right: 20px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-feature-text strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.about-feature-text span { font-size: 0.85rem; color: var(--gray); }

/* ============================================
   CATEGORIES SECTION
============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}
.cat-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), filter 0.6s ease;
  filter: saturate(1) brightness(1);
}
@media (max-width: 768px) {
  .cat-card-image { height: 190px; }
}
@media (max-width: 480px) {
  .cat-card-image { height: 170px; }
}
.cat-card:hover .cat-card-image img { transform: scale(1.08); filter: saturate(1.08) brightness(1.04); }
.cat-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.cat-card:hover .cat-card-shine { transform: translateX(130%); }
.cat-card-icon {
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  transition: var(--transition);
}
.cat-card:hover .cat-card-icon { background: rgba(201,162,39,0.18); transform: scale(1.08) rotate(-4deg); }
.cat-card-icon i { font-size: 2rem; color: var(--gold); }
.cat-card-body { padding: 22px 20px; }
.cat-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.cat-card-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.cat-link:hover { gap: 14px; }
.cat-link i { font-size: 0.7rem; }

/* ============================================
   WHY CHOOSE US
============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 54px;
}
.why-item {
  padding: 44px 36px;
  background: var(--dark2);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.why-item:hover { background: #2a2a2a; }
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-item:hover::after { transform: scaleX(1); }
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(201,162,39,0.4);
}
.why-icon i { font-size: 1.6rem; color: var(--gold); }
.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ============================================
   FEATURED PRODUCTS
============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--gold-dark);
}
.product-card-image {
  height: 280px;
  overflow: hidden;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.product-card-body { padding: 22px; }
.product-collection {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 8px;
}
.product-code { font-size: 0.8rem; color: var(--gray); margin-bottom: 16px; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid var(--gray-light);
  background: var(--light);
}
.inquiry-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.inquiry-btn:hover { gap: 14px; color: var(--gold-dark); }
.inquiry-btn i { font-size: 0.7rem; }
.product-whatsapp-btn {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.product-whatsapp-btn:hover {
  background: #1ebd58;
  transform: scale(1.08);
}

/* ============================================
   STATS
============================================ */
.stats-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 70px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.stat-item:hover::after { opacity: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section { background: var(--light); }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.testimonial-card:hover { border-bottom-color: var(--gold); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: #333;
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.testimonial-info strong { display: block; font-size: 0.95rem; }
.testimonial-info span { font-size: 0.8rem; color: var(--gray); }

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #1c1a10 50%, #111 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 500px; height: 500px;
  border: 1px solid rgba(201,162,39,0.08);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.55); margin-bottom: 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   PAGE HERO (Inner pages) — same water-wave
   treatment as the homepage hero, shorter height
============================================ */
.page-hero {
  background: radial-gradient(ellipse 130% 100% at 50% 0%, #1c160a 0%, #0a0805 40%, #050403 75%, #000000 100%);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 18% 15%, rgba(201,162,39,0.16), transparent 62%),
    radial-gradient(ellipse 60% 55% at 85% 20%, rgba(140,98,30,0.13), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(120,80,20,0.16), transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(rgba(212,175,90,0.45) 0.6px, transparent 0.6px),
    radial-gradient(rgba(212,175,90,0.28) 0.5px, transparent 0.5px);
  background-size: 90px 90px, 130px 130px;
  background-position: 0 0, 40px 60px;
}
.page-hero-waves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-waves .hero-wave { height: 60%; }
.page-hero-waves .hero-wave-glint { height: 60%; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-weight: 400; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.65rem; color: var(--gold); }

/* ============================================
   ABOUT PAGE
============================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 400px;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 65%; height: 300px;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.about-years-badge {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  background: var(--gold);
  padding: 26px 22px;
  text-align: center;
  z-index: 2;
}

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 54px; }
.vm-card { padding: 44px; background: var(--black); }
.vm-icon { margin-bottom: 22px; }
.vm-icon i { font-size: 2rem; color: var(--gold); }
.vm-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 14px; }
.vm-text { color: rgba(255,255,255,0.55); line-height: 1.75; font-size: 0.95rem; }

.journey-timeline { margin-top: 54px; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.timeline-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--black); margin-bottom: 8px; }
.timeline-text { color: var(--gray); font-size: 0.92rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 54px; }
.team-card { text-align: center; }
.team-card-image {
  height: 280px;
  background: var(--light);
  overflow: hidden;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
}
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-placeholder {
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--black);
  font-weight: 700;
}
.team-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 54px; }
.cert-card {
  padding: 30px 24px;
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--gold); }
.cert-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.cert-name { font-size: 0.9rem; font-weight: 600; }

/* ============================================
   CATEGORIES PAGE
============================================ */
.cats-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 54px;
}
.cats-page-card {
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
}
.cats-page-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}
.cats-page-image {
  height: 260px;
  background: var(--light);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cats-page-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.6s cubic-bezier(.2,.8,.2,1), filter 0.6s ease; }
.cats-page-card:hover .cats-page-image img { transform: scale(1.08); filter: saturate(1.08) brightness(1.04); }
@media (max-width: 768px) {
  .cats-page-image { height: 220px; }
}
@media (max-width: 480px) {
  .cats-page-image { height: 190px; }
}
.cats-page-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.3) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.cats-page-card:hover .cats-page-shine { transform: translateX(130%); }
.cats-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.cats-page-card:hover .cats-page-overlay { opacity: 1; }
.cats-page-body { padding: 26px; }
.cats-page-title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.cats-page-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; line-height: 1.65; }

/* ============================================
   SINGLE CATEGORY PAGE
============================================ */
.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-widget {
  border: 1px solid var(--gray-light);
  margin-bottom: 28px;
  overflow: hidden;
}
.sidebar-widget-title {
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sidebar-list { padding: 6px 0; }
.sidebar-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.88rem;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.sidebar-list li a:hover,
.sidebar-list li a.active {
  color: var(--gold);
  padding-left: 28px;
}
.sidebar-list li a i { font-size: 0.7rem; color: var(--gold); opacity: 0; transition: var(--transition); }
.sidebar-list li a:hover i,
.sidebar-list li a.active i { opacity: 1; }
.sidebar-cta {
  background: var(--gold);
  padding: 26px 20px;
  text-align: center;
}
.sidebar-cta p { color: var(--black); font-size: 0.88rem; margin-bottom: 14px; font-weight: 500; }
.sidebar-cta a {
  display: block;
  background: var(--black);
  color: var(--white);
  padding: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.sidebar-cta a:hover { background: var(--dark2); }

.cat-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}
.cat-products-count { font-size: 0.88rem; color: var(--gray); }
.single-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-empty-state {
  text-align: center;
  padding: 80px 32px;
  background: var(--light);
  border: 1px dashed var(--gray-light);
}
.cat-empty-state i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 22px;
}
.cat-empty-state h3 {
  margin-bottom: 12px;
  color: var(--black);
}
.cat-empty-state p {
  color: var(--gray);
  max-width: 460px;
  margin: 0 auto 28px;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info-card {
  background: var(--black);
  padding: 50px;
  color: var(--white);
}
.contact-info-title { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 14px; }
.contact-info-subtitle { color: rgba(255,255,255,0.45); margin-bottom: 40px; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; }
.contact-item-icon {
  width: 46px; height: 46px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--gold); font-size: 1rem; }
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.contact-item-value { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; }
.contact-hours {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-hours h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; font-family: var(--font-display); }
.hours-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; }
.hours-item span:first-child { color: rgba(255,255,255,0.45); }
.hours-item span:last-child { color: var(--gold); font-weight: 600; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 50px;
}
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
.contact-form-wrap .sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A227' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-success {
  display: none;
  padding: 20px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-top: 16px;
  text-align: center;
}
.map-embed { margin-top: 54px; }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }
.map-embed-title {
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.map-embed-title i { color: var(--gold); }

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
}
.footer-brand-desc {
  color: rgba(255,255,255,0.38);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 20px 0 28px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.08);
}

.footer-widget-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold); padding-left: 8px; }
.footer-links a i { font-size: 0.6rem; color: var(--gold); opacity: 0; transition: var(--transition); }
.footer-links a:hover i { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.87rem; color: rgba(255,255,255,0.4); line-height: 1.55; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: var(--gold); }

/* ============================================
   FLOATING BUTTONS
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--black);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 900;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ============================================
   AOS-LIKE ANIMATIONS
============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 992px) {
  .about-home { grid-template-columns: 1fr; gap: 50px; }
  .about-home-image::before, .about-home-image::after { display: none; }
  .about-badge { right: 0; }
  .about-home-content { padding-right: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .testimonials-slider { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-images { height: 360px; }
  .vision-mission { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-page-grid { grid-template-columns: repeat(2, 1fr); }
  .category-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .header-cta { display: none; }
  .contact-info-card, .contact-form-wrap { padding: 32px 24px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .single-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cats-page-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .single-products-grid { grid-template-columns: 1fr; }
  .logo-img { height: 32px; padding: 5px 9px; }
}

/* ===========================================================
   AMBIENT WATER ANIMATION (site-wide, decorative)
   Fixed full-viewport layer behind all content: rising "water"
   bubbles + slow expanding ripple rings, in the gold/brand tone
   so it reads as premium "water" branding rather than a generic
   particle effect. Pure CSS, GPU-friendly (transform/opacity only).
   =========================================================== */
.water-fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.water-bubble {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(120,200,255,0.55), rgba(33,150,243,0.22) 60%, rgba(33,150,243,0.03) 100%);
  border: 1px solid rgba(56,170,255,0.25);
  box-shadow: 0 0 10px rgba(56,170,255,0.18);
  opacity: 0;
  animation: waterBubbleRise linear infinite;
}
.water-bubble:nth-child(1) { left: 6%;  width: 10px; height: 10px; animation-duration: 16s; animation-delay: 0s; }
.water-bubble:nth-child(2) { left: 18%; width: 16px; height: 16px; animation-duration: 21s; animation-delay: 2s; }
.water-bubble:nth-child(3) { left: 32%; width: 8px;  height: 8px;  animation-duration: 14s; animation-delay: 5s; }
.water-bubble:nth-child(4) { left: 47%; width: 12px; height: 12px; animation-duration: 19s; animation-delay: 1s; }
.water-bubble:nth-child(5) { left: 61%; width: 18px; height: 18px; animation-duration: 24s; animation-delay: 7s; }
.water-bubble:nth-child(6) { left: 74%; width: 9px;  height: 9px;  animation-duration: 15s; animation-delay: 3s; }
.water-bubble:nth-child(7) { left: 86%; width: 13px; height: 13px; animation-duration: 20s; animation-delay: 9s; }
.water-bubble:nth-child(8) { left: 94%; width: 7px;  height: 7px;  animation-duration: 13s; animation-delay: 11s; }

@keyframes waterBubbleRise {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  8%   { opacity: 0.55; }
  50%  { transform: translate(12px, -55vh) scale(1); }
  90%  { opacity: 0.35; }
  100% { transform: translate(-10px, -110vh) scale(0.8); opacity: 0; }
}

.water-ripple {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.25);
  transform: translate(-50%, 0) scale(0);
  opacity: 0;
  animation: waterRippleExpand 8s ease-out infinite;
}
.water-ripple--2 {
  left: 22%;
  bottom: 32%;
  animation-duration: 11s;
  animation-delay: 3.5s;
}
@keyframes waterRippleExpand {
  0%   { transform: translate(-50%, 0) scale(0);   opacity: 0.5; }
  70%  { transform: translate(-50%, 0) scale(7);    opacity: 0; }
  100% { transform: translate(-50%, 0) scale(7);    opacity: 0; }
}

/* Keep real page content above the ambient water layer.
   (.site-header and .whatsapp-float are already position:fixed with
   z-index 1000 / 900 in their own rules — well above water-fx's 0 —
   so they're left untouched here to avoid breaking their fixed positioning.) */
main, .site-footer, footer {
  position: relative;
  z-index: 1;
}

/* Calmer on small screens / reduced-motion preference */
@media (max-width: 600px) {
  .water-bubble:nth-child(5), .water-bubble:nth-child(7) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .water-bubble, .water-ripple { animation: none; opacity: 0; }
}
