/* ============================================================
   GRAND SHOPPING PALACE — PREMIUM AWARD-WINNING CSS
   Mobile-First | Fluid Typography | Ultra Animations
   ============================================================ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --navy: #040b17;
  --navy-mid: #071a35;
  --navy-light: #0d2748;
  --gold: #d4af37;
  --gold-light: #f4d97a;
  --gold-dark: #b8860b;
  --cream: #fff8e7;
  --white: #ffffff;
  --text-dark: #0a0a0f;
  --text-mid: #2d2d3a;
  --text-muted: #6b7280;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(20px);

  /* Gradients */
  --hero-grad: linear-gradient(
    135deg,
    #040b17 0%,
    #071a35 30%,
    #1b2f55 55%,
    #66513a 80%,
    #d7c19b 100%
  );
  --gold-grad: linear-gradient(135deg, #f4d97a, #d4af37, #b8860b);
  --gold-grad-h: linear-gradient(135deg, #ffe89a, #e3bf4a, #c89b3c);
  --section-light: linear-gradient(
    180deg,
    #ffffff 0%,
    #faf7f2 50%,
    #f5eee4 100%
  );
  --card-grad: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(253, 248, 235, 0.9)
  );

  /* Spacing (fluid) */
  --space-xs: clamp(4px, 1vw, 8px);
  --space-sm: clamp(8px, 2vw, 16px);
  --space-md: clamp(16px, 3vw, 24px);
  --space-lg: clamp(24px, 4vw, 48px);
  --space-xl: clamp(40px, 6vw, 80px);
  --space-2xl: clamp(60px, 8vw, 120px);

  /* Typography */
  --font-xs: clamp(10px, 2.5vw, 13px);
  --font-sm: clamp(12px, 3vw, 15px);
  --font-md: clamp(14px, 3.5vw, 17px);
  --font-lg: clamp(16px, 4vw, 20px);
  --font-xl: clamp(20px, 5vw, 28px);
  --font-2xl: clamp(28px, 6vw, 42px);
  --font-3xl: clamp(36px, 8vw, 64px);
  --font-hero: clamp(32px, 9vw, 80px);

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.35);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.4);

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-index layers */
  --z-loader: 9999;
  --z-cursor: 9998;
  --z-nav: 1000;
  --z-floating: 500;
  --z-modal: 800;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: "Inter", "Outfit", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* custom cursor */
}

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

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

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

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: var(--z-loader);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transition:
    opacity 0.6s var(--ease-smooth),
    visibility 0.6s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: clamp(60px, 15vw, 100px);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.9));
  }
}

.loader-title {
  font-size: var(--font-xl);
  font-weight: 800;
  letter-spacing: 3px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar-wrap {
  width: clamp(200px, 50vw, 300px);
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--gold-grad);
  border-radius: var(--r-full);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold);
}

/* ============================================================
   CUSTOM CURSOR (Desktop only)
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s var(--ease-smooth),
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}

.cursor-dot.hover {
  width: 16px;
  height: 16px;
}
.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold-grad);
  z-index: calc(var(--z-nav) + 1);
  box-shadow: 0 0 10px var(--gold);
  transition: width 0.1s linear;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 2vw, 14px) clamp(16px, 4vw, 32px);
  background: rgba(4, 11, 23, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s var(--ease-smooth);
  transform: translateY(0);
}

#navbar.scrolled {
  background: rgba(4, 11, 23, 0.92);
  border-bottom-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-md);
}

#navbar.hidden-nav {
  transform: translateY(-100%);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 0;
}

.nav-logo {
  width: clamp(38px, 8vw, 52px);
  height: clamp(38px, 8vw, 52px);
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  flex-shrink: 0;
}

.nav-title {
  font-size: clamp(11px, 2.5vw, 18px);
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav Links */
.nav-links {
  display: none;
  list-style: none;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-sm);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
  letter-spacing: 0.3px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-grad);
  border-radius: var(--r-full);
  transition: width 0.35s var(--ease-spring);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Enquiry Nav Button */
.nav-enquiry {
  background: var(--gold-grad);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: var(--r-full) !important;
  min-height: 44px !important;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s !important;
  -webkit-text-fill-color: var(--navy) !important;
}

.nav-enquiry:hover {
  transform: scale(1.05) !important;
  box-shadow: var(--shadow-gold) !important;
}

.nav-enquiry::after {
  display: none !important;
}

/* Hamburger */
#hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s;
  flex-shrink: 0;
}

#hamburger:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

#hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: all 0.4s var(--ease-spring);
  transform-origin: center;
}

#hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: rgba(4, 11, 23, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: calc(var(--z-nav) - 1);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-spring);
  display: flex;
  flex-direction: column;
  padding: clamp(80px, 15vw, 100px) var(--space-xl) var(--space-xl);
  border-left: 1px solid rgba(212, 175, 55, 0.15);
  overflow-y: auto;
}

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

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu-links li {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

#mobile-menu.open .mobile-menu-links li {
  opacity: 1;
  transform: translateX(0);
}

#mobile-menu.open .mobile-menu-links li:nth-child(1) {
  transition-delay: 0.1s;
}
#mobile-menu.open .mobile-menu-links li:nth-child(2) {
  transition-delay: 0.15s;
}
#mobile-menu.open .mobile-menu-links li:nth-child(3) {
  transition-delay: 0.2s;
}
#mobile-menu.open .mobile-menu-links li:nth-child(4) {
  transition-delay: 0.25s;
}
#mobile-menu.open .mobile-menu-links li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: var(--space-sm);
  transition:
    color 0.3s,
    padding-left 0.3s;
}

.mobile-menu-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-menu-enquiry {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  color: var(--navy) !important;
  font-weight: 800 !important;
  font-size: var(--font-lg) !important;
  border-radius: var(--r-full) !important;
  min-height: 56px !important;
  padding: 14px 32px !important;
  box-shadow: var(--shadow-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
}

/* Menu Overlay */
#menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-nav) - 2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

#menu-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Desktop nav */
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  #hamburger {
    display: none;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(80px, 12vw, 100px);
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-grad);
  z-index: 0;
}

/* Animated blobs / aurora */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.blob-1 {
  width: clamp(200px, 50vw, 450px);
  height: clamp(200px, 50vw, 450px);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: clamp(150px, 40vw, 350px);
  height: clamp(150px, 40vw, 350px);
  background: radial-gradient(circle, rgba(27, 47, 85, 0.8), transparent 70%);
  top: 20%;
  right: -5%;
  animation-delay: -3s;
  animation-duration: 10s;
}

.blob-3 {
  width: clamp(100px, 30vw, 280px);
  height: clamp(100px, 30vw, 280px);
  background: radial-gradient(circle, rgba(102, 81, 58, 0.7), transparent 70%);
  bottom: 10%;
  left: 30%;
  animation-delay: -6s;
  animation-duration: 12s;
}

.blob-4 {
  width: clamp(80px, 20vw, 200px);
  height: clamp(80px, 20vw, 200px);
  background: radial-gradient(
    circle,
    rgba(215, 193, 155, 0.5),
    transparent 70%
  );
  bottom: 30%;
  right: 20%;
  animation-delay: -2s;
  animation-duration: 9s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

/* Particles canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: clamp(20px, 5vw, 60px) clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 28px);
  max-width: clamp(300px, 55%, 620px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.5s forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-size: var(--font-hero);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s var(--ease-smooth) 0.7s forwards;
}

.hero-title .highlight {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.9s forwards;
}

/* Typing cursor */
.typing-text {
  border-right: 2px solid var(--gold);
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    border-color: var(--gold);
  }
  50% {
    border-color: transparent;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 1.1s forwards;
}

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

/* CTA Buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-grad);
  color: var(--navy);
  font-size: var(--font-md);
  font-weight: 700;
  padding: clamp(14px, 3vw, 16px) clamp(24px, 5vw, 36px);
  border-radius: var(--r-full);
  min-height: 52px;
  box-shadow: var(--shadow-gold);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  animation: ctaPulse 3s ease-in-out infinite 1.5s;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: var(--shadow-gold);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(212, 175, 55, 0),
      var(--shadow-gold);
  }
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 16px 50px rgba(212, 175, 55, 0.5);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: var(--font-md);
  font-weight: 600;
  padding: clamp(13px, 3vw, 15px) clamp(24px, 5vw, 36px);
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  min-height: 52px;
  transition: all 0.3s var(--ease-smooth);
  backdrop-filter: blur(10px);
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-outline:hover::before {
  transform: scaleX(1);
}

/* Hero Image — Full Right Side Fill */
.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: heroImgReveal 1.2s var(--ease-smooth) 1s forwards;
}

@keyframes heroImgReveal {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.85) 30%,
    black 50%,
    black 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.85) 30%,
    black 50%,
    black 100%
  );
  animation: heroFloat 6s ease-in-out infinite 2s;
  filter: drop-shadow(0 30px 80px rgba(212, 175, 55, 0.25))
    drop-shadow(0 0 40px rgba(212, 175, 55, 0.1));
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-14px) rotate(0.4deg);
  }
  66% {
    transform: translateY(9px) rotate(-0.3deg);
  }
}

/* On small phones — hide the image so content isn't crushed */
@media (max-width: 480px) {
  .hero-image-wrap {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
}

/* Tablet: partially visible, content gets more space */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-image-wrap {
    width: 45%;
  }
  .hero-content {
    max-width: 55%;
  }
}

/* Desktop: full hero image */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-image-wrap {
    width: 48%;
  }
  .hero-content {
    max-width: 52%;
  }
}

@media (min-width: 1025px) {
  .hero-image-wrap {
    width: 50%;
  }
  .hero-content {
    max-width: 50%;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 1.3s forwards;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  font-size: var(--font-2xl);
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Hero Floating Icons */
.floating-icons-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  font-size: clamp(20px, 4vw, 32px);
  opacity: 0.12;
  animation: floatRandom 12s ease-in-out infinite;
  filter: blur(0.5px);
}

.float-icon:nth-child(1) {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 11s;
}
.float-icon:nth-child(2) {
  top: 60%;
  left: 8%;
  animation-delay: -3s;
  animation-duration: 13s;
}
.float-icon:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: -6s;
  animation-duration: 10s;
}
.float-icon:nth-child(4) {
  top: 10%;
  right: 25%;
  animation-delay: -2s;
  animation-duration: 14s;
}
.float-icon:nth-child(5) {
  top: 50%;
  right: 8%;
  animation-delay: -5s;
  animation-duration: 9s;
}
.float-icon:nth-child(6) {
  top: 75%;
  right: 15%;
  animation-delay: -8s;
  animation-duration: 12s;
}

@keyframes floatRandom {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(15px, -20px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-3deg) scale(0.95);
  }
  75% {
    transform: translate(20px, 5px) rotate(8deg) scale(1.08);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.8s forwards;
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: var(--r-full);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.3;
  }
}

.scroll-text {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
section {
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(32px, 6vw, 64px);
  padding: 0 var(--space-md);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--font-2xl);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-title.dark {
  color: var(--text-dark);
}
.section-title.light {
  color: var(--white);
}

.section-title .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  margin-top: var(--space-sm);
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-desc.dark-text {
  color: var(--text-muted);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-grad);
  border-radius: var(--r-full);
  margin: var(--space-sm) auto;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* ============================================================
   FEATURES STRIP (Trust Signals)
   ============================================================ */
#features-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: clamp(24px, 5vw, 40px) clamp(20px, 5vw, 60px);
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .features-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .features-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
}

.feature-strip-icon {
  width: clamp(44px, 9vw, 56px);
  height: clamp(44px, 9vw, 56px);
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
  transition:
    transform 0.4s var(--ease-spring),
    filter 0.4s;
}

.feature-strip-item:hover .feature-strip-icon {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.6));
}

.feature-strip-text h4 {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.feature-strip-text p {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats-section {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 60px);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

#stats-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 60vw, 700px);
  height: clamp(300px, 60vw, 700px);
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: clamp(20px, 4vw, 32px) clamp(10px, 2vw, 20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

.stat-num {
  font-size: var(--font-3xl);
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-xs);
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
#categories {
  padding: var(--space-2xl) clamp(16px, 4vw, 48px);
  background: var(--section-light);
  position: relative;
}

#categories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-grad);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2.5vw, 20px);
  max-width: 1400px;
  margin: 0 auto;
}

/* Ensure equal card heights in categories */
.categories-grid > .category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 600px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-card {
  background: white;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-lg);
  padding: clamp(16px, 3vw, 24px) clamp(12px, 2vw, 20px)
    clamp(12px, 2.5vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s,
    border-color 0.3s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05),
    rgba(212, 175, 55, 0)
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: var(--gold-grad);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    var(--shadow-gold);
  border-color: var(--gold);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card img {
  width: clamp(70px, 15vw, 100px);
  height: clamp(70px, 15vw, 100px);
  object-fit: contain;
  transition: transform 0.5s var(--ease-spring);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.category-card:hover img {
  transform: scale(1.15) translateY(-4px);
}

.category-name {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.category-btn {
  font-size: var(--font-xs);
  font-weight: 700;
  color: var(--navy);
  background: var(--gold-grad);
  border-radius: var(--r-full);
  padding: 8px 16px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.category-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* Ripple effect */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   PRODUCT SECTION BANNER
   ============================================================ */
.product-banner {
  position: relative;
  min-height: clamp(280px, 40vw, 420px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-grad);
  z-index: 0;
}

.product-banner-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

.pb-blob1 {
  width: clamp(150px, 30vw, 300px);
  height: clamp(150px, 30vw, 300px);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent);
  top: -20%;
  left: -10%;
  animation: blobFloat 10s ease-in-out infinite;
}

.pb-blob2 {
  width: clamp(100px, 20vw, 200px);
  height: clamp(100px, 20vw, 200px);
  background: radial-gradient(circle, rgba(215, 193, 155, 0.5), transparent);
  bottom: -10%;
  right: 10%;
  animation: blobFloat 8s ease-in-out infinite -4s;
}

.product-banner-content {
  position: relative;
  z-index: 10;
  padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 60px);
  max-width: 50%;
}

.product-banner-title {
  font-size: var(--font-3xl);
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  line-height: 1;
  letter-spacing: -1px;
}

.product-banner-subtitle {
  font-size: var(--font-xl);
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-xs);
  font-weight: 400;
  line-height: 1.4;
}

.product-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 5;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 15%,
    rgba(0, 0, 0, 0.85) 35%,
    black 55%,
    black 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 15%,
    rgba(0, 0, 0, 0.85) 35%,
    black 55%,
    black 100%
  );
}

/* Product banner responsive */
@media (max-width: 480px) {
  .product-banner {
    min-height: 200px;
  }
  .product-banner-content {
    max-width: 60%;
  }
  .product-banner-img {
    width: 50%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .product-banner {
    min-height: 260px;
  }
  .product-banner-content {
    max-width: 50%;
  }
  .product-banner-img {
    width: 55%;
  }
}

/* ============================================================
   PRODUCT CARDS SECTION
   ============================================================ */
.products-section {
  padding: var(--space-2xl) clamp(16px, 4vw, 48px);
  background: var(--section-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2.5vw, 22px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

/* Ensure equal-height cards in grid rows */
.products-grid > .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.products-grid > .product-card .product-img-wrap {
  flex-shrink: 0;
}

.products-grid > .product-card .product-name {
  flex-grow: 1;
}

/* 320px–480px: 2 columns */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
/* 481px–640px: 2 columns, slightly bigger gap */
@media (min-width: 481px) and (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
/* 641px–900px: 3 columns */
@media (min-width: 641px) and (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
/* 901px–1199px: 4 columns */
@media (min-width: 901px) and (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
/* 1200px+: 4 columns for even grid */
@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.product-card {
  background: white;
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--r-lg);
  padding: clamp(10px, 2.5vw, 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.5vw, 10px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s,
    border-color 0.3s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  height: 100%; /* equal height in grid */
}

/* Animated gradient border */
.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: var(--gold-grad);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.18),
    0 0 40px rgba(212, 175, 55, 0.15);
  border-color: transparent;
}

.product-card:hover::before {
  opacity: 1;
}

/* Favorite Heart */
.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s var(--ease-spring),
    background 0.3s;
  z-index: 2;
}

.product-fav:hover {
  transform: scale(1.2);
  background: white;
}
.product-fav.active {
  animation: heartBeat 0.4s var(--ease-spring);
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

.product-img-wrap {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, #f9f5ee, #f3ede0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-spring);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.12) translateY(-4px);
}

.product-category {
  font-size: var(--font-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.product-name {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Enquiry Button */
.product-enquiry-btn {
  width: 100%;
  padding: clamp(10px, 2vw, 14px);
  background: var(--gold-grad);
  color: var(--navy);
  font-size: var(--font-sm);
  font-weight: 700;
  border-radius: var(--r-full);
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.product-enquiry-btn .fab.fa-whatsapp,
.nav-enquiry .fab.fa-whatsapp,
.contact-enquiry-btn .fab.fa-whatsapp,
.float-btn .fab.fa-whatsapp {
  font-size: 1.1em;
  line-height: 1;
  vertical-align: middle;
}

.product-enquiry-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.product-enquiry-btn:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.product-enquiry-btn:hover::before {
  left: 100%;
}
.product-enquiry-btn:active {
  transform: scale(0.97);
}

/* ============================================================
   SECTION FEATURES BADGES
   ============================================================ */
.section-features {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 16px);
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-feat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-lg);
  padding: clamp(12px, 2vw, 16px) clamp(14px, 3vw, 24px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  min-height: 60px;
}

.section-feat-badge:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.12),
    var(--shadow-gold);
}

.section-feat-badge img {
  width: clamp(32px, 6vw, 44px);
  height: clamp(32px, 6vw, 44px);
  object-fit: contain;
}

.sfb-text h4 {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--text-dark);
}

.sfb-text p {
  font-size: var(--font-xs);
  color: var(--text-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--space-2xl) clamp(16px, 4vw, 48px);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: clamp(120px, 20vw, 200px);
  color: rgba(212, 175, 55, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 32px);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s,
    border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
}

.testimonial-stars span {
  color: var(--gold);
  font-size: clamp(14px, 3vw, 18px);
}

.testimonial-text {
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: clamp(40px, 8vw, 48px);
  height: clamp(40px, 8vw, 48px);
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-md);
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.author-name {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--white);
}

.author-role {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact-section {
  padding: var(--space-2xl) clamp(16px, 4vw, 48px);
  background: var(--section-light);
  position: relative;
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 48px);
}

@media (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info h2 {
  font-size: var(--font-2xl);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.contact-info h2 span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info p {
  font-size: var(--font-md);
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--r-md);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(212, 175, 55, 0.05)
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-enquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: clamp(16px, 4vw, 20px) clamp(24px, 6vw, 40px);
  background: var(--gold-grad);
  color: var(--navy);
  font-size: var(--font-lg);
  font-weight: 800;
  border-radius: var(--r-full);
  min-height: 60px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.5px;
  animation: pulse 2.5s infinite;
}

.contact-enquiry-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.contact-enquiry-btn:hover {
  transform: scale(1.03) translateY(-2px);
}
.contact-enquiry-btn:hover::before {
  left: 100%;
}

.contact-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: clamp(14px, 3vw, 18px);
  background: transparent;
  color: var(--text-dark);
  font-size: var(--font-md);
  font-weight: 600;
  border-radius: var(--r-full);
  min-height: 56px;
  border: 2px solid rgba(4, 11, 23, 0.15);
  transition: all 0.3s var(--ease-smooth);
}

.contact-map-btn:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(212, 175, 55, 0.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: linear-gradient(180deg, #020810, #040b17);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 60px) 0;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 50vw, 500px);
  height: clamp(200px, 50vw, 500px);
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.04),
    transparent 70%
  );
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 500px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand .footer-logo {
  width: clamp(50px, 10vw, 70px);
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-brand h2 {
  font-size: var(--font-lg);
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
}

.footer-brand p {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s var(--ease-spring);
  color: rgba(255, 255, 255, 0.6);
  min-height: 40px;
  min-width: 40px;
}

.footer-social-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  transform: scale(1.1) translateY(-2px);
  color: var(--gold);
}

/* Brand-colored hover states */
.footer-social-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25d366;
  color: #25d366;
}

.footer-social-instagram:hover {
  background: rgba(193, 53, 132, 0.15);
  border-color: #c13584;
  color: #c13584;
}

.footer-social-google:hover {
  background: rgba(234, 67, 53, 0.15);
  border-color: #ea4335;
  color: #ea4335;
}

.footer-col h3 {
  font-size: var(--font-md);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: var(--r-full);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links li a,
.footer-links li {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.5);
  transition:
    color 0.3s,
    padding-left 0.3s;
  display: flex;
  align-items: center;
  min-height: 32px;
  gap: 6px;
  line-height: 1.5;
}

.footer-links li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  min-height: 36px;
}

.footer-contact-item span:first-child {
  font-size: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: clamp(32px, 6vw, 48px);
  padding: clamp(20px, 4vw, 28px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom p {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom .designer {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: clamp(20px, 4vw, 30px);
  right: clamp(14px, 4vw, 24px);
  z-index: var(--z-floating);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.float-btn:active {
  transform: scale(0.95);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.float-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35);
}

.float-google {
  background: linear-gradient(135deg, #4285f4, #1967d2);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.35);
}

.float-phone {
  background: var(--gold-grad);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.float-top {
  background: rgba(4, 11, 23, 0.9);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s,
    transform 0.3s;
  backdrop-filter: blur(10px);
}

.float-top.show {
  opacity: 1;
  pointer-events: all;
}

.float-btn-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}

.float-btn:hover .float-btn-label {
  opacity: 1;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-smooth);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-smooth);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-spring);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity 0.8s var(--ease-smooth),
    filter 0.8s;
}

.reveal-blur.revealed {
  opacity: 1;
  filter: blur(0);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.05s !important;
}
.stagger-2 {
  transition-delay: 0.1s !important;
}
.stagger-3 {
  transition-delay: 0.15s !important;
}
.stagger-4 {
  transition-delay: 0.2s !important;
}
.stagger-5 {
  transition-delay: 0.25s !important;
}
.stagger-6 {
  transition-delay: 0.3s !important;
}
.stagger-7 {
  transition-delay: 0.35s !important;
}
.stagger-8 {
  transition-delay: 0.4s !important;
}
.stagger-9 {
  transition-delay: 0.45s !important;
}
.stagger-10 {
  transition-delay: 0.5s !important;
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%
  );
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
  border-radius: var(--r-sm);
}

@keyframes skeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================================
   LAZY IMAGE FADE
   ============================================================ */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

img.img-loaded {
  opacity: 1;
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-section {
  background: var(--gold-grad);
  padding: clamp(10px, 2vw, 14px) 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: clamp(20px, 4vw, 48px);
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */
@media (max-width: 400px) {
  .hero-image-wrap {
    display: none;
  }
  .hero-content {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .floating-btns {
    bottom: 16px;
    right: 12px;
    gap: 8px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  .float-btn-label {
    display: none !important;
  }
}

/* ============================================================
   TOUCH FEEDBACK
   ============================================================ */
@media (hover: none) {
  .category-card:active {
    transform: scale(0.97);
  }
  .product-card:active {
    transform: scale(0.97);
  }
  .btn-primary:active {
    transform: scale(0.97);
  }
  .float-btn:active {
    transform: scale(0.92);
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
