/* ============================================================
   NEER THULI — LUXURY DARK BLUE + GOLD PREMIUM THEME
   Enterprise · Luxury · Modern SaaS · Premium Corporate
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@200;300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Core Luxury Palette */
  --navy:          #071426;
  --navy-mid:      #0a1d38;
  --royal:         #0d2a52;
  --royal-mid:     #0f3264;
  --blue-glow:     #1a4a8a;

  /* Gold System */
  --gold:          #d4af37;
  --gold-light:    #f5d67b;
  --gold-pale:     #fef3c7;
  --gold-dim:      rgba(212,175,55,0.3);
  --gold-glow:     rgba(212,175,55,0.15);

  /* Text */
  --white:         #f8fafc;
  --text-sub:      #94a3b8;
  --text-muted:    #4a6080;

  /* Surfaces */
  --surface-1:     rgba(13,42,82,0.6);
  --surface-2:     rgba(7,20,38,0.8);
  --glass:         rgba(255,255,255,0.04);
  --glass-border:  rgba(212,175,55,0.18);

  /* Shadows & Effects */
  --shadow-gold:   0 8px 40px rgba(212,175,55,0.2);
  --shadow-blue:   0 8px 40px rgba(7,20,38,0.6);
  --glow-gold:     0 0 30px rgba(212,175,55,0.25), 0 0 60px rgba(212,175,55,0.1);
  --glow-blue:     0 0 30px rgba(26,74,138,0.4);

  --radius:        14px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --transition:    0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'DM Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Luxury grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utility ---------- */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  opacity: 0.85;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-sub);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
}

.divider {
  width: 56px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px auto 36px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-48px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { opacity: 0; transform: translateX(48px);  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 38px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8941e 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  border: 1px solid rgba(212,175,55,0.5);
  letter-spacing: 2px;
  transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  background-position: 0% 0%;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold), 0 8px 32px rgba(212,175,55,0.4);
  background-position: 100% 0%;
}

.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--gold), #b8941e);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--glass-border);
  color: var(--white);
}
.btn-glass:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-white {
  background: rgba(248,250,252,0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1.5px solid rgba(248,250,252,0.25);
}
.btn-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: fabPulse 2.8s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
.whatsapp-fab svg { width: 30px; height: 30px; fill: white; }

@keyframes fabPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 48px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  padding: 0 36px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7,20,38,0.95);
  box-shadow: 0 1px 0 rgba(212,175,55,0.15), 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 68px;
}

/* Gold top-line on scroll */
.navbar.scrolled::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.navbar-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(212,175,55,0.3);
}
.navbar-brand .brand-tagline {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  margin-top: 3px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar-menu a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248,250,252,0.75);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.35s ease;
}
.navbar-menu a:hover,
.navbar-menu a.active { color: var(--gold-light); }
.navbar-menu a:hover::after,
.navbar-menu a.active::after { width: 100%; }

.navbar-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(7,20,38,0.98);
  backdrop-filter: blur(20px);
  z-index: 7999;
  padding: 28px 32px 36px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(212,175,55,0.12);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248,250,252,0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold-light); }

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-slides { width: 100%; height: 100%; position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,20,38,0.9) 0%,
    rgba(13,42,82,0.65) 45%,
    rgba(7,20,38,0.5) 100%
  );
}

/* Hero ambient glow orbs */
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-content .eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
  opacity: 0.9;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(7,20,38,0.5);
}
.hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 15px;
  color: rgba(248,250,252,0.72);
  margin-bottom: 40px;
  letter-spacing: 0.3px;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content .hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slide controls */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  background: rgba(7,20,38,0.5);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
.hero-prev:hover, .hero-next:hover {
  background: rgba(212,175,55,0.15);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.hero-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(248,250,252,0.3);
  border: 1px solid rgba(212,175,55,0.35);
  transition: var(--transition);
  cursor: pointer;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 44px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(248,250,252,0.45);
  font-size: 8.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: linear-gradient(90deg, var(--navy-mid), var(--royal), var(--navy-mid));
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  position: relative;
}
.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.marquee-band::before { left: 0; background: linear-gradient(to right, var(--navy-mid), transparent); }
.marquee-band::after  { right: 0; background: linear-gradient(to left, var(--navy-mid), transparent); }

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.7);
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(212,175,55,0.6);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURED PRODUCTS SECTION
   ============================================================ */
.featured-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.featured-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.04), transparent 70%);
  pointer-events: none;
}

.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

/* Product Card — Glassmorphism */
.product-card {
  background: rgba(13,42,82,0.45);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--glow-gold), var(--shadow-blue);
  border-color: rgba(212,175,55,0.4);
}

.product-card-img {
  position: relative;
  height: 248px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.92);
}
.product-card:hover .product-card-img img {
  transform: scale(1.09);
  filter: brightness(1);
}
.product-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(7,20,38,0.8), transparent);
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), #b8941e);
  color: var(--navy);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(212,175,55,0.4);
}

.product-card-body { padding: 26px 26px 0; }
.product-card-body .category {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
  opacity: 0.9;
}
.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card-body p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
  font-weight: 300;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  border-top: 1px solid rgba(212,175,55,0.1);
  margin-top: 20px;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.product-price span {
  font-size: 11px;
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-weight: 300;
}

/* ============================================================
   LUXURY BANNER
   ============================================================ */
.luxury-banner {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.luxury-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.7) saturate(0.8);
}
.luxury-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,20,38,0.95) 0%,
    rgba(13,42,82,0.8) 50%,
    rgba(7,20,38,0.6) 100%
  );
}
/* Decorative gold side line */
.luxury-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 3;
}
.luxury-banner-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 88px 0;
}
.luxury-banner-content .section-label { text-align: left; }
.luxury-banner-content .section-title { color: var(--white); }
.luxury-banner-content p {
  color: rgba(248,250,252,0.72);
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
}
.luxury-banner-content .divider { margin-left: 0; }

/* ============================================================
   COUNTERS SECTION
   ============================================================ */
.counters-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--royal) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.counters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(212,175,55,0.06) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(212,175,55,0.04) 0%, transparent 55%);
}
/* Top & bottom gold rule */
.counters-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 52px 24px;
  border-right: 1px solid rgba(212,175,55,0.12);
  position: relative;
}
.counter-item:last-child { border-right: none; }
.counter-item::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 70%);
}

.counter-icon {
  font-size: 28px;
  margin-bottom: 14px;
  filter: grayscale(0.2);
}
.counter-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.counter-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248,250,252,0.5);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 60%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.review-card {
  background: rgba(13,42,82,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border: 1px solid var(--glass-border);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.03) 0%, transparent 60%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold), var(--shadow-blue);
  border-color: rgba(212,175,55,0.35);
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 88px;
  color: rgba(212,175,55,0.1);
  position: absolute;
  top: 8px; left: 22px;
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  padding-top: 8px;
}
.star { color: var(--gold); font-size: 13px; }

.review-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(248,250,252,0.82);
  line-height: 1.8;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8941e);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(212,175,55,0.35);
}
.review-name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--white);
  line-height: 1.2;
}
.review-meta {
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.3px;
  margin-top: 3px;
}

/* ============================================================
   WHATSAPP CTA SECTION
   ============================================================ */
.whatsapp-cta-section {
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy-mid) 50%, var(--royal-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.12);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.whatsapp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.06), transparent 65%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(248,250,252,0.65);
  padding: 80px 0 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 5px;
  text-shadow: 0 0 20px rgba(212,175,55,0.2);
}
.footer-brand .brand-tagline {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.4);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(248,250,252,0.5);
  max-width: 290px;
  margin-bottom: 28px;
  font-weight: 300;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0.85;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13px;
  color: rgba(248,250,252,0.5);
  transition: color 0.3s, padding-left 0.3s;
  display: flex; align-items: center; gap: 9px;
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 15px;
  opacity: 0.7;
}

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 13px;
  color: rgba(248,250,252,0.55);
  font-weight: 300;
}
.footer-contact-icon {
  width: 34px; height: 34px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(248,250,252,0.5);
  transition: var(--transition);
  background: rgba(212,175,55,0.04);
}
.social-btn:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.12);
  color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.2);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(248,250,252,0.3);
  letter-spacing: 0.3px;
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(0.75);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,38,0.5) 0%, rgba(7,20,38,0.92) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .section-label { text-align: left; }
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.12;
}
.page-hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Story section */
.story-section-bg {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-img-wrap { position: relative; }
.story-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-blue);
  border: 1px solid var(--glass-border);
}
.story-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 48%;
  border-radius: var(--radius);
  border: 3px solid rgba(212,175,55,0.3);
  box-shadow: var(--glow-gold);
}
.story-text .section-label { text-align: left; }
.story-text .section-title { text-align: left; }
.story-text .divider { margin-left: 0; }
.story-text p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-sub);
  margin-bottom: 20px;
  font-weight: 300;
}

/* Values */
.values-section-bg {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--royal) 50%, var(--navy-mid) 100%);
  position: relative;
}
.values-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.05), transparent 65%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.value-card {
  background: rgba(13,42,82,0.45);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 44px 30px;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}
.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--glow-gold), var(--shadow-blue);
  border-color: rgba(212,175,55,0.35);
}
.value-icon {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  background: rgba(212,175,55,0.08);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  border: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 13px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  font-weight: 300;
}

/* Why Us */
.why-section-bg {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why-item { display: flex; gap: 22px; align-items: flex-start; }
.why-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(212,175,55,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 7px;
}
.why-item p { font-size: 13px; color: var(--text-sub); line-height: 1.75; font-weight: 300; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-page-bg {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 52px 0 44px;
}
.filter-btn {
  padding: 11px 30px;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid rgba(212,175,55,0.2);
  color: var(--text-sub);
  background: rgba(13,42,82,0.3);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-sans);
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), #b8941e);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.product-item.hidden { display: none; }

.products-section-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 68px 0 36px;
}
.products-section-title h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.products-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.25), transparent);
}
.products-section-title span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.8;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section-bg { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
  margin-top: 52px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212,175,55,0.08);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.8);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,20,38,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  border-radius: var(--radius);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(7,20,38,0.5); }

.gallery-zoom {
  width: 50px; height: 50px;
  background: rgba(212,175,55,0.88);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 20px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-weight: 700;
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7,20,38,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,55,0.15);
}
.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  width: 40px; height: 40px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(212,175,55,0.25); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(7,20,38,0.7);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox-prev { left: -68px; }
.lightbox-next { right: -68px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(212,175,55,0.2); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section-bg {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: start;
  margin-top: 52px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: rgba(13,42,82,0.4);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateX(5px);
  box-shadow: var(--glow-gold);
  border-color: rgba(212,175,55,0.35);
}
.contact-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-card-text h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.contact-card-text p, .contact-card-text a {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.65;
  transition: color 0.3s;
  font-weight: 300;
}
.contact-card-text a:hover { color: var(--gold-light); }

.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #25D366;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-family: var(--font-sans);
}
.contact-wa-btn:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(13,42,82,0.4);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-blue);
}
.form-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid rgba(212,175,55,0.15);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--white);
  background: rgba(7,20,38,0.6);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--royal); color: var(--white); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
  background: rgba(13,42,82,0.5);
}
.form-group textarea { min-height: 148px; }

.form-success { display: none; text-align: center; padding: 36px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 52px; margin-bottom: 14px; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 9px;
}

/* Map */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 290px;
  background: linear-gradient(135deg, var(--navy-mid), var(--royal));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
  border: 1px solid var(--glass-border);
}
.map-placeholder .map-icon { font-size: 44px; }
.map-placeholder p {
  color: var(--text-sub);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.map-placeholder a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.3);
}

/* ============================================================
   PRODUCT DETAILS
   ============================================================ */
.product-detail-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0 80px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-blue);
  aspect-ratio: 1;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-content .section-label { text-align: left; }
.product-detail-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.product-detail-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.product-detail-price span {
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-weight: 300;
}
.product-detail-desc {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 32px;
  font-weight: 300;
}
.product-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.product-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-sub);
}
.product-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid-3,
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .gallery-grid        { grid-template-columns: repeat(3, 1fr); }
  .story-grid,
  .why-grid            { grid-template-columns: 1fr; }
  .story-img-accent    { display: none; }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-grid        { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar-menu, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 68px 0; }
  .hero-content h1 { font-size: 2.6rem; }
  .hero-scroll { display: none; }
  .products-grid-3,
  .products-full-grid { grid-template-columns: 1fr; }
  .counters-grid       { grid-template-columns: repeat(2, 1fr); }
  .counter-item        { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.1); }
  .reviews-grid        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom       { flex-direction: column; gap: 8px; text-align: center; }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }


@media (max-width: 480px) {
  .hero-content p   { display: none; }
  .hero-btns        { flex-direction: column; align-items: center; }
  .gallery-grid     { grid-template-columns: 1fr; }
  .counters-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .story-grid       { grid-template-columns: 1fr; }
}
