/* ============================================
   KLASS VELVETS - Animated Premium Theme
   Exquisite Luxury Velvet Fabrics Since 1970
   ============================================ */

/* Premium Font Combinations
  Loaded in includes/header.php for performance (preconnect + stylesheet link).
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Refined Color Palette */
  --color-pearl: #fdfcfa;
  --color-cream: #faf7f2;
  --color-champagne: #f5f0e6;
  --color-ivory: #fffef9;
  --color-linen: #f0ebe3;

  /* Luxurious Accents */
  --color-gold: #c9a961;
  --color-gold-light: #dcc387;
  --color-gold-dark: #a88a3d;
  --color-gold-muted: rgba(201, 169, 97, 0.15);
  --color-rose-gold: #b76e79;

  /* Rich Darks */
  --color-espresso: #2c2319;
  --color-charcoal: #3d3730;
  --color-walnut: #4a3f35;
  --color-slate: #5a5349;

  /* Neutral Tones */
  --color-white: #ffffff;
  --color-smoke: #f8f6f3;
  --color-ash: #e5e2dc;
  --color-stone: #a8a299;
  --color-graphite: #6b6560;

  /* Text Colors */
  --color-text-dark: #2c2319;
  --color-text-base: #4a3f35;
  --color-text-muted: #7a7168;
  --color-text-light: #9c958c;
  --color-text-white: #ffffff;

  /* Premium Typography - New Combo */
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-heading: 'Marcellus', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --font-accent: 'Josefin Sans', sans-serif;

  /* Refined Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Shadows */
  --shadow-subtle: 0 1px 2px rgba(44, 35, 25, 0.04);
  --shadow-soft: 0 4px 16px rgba(44, 35, 25, 0.06);
  --shadow-medium: 0 8px 32px rgba(44, 35, 25, 0.08);
  --shadow-deep: 0 16px 48px rgba(44, 35, 25, 0.12);
  --shadow-elegant: 0 20px 60px rgba(44, 35, 25, 0.15);
  --shadow-gold: 0 8px 32px rgba(201, 169, 97, 0.25);
  --shadow-glow: 0 0 40px rgba(201, 169, 97, 0.3);

  /* Transitions */
  --ease-elegant: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 250ms var(--ease-elegant);
  --transition-base: 400ms var(--ease-elegant);
  --transition-slow: 600ms var(--ease-smooth);
  --transition-slower: 800ms var(--ease-smooth);

  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
}

/* ============================================
   FUN ANIMATION KEYFRAMES
   ============================================ */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px var(--color-gold), 0 0 10px rgba(201, 169, 97, 0.3);
  }

  50% {
    box-shadow: 0 0 20px var(--color-gold), 0 0 40px rgba(201, 169, 97, 0.5);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes tiltShine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
  }

  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Shimmer text effect class */
.shimmer-text {
  background: linear-gradient(90deg,
      var(--color-text-dark) 0%,
      var(--color-gold) 25%,
      var(--color-gold-light) 50%,
      var(--color-gold) 75%,
      var(--color-text-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Glow button effect */
.glow-effect {
  animation: glow 2s ease-in-out infinite;
}

/* Float effect */
.float-effect {
  animation: float 3s ease-in-out infinite;
}

/* Pulse effect */
.pulse-effect {
  animation: pulse 2s ease-in-out infinite;
}

/* Card tilt shine on hover */
.tilt-shine {
  position: relative;
  overflow: hidden;
}

.tilt-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%);
  transform: translateX(-100%) rotate(45deg);
  transition: none;
}

.tilt-shine:hover::after {
  animation: tiltShine 0.6s ease-out;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-base);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.03em;
}

/* Animated Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.02;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0z' fill='none' stroke='%23c9a961' stroke-width='0.5'/%3E%3C/svg%3E");
  animation: patternShift 60s linear infinite;
}

@keyframes patternShift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 80px 80px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--color-gold);
  color: var(--color-text-white);
}

/* ============================================
   TYPOGRAPHY WITH ANIMATIONS
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-5);
  color: var(--color-text-base);
}

.text-gold {
  color: var(--color-gold-dark);
}

.text-shimmer {
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal span {
  display: inline-block;
  animation: textReveal 0.8s ease forwards;
  transform: translateY(100%);
}

@keyframes textReveal {
  to {
    transform: translateY(0);
  }
}

/* ============================================
   ANIMATED DECORATIVE ELEMENTS
   ============================================ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.ornament::before,
.ornament::after {
  content: '';
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--color-gold));
  animation: lineExpand 1s ease forwards;
}

.ornament::after {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

@keyframes lineExpand {
  to {
    width: 100px;
  }
}

.ornament-icon {
  color: var(--color-gold);
  font-size: var(--text-sm);
  animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
  to {
    transform: rotate(360deg);
  }
}

.divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--space-6) auto;
  position: relative;
  animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scaleX(1);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

.divider::before {
  content: '◆';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-gold);
  font-size: 10px;
  background: var(--color-cream);
  padding: 0 var(--space-2);
}

/* Floating Animation Utility */
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.section {
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

/* Scroll-triggered animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s var(--ease-smooth);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s var(--ease-smooth);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-bounce);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animation delays */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header .subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  max-width: 600px;
  margin: var(--space-6) auto 0;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.9;
}

/* ============================================
   NAVIGATION WITH EFFECTS
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-6) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(253, 252, 250, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: var(--space-4) 0;
  box-shadow: var(--shadow-soft);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--color-text-white);
  text-transform: uppercase;
  position: relative;
}

.navbar.scrolled .logo {
  color: var(--color-text-dark);
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.logo:hover::after {
  transform: scaleX(1);
}

.logo span {
  font-weight: 400;
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  gap: var(--space-10);
  align-items: center;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: var(--space-2) 0;
  overflow: hidden;
}

.navbar.scrolled .nav-links a {
  color: var(--color-text-base);
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: translateX(-101%);
  transition: transform var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: translateX(101%);
  transition: transform var(--transition-base);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  transform: translateX(0);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(0);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  min-width: 240px;
  background: var(--color-white);
  padding: var(--space-5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--color-ash);
}

.nav-dropdown-content::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border-left: 1px solid var(--color-ash);
  border-top: 1px solid var(--color-ash);
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.nav-dropdown-content a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 11px;
  color: var(--color-text-base) !important;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--color-ash);
  position: relative;
  overflow: hidden;
}

.nav-dropdown-content a::before,
.nav-dropdown-content a::after {
  display: none;
}

.nav-dropdown-content a:last-child {
  border-bottom: none;
}

.nav-dropdown-content a:hover {
  cursor: pointer;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.scrolled .menu-toggle span {
  background: var(--color-text-dark);
}

.menu-toggle:hover span:nth-child(1) {
  transform: translateY(-2px);
}

.menu-toggle:hover span:nth-child(3) {
  transform: translateY(2px);
}

/* Nav overlay (mobile only, default hidden) */
.nav-overlay {
  display: none;
}

/* ============================================
   HERO SECTION WITH PARALLAX
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-walnut);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(44, 35, 25, 0.5) 0%,
      rgba(44, 35, 25, 0.2) 50%,
      rgba(44, 35, 25, 0.6) 100%);
}

/* Animated Corner Frames */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  z-index: 5;
  pointer-events: none;
}

.hero::before {
  top: 50px;
  left: 50px;
  border-right: none;
  border-bottom: none;
  animation: cornerPulse 4s ease-in-out infinite;
}

.hero::after {
  bottom: 50px;
  right: 50px;
  border-left: none;
  border-top: none;
  animation: cornerPulse 4s ease-in-out infinite 2s;
}

@keyframes cornerPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: var(--space-20) var(--space-8) 0;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-3) var(--space-8);
  border: 1px solid rgba(201, 169, 97, 0.5);
  margin-bottom: var(--space-8);
  animation: fadeInDown 1s ease forwards, borderGlow 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
  animation: badgeSweep 3s ease-in-out infinite;
}

@keyframes badgeSweep {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes borderGlow {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(201, 169, 97, 0);
  }

  50% {
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
  }
}

.hero-badge span {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  margin-bottom: var(--space-5);
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--color-text-white);
  margin-bottom: var(--space-6);
  letter-spacing: 0.1em;
  line-height: 1.15;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-title span,
.hero-title em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-gold-light);
  font-weight: 400;
}

.hero-description {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto var(--space-10);
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: var(--space-5);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-12);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  z-index: 10;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 1px;
  height: 20px;
  background: var(--color-gold-light);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -20px;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    top: 60px;
    opacity: 0;
  }
}

/* ============================================
   BUTTONS WITH EFFECTS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-10);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.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 var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-text-white);
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-text-white);
}

.btn-outline:hover {
  background: var(--color-text-white);
  color: var(--color-text-dark);
  border-color: var(--color-text-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--color-text-dark);
  color: var(--color-text-dark);
}

.btn-outline-dark:hover {
  background: var(--color-text-dark);
  color: var(--color-text-white);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-text-white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Magnetic button effect */
.btn-magnetic {
  transition: transform 0.3s var(--ease-bounce);
}

/* ============================================
   USP SECTION WITH ANIMATIONS
   ============================================ */
.usp-section {
  background: var(--color-white);
  position: relative;
}

.usp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.usp-item {
  text-align: center;
  padding: var(--space-12) var(--space-8);
  position: relative;
  transition: all var(--transition-base);
}

/* Separator removed */

.usp-item:hover {
  background: var(--color-cream);
}

.usp-item:hover .usp-icon {
  transform: rotateY(360deg);
  background: var(--color-gold);
  color: var(--color-text-white);
}

.usp-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 0;
  color: var(--color-gold);
  font-size: var(--text-2xl);
  transition: all 0.8s var(--ease-bounce);
  position: relative;
}

.usp-icon::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--color-gold-muted);
  border-radius: 0;
  animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

.usp-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
  position: relative;
  display: inline-block;
}

.usp-number::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

.usp-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-3);
  color: var(--color-text-dark);
  letter-spacing: 0.1em;
}

.usp-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================
   PRODUCTS GRID WITH HOVER EFFECTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-walnut);
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-base);
}

/* Animated border on hover */
.product-card::before,
.product-card::after {
  content: '';
  position: absolute;
  z-index: 15;
  pointer-events: none;
  transition: all var(--transition-slow);
}

.product-card::before {
  top: 15px;
  left: 15px;
  width: 0;
  height: 0;
  border-top: 1px solid var(--color-gold);
  border-left: 1px solid var(--color-gold);
}

.product-card::after {
  bottom: 15px;
  right: 15px;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--color-gold);
  border-right: 1px solid var(--color-gold);
}

.product-card:hover::before,
.product-card:hover::after {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
}

.product-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-8px);
}

.product-card-image {
  position: absolute;
  inset: 0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s var(--ease-smooth);
  filter: brightness(0.9) saturate(0.95);
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(44, 35, 25, 0.9) 0%,
      rgba(44, 35, 25, 0.3) 40%,
      transparent 100%);
  transition: all var(--transition-base);
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(to top,
      rgba(44, 35, 25, 0.95) 0%,
      rgba(44, 35, 25, 0.5) 50%,
      rgba(44, 35, 25, 0.2) 100%);
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-10);
  text-align: center;
  z-index: 10;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-white);
  margin-bottom: var(--space-2);
  letter-spacing: 0.15em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-card-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  line-height: 1.4;
}

.product-card:hover .product-card-title {
  transform: translateY(0);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gold-light);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all var(--transition-base) 0.1s;
}

.product-card:hover .product-card-link {
  color: var(--color-gold);
}

.product-card-link i {
  transition: transform var(--transition-fast);
}

.product-card:hover .product-card-link:hover i {
  transform: translateX(5px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--color-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  box-shadow: var(--shadow-elegant);
  transition: all var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -25px;
  left: -25px;
  right: 50px;
  bottom: 50px;
  border: 1px solid var(--color-gold);
  z-index: -1;
  transition: all var(--transition-base);
}

.about-image:hover::before {
  top: -30px;
  left: -30px;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--color-gold);
  z-index: -1;
  transition: all var(--transition-base);
}

.about-image:hover::after {
  bottom: -30px;
  right: -30px;
}

.about-content .subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-3);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.about-content h2 {
  margin-bottom: var(--space-8);
}

.about-content p {
  margin-bottom: var(--space-5);
  line-height: 2;
  color: var(--color-text-muted);
}

.about-content .highlight {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text-dark);
  border-left: 2px solid var(--color-gold);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
  position: relative;
}

.about-content .highlight::before {
  content: '"';
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-gold-muted);
  position: absolute;
  left: var(--space-6);
  top: -10px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-12);
  box-shadow: var(--shadow-medium);
  position: relative;
  transition: all var(--transition-base);
}

.contact-form:hover {
  box-shadow: var(--shadow-elegant);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--color-ash);
  pointer-events: none;
  transition: all var(--transition-base);
}

.contact-form:hover::before {
  border-color: var(--color-gold-muted);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--color-cream);
  border: 1px solid transparent;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
  font-size: var(--text-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
  font-weight: 300;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info-item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  transition: all var(--transition-base);
}

.contact-info-item:hover {
  transform: translateX(5px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 0;
  color: var(--color-gold);
  font-size: var(--text-lg);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--color-gold);
  color: var(--color-text-white);
  transform: rotate(360deg);
}

.contact-info-content h4 {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
  font-weight: 400;
}

.contact-info-content p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-8px);
}

.card:hover::before {
  width: 100%;
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-content {
  padding: var(--space-8);
}

.card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-espresso);
  color: var(--color-text-white);
  padding: var(--space-24) 0 var(--space-12);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand .logo {
  margin-bottom: var(--space-6);
  display: inline-block;
}

.footer-brand p {
  margin-bottom: var(--space-8);
  max-width: 280px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.9;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-5px) rotate(360deg);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  margin-bottom: var(--space-8);
  color: var(--color-text-white);
  letter-spacing: 0.15em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  font-weight: 300;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: var(--space-3);
}

.footer-bottom {
  padding-top: var(--space-12);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  position: relative;
  padding: calc(var(--space-32) + 60px) 0 var(--space-20);
  background: var(--color-walnut);
  text-align: center;
  overflow: hidden;
}

.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  animation: cornerPulse 4s ease-in-out infinite;
}

.page-header::before {
  top: 40px;
  left: 40px;
  border-right: none;
  border-bottom: none;
}

.page-header::after {
  bottom: 40px;
  right: 40px;
  border-left: none;
  border-top: none;
  animation-delay: 2s;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--color-text-white);
  font-weight: 400;
  margin-bottom: var(--space-5);
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s ease forwards;
}

.page-header h1 span {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-gold-light);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-accent);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb span:last-child {
  color: var(--color-gold-light);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 0;
  font-size: var(--text-base);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
  cursor: pointer;
  box-shadow: var(--shadow-medium);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.scroll-top:hover {
  background: var(--color-gold);
  color: var(--color-text-white);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: var(--shadow-gold);
}

/* Mobile: Adjust scroll-top position to avoid WhatsApp overlap */
@media (max-width: 768px) {
  .scroll-top {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: var(--text-base);
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes swing {

  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-item::after {
    display: none;
  }

  .usp-item:nth-child(1),
  .usp-item:nth-child(2) {
    border-bottom: 1px solid var(--color-ash);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 var(--space-6);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--color-espresso);
    flex-direction: column;
    padding: var(--space-24) var(--space-10);
    gap: var(--space-8);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-elegant);
    z-index: 1000;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--color-white) !important;
    font-size: var(--text-lg);
    letter-spacing: 0.15em;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--color-gold) !important;
  }

  .nav-item-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  /* Mobile nav overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }


  .hero::before,
  .hero::after {
    width: 60px;
    height: 60px;
    top: 30px;
    left: 30px;
  }

  .hero::after {
    bottom: 30px;
    right: 30px;
    top: auto;
    left: auto;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about-image {
    max-height: 280px;
    overflow: hidden;
  }

  .about-image img {
    object-fit: cover;
    height: 100%;
  }

  .about-image::before,
  .about-image::after {
    display: none;
  }

  .about-content h2 {
    font-size: var(--text-2xl);
    line-height: 1.3;
  }

  .about-content p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
  }

  .about-content .divider-inline {
    margin-bottom: var(--space-4);
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .usp-item {
    border-bottom: 1px solid var(--color-ash);
  }

  .usp-item:last-child {
    border-bottom: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .page-header h1 {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-5);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .contact-form {
    padding: var(--space-8);
  }

  .contact-form::before {
    inset: 10px;
  }

  .section {
    padding: var(--space-16) 0;
  }
}

/* ============================================
   HERO ENHANCEMENTS & GLASSMORPHISM
   ============================================ */
.hero-floating-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.glass-card {
  position: absolute;
  background: rgba(44, 35, 25, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--color-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  max-width: 280px;
  animation: float 6s ease-in-out infinite;
  pointer-events: auto;
}

.glass-card.testimonial-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.glass-card.testimonial-2 {
  bottom: 25%;
  left: 8%;
  animation-delay: 3s;
}

.glass-card .user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.glass-card .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--color-espresso);
}

.glass-card .rating {
  color: #FFD700;
  font-size: 0.8rem;
  margin-left: auto;
}

.glass-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ffffff;
  opacity: 1;
  font-style: italic;
}

.hero-rating-badge {
  display: inline-flex;
  background: rgba(44, 35, 25, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: 1px solid var(--color-gold);
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-rating-badge .stars {
  color: #FFD700;
  font-size: 0.75rem;
}

.hero-rating-badge .text {
  color: var(--color-white);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  font-size: 0.65rem;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .glass-card {
    display: none;
  }

  .hero-rating-badge {
    padding: 0.8rem 1.5rem;
    margin-top: var(--space-4);
  }
}

/* ============================================
   INFINITE BRANDS CAROUSEL
   ============================================ */
.brands-section {
  background: var(--color-pearl);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--color-gold-muted);
}

.brands-title {
  text-align: center;
  font-family: var(--font-accent);
  letter-spacing: 3px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.brands-carousel-wrapper {
  display: flex;
  width: max-content;
  animation: scrollBrands 30s linear infinite;
}

.brands-carousel-wrapper:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  padding: 0 40px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-base);
  opacity: 0.6;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.brand-item:hover {
  opacity: 1;
  color: var(--color-gold-dark);
  transform: scale(1.1);
}

.brand-item i {
  font-size: 1rem;
  color: var(--color-gold);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.blog-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {

  .blog-grid,
  .blog-grid-3 {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-ash);
  overflow: hidden;
  transition: var(--transition-base);
  text-decoration: none;
}

.blog-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: var(--space-6);
}

.blog-category {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.blog-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.blog-link {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Blog Article Styles */
.blog-article .article-header {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-ash);
}

.article-meta {
  color: var(--color-text-muted);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content .lead {
  font-size: var(--text-xl);
  color: var(--color-text-base);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-text-dark);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-text-dark);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.article-content p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text-base);
  margin-bottom: var(--space-4);
}

.care-list {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}

.care-list li {
  margin-bottom: var(--space-3);
  line-height: 1.6;
  color: var(--color-text-base);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-6) 0;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-ash);
}

.comparison-table th {
  background: var(--color-cream);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text-dark);
}

.comparison-table tr:hover {
  background: var(--color-smoke);
}

.article-cta {
  background: var(--color-cream);
  padding: var(--space-8);
  margin-top: var(--space-10);
  text-align: center;
}

.article-cta h3 {
  margin-top: 0;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.faq-item {
  background: var(--color-white);
  padding: var(--space-6);
  border: 1px solid var(--color-ash);
}

.faq-item h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
}

.faq-item p {
  color: var(--color-text-base);
  line-height: 1.7;
}

/* Applications Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.application-item {
  text-align: center;
  padding: var(--space-6);
}

.application-item i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.application-item h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
}

.application-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* Guide content */
.guide-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .guide-content {
    grid-template-columns: 1fr;
  }
}

.guide-item {
  padding: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-ash);
}

.guide-item h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
}

.guide-item p {
  color: var(--color-text-base);
  line-height: 1.7;
}

/* ============================================
   E-E-A-T / AUTHOR / EXPERTISE STYLES
   ============================================ */
.article-meta-row {
  margin-top: var(--space-3);
}

.article-meta i {
  margin-right: 0.3rem;
  color: var(--color-gold);
}

.meta-separator {
  margin: 0 var(--space-3);
  color: var(--color-ash);
}

.article-featured-image {
  margin: var(--space-6) 0;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.expertise-box {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(184, 142, 74, 0.1) 0%, rgba(184, 142, 74, 0.05) 100%);
  border-left: 4px solid var(--color-gold);
  margin-bottom: var(--space-8);
  align-items: flex-start;
}

.expertise-box i {
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: var(--space-1);
}

.expertise-box p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-base);
  line-height: 1.6;
}

/* Author Bio Box */
.author-box {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-cream);
  border: 1px solid var(--color-ash);
  margin-top: var(--space-10);
}

.author-avatar {
  width: 80px;
  height: 80px;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 2rem;
  color: var(--color-espresso);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-1);
}

.author-info .author-title {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.author-info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .expertise-box {
    flex-direction: column;
    gap: var(--space-3);
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin: 0 auto;
  }
}

/* ============================================
   WHATSAPP FLOATING WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s var(--ease-elegant);
  text-decoration: none;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget .whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--color-espresso);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-widget .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--color-espresso);
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 145px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .whatsapp-widget .whatsapp-tooltip {
    display: none;
  }
}

/* ============================================
   TESTIMONIALS SECTION - SLIDER LAYOUT
   ============================================ */
.testimonials-section {
  padding: var(--space-24) 0;
  background: var(--color-pearl);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Slider Wrapper with Navigation */
.testimonials-slider-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  position: relative;
  margin-top: var(--space-12);
}

/* Navigation Arrows */
.testimonial-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-ash);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  color: var(--color-text-base);
  z-index: 10;
}

.testimonial-nav:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.05);
}

.testimonial-nav i {
  font-size: 14px;
}

/* Slider Container */
.testimonials-slider-container {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.testimonials-slider {
  display: flex;
  gap: var(--space-8);
  transition: transform 0.5s var(--ease-elegant);
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 calc(50% - var(--space-4));
  min-width: calc(50% - var(--space-4));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Speech Bubble */
.testimonial-bubble {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  width: 100%;
  margin-bottom: var(--space-6);
}

/* Speech bubble pointer */
.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--color-white);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.04));
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-base);
  line-height: 1.9;
  font-style: normal;
  margin: 0;
}

/* Author Section */
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding-left: var(--space-8);
}

.testimonial-name,
.testimonial-author h4 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-dark);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  display: block;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
}

.testimonial-rating i {
  color: #F5A623;
  font-size: 12px;
}

/* Pagination Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-10);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-ash);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.testimonial-dot:hover {
  background: var(--color-gold-light);
}

.testimonial-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-4));
    min-width: calc(50% - var(--space-4));
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .testimonials-slider-wrapper {
    gap: var(--space-3);
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .testimonial-nav {
    width: 36px;
    height: 36px;
  }

  .testimonial-nav i {
    font-size: 12px;
  }

  .testimonial-bubble {
    padding: var(--space-6);
  }

  .testimonial-author {
    padding-left: var(--space-6);
  }
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */
.faq-section {
  background-color: var(--color-pearl);
}

.faq-grid {
  display: grid;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-ash);
  background: var(--color-white);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  padding: var(--space-5);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--color-gold-dark);
}

.faq-question::after {
  content: '+';
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: var(--color-gold);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  background: var(--color-cream);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.3s 0.2s;
}

.faq-answer p {
  padding: var(--space-5);
  margin: 0;
  font-size: var(--text-base);
  color: var(--color-text-base);
  line-height: 1.6;
}