/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --deco-gold: #D4AF37;
  --deco-terracotta: #C65D07;
  --deco-olive: #6B8E23;
  --deco-charcoal: #2C2C2C;
  --deco-cream: #FAF8F3;
  --container-width: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bg-color: var(--deco-cream);
  --text-color: var(--deco-charcoal);
  --heading-color: var(--deco-charcoal);
  --card-bg: var(--deco-cream);
  --section-white: #ffffff;
  --section-cream: var(--deco-cream);
  --border-color: rgba(44, 44, 44, 0.1);
  --text-secondary: rgba(44, 44, 44, 0.7);
  --header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --mobile-menu-bg: white;
  --input-bg: white;
  --input-border: rgba(44, 44, 44, 0.2);
  --footer-bg: #2C2C2C;
  --dark-card-bg: #2C2C2C;
}

[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --text-color: #e0e0e0;
  --heading-color: #f5f5f5;
  --card-bg: #2d2d2d;
  --section-white: #1a1a1a;
  --section-cream: #242424;
  --deco-charcoal: #e0e0e0;
  --border-color: rgba(255, 255, 255, 0.1);
  --text-secondary: rgba(224, 224, 224, 0.7);
  --header-bg-scrolled: rgba(26, 26, 26, 0.95);
  --mobile-menu-bg: #2d2d2d;
  --input-bg: #2d2d2d;
  --input-border: rgba(255, 255, 255, 0.2);
  --footer-bg: #0f0f0f;
  --dark-card-bg: #1f1f1f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.page-header-offset {
  padding-top: 8rem;
}

@media (max-width: 1024px) {
  .page-header-offset {
    padding-top: 6rem;
  }
}

.section {
  padding: 5rem 0;
}

.section-white {
  background-color: var(--section-white);
}

.section-cream {
  background-color: var(--section-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 0 auto;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .section-footer {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(to right, var(--deco-gold), var(--deco-terracotta));
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  border: 2px solid var(--deco-charcoal);
  color: var(--deco-charcoal);
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--deco-charcoal);
  color: white;
}

.btn-secondary:active {
  transform: scale(0.95);
}

.btn-ghost {
  color: var(--deco-charcoal);
  background: transparent;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.btn-white {
  color: white;
  border: 1px solid white;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER REDESIGN (PREMIUM & MODERN)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
  padding: 1.5rem 0; /* More padding initially */
}

/* Fix for mobile background as requested */
@media (max-width: 1024px) {
  .header {
    background: var(--header-bg-scrolled) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 0.75rem 0 !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid var(--border-color) !important;
  }
  
  .logo-text, .header.scrolled .logo-text {
    color: var(--deco-charcoal) !important;
  }
  
  /* Logo color adjust for light backgrounds on mobile */
  .logo-icon {
    color: var(--deco-gold) !important;
  }
  
  .mobile-menu-btn {
    color: var(--deco-charcoal) !important;
  }
}


/* Initially, on hero pages, the header might be over a dark background */
.header.scrolled {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0; /* Compact when scrolled */
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border-color);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  z-index: 101;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 38px;
  height: 38px;
  color: var(--deco-gold);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  transition: all 0.3s ease;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: white;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.header.scrolled .logo-text {
  color: var(--deco-charcoal);
}

.logo-text span {
  font-weight: 300;
  opacity: 0.8;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--text-secondary);
}

.nav-link:hover {
  color: white;
}

.header.scrolled .nav-link:hover {
  color: var(--deco-gold);
}

/* Modern Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--deco-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Actions in Header */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav-actions {
  border-left-color: var(--border-color);
}

/* Theme Toggle Refined */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Circle for more elegance */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.header.scrolled .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--border-color);
  color: var(--deco-charcoal);
}

.theme-toggle-btn:hover {
  background: var(--deco-gold);
  color: white;
  border-color: var(--deco-gold);
  transform: rotate(15deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  color: var(--deco-charcoal);
  width: 48px;
  height: 48px;
  background: var(--deco-cream);
  border: 1px solid var(--deco-gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-menu-btn .menu-icon {
  color: var(--deco-charcoal);
}

.mobile-menu-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.header.scrolled .mobile-menu-btn {
  color: var(--deco-charcoal);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--border-color);
}

/* Custom Burger Icon with different widths */
.menu-icon line {
  transition: transform 0.3s ease, width 0.3s ease;
}

.mobile-menu-btn:hover .menu-icon line:nth-child(2) {
  transform: translateX(4px);
}

.mobile-menu-btn:hover .menu-icon line:nth-child(3) {
  transform: translateX(8px);
}


@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu Drawer (Redesigned) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  transition: visibility 0.4s;
}

.mobile-menu.active {
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--mobile-menu-bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.mobile-menu-header .logo-text {
  color: var(--deco-charcoal);
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deco-charcoal);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--deco-gold);
  color: white;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deco-charcoal);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link::after {
  content: '→';
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--deco-gold);
}

.mobile-nav-link:hover {
  color: var(--deco-gold);
}

.mobile-nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.mobile-menu-drawer > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.mobile-menu.active .mobile-menu-drawer > * {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu-drawer > *:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-drawer > *:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-drawer > *:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   HERO MODERN
   ============================================ */
.hero-modern {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-modern-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-modern-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* subtle scale to feel larger */
}

.hero-modern-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.7) 0%, rgba(15,15,15,0.3) 100%);
}

.hero-modern-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding-top: 5rem;
}

.hero-modern-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-modern-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--deco-gold);
}

.hero-modern-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.5;
}

.hero-modern-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1.125rem;
  transition: var(--transition);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary-white:hover {
  background: #fff;
  color: var(--deco-charcoal);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .hero-modern-title { font-size: 5rem; }
  .hero-modern-subtitle { font-size: 1.5rem; }
}

/* ============================================
   REFINED CATEGORIES
   ============================================ */
.wrapper-refined-categories {
  position: relative;
  z-index: 20;
  margin-top: -5rem;
  padding-bottom: 3rem;
}

.refined-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .refined-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

.refined-category-card {
  position: relative;
  height: 250px;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.refined-category-card:hover {
  transform: translateY(-10px);
}

.rcc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.refined-category-card:hover .rcc-bg {
  transform: scale(1.05);
}

.rcc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
  transition: background 0.4s ease;
}

.refined-category-card:hover .rcc-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.rcc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}


.rcc-text-wrapper {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.rcc-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rcc-link {
  color: var(--deco-gold);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.refined-category-card:hover .rcc-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   STATS / MISSION
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--deco-olive);
}

.stat-number {
  font-size: 2rem;
  font-weight: 500;
  color: var(--deco-charcoal);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
}

/* ============================================
   FOUNDER SECTION (REDESIGNED)
   ============================================ */
.founder-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.founder-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(44, 44, 44, 0.03);
    z-index: 0;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

[data-theme="dark"] .founder-background-text {
    color: rgba(255, 255, 255, 0.02);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .founder-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 8rem;
    }
}

.founder-image-container {
    position: relative;
}

.founder-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/5;
}

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-image-container:hover .founder-image-wrapper img {
    transform: scale(1.05);
}

.founder-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--deco-gold);
    border-left: 4px solid var(--deco-gold);
    z-index: 1;
    border-radius: 20px 0 0 0;
}

.founder-image-decoration-bottom {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--deco-gold);
    opacity: 0.1;
    z-index: 1;
    border-radius: 0 0 24px 0;
}

.founder-content {
    display: flex;
    flex-direction: column;
}

.founder-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--deco-gold);
    margin-bottom: 1rem;
}

.founder-name {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deco-charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.founder-role {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.founder-bio {
    position: relative;
}

.founder-bio p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.founder-quote {
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 4px solid var(--deco-gold);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--deco-charcoal);
    font-weight: 500;
}

.founder-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.founder-stat-item {
    display: flex;
    flex-direction: column;
}

.founder-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deco-gold);
}

.founder-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .founder-name {
        font-size: 2.25rem;
    }
    .founder-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .founder-background-text {
        font-size: 10rem;
    }
    .founder-section {
        padding: 60px 0;
    }
}

/* INTERACTIVE BIO STYLES */
.founder-tabs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none;
}

.founder-tabs::-webkit-scrollbar {
    display: none;
}

.founder-tab-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.founder-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deco-gold);
    transition: var(--transition);
}

.founder-tab-btn.active {
    color: var(--deco-charcoal);
}

.founder-tab-btn.active::after {
    width: 100%;
}

.founder-tab-content {
    display: none;
    animation: fadeInBio 0.5s ease forwards;
}

.founder-tab-content.active {
    display: block;
}

@keyframes fadeInBio {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.interactive-paragraph {
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    background: transparent;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.interactive-paragraph:hover {
    background: var(--section-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

[data-theme="dark"] .interactive-paragraph:hover {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.highlight-keyword {
    color: var(--deco-gold);
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.highlight-keyword::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--deco-gold);
    opacity: 0.3;
    transition: transform 0.3s ease;
    transform-origin: right;
    transform: scaleX(0);
}

.highlight-keyword:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Floating Elements Anim */
.floating-element {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(0, 0); }
    50% { transform: translate(0, -15px); }
    100% { transform: translate(0, 0); }
}

@media (max-width: 480px) {
    .founder-name {
        font-size: 1.875rem;
    }
    .founder-stat-value {
        font-size: 1.5rem;
    }
}

/* Scroll Animations for Founder Section */
.founder-section .founder-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-section .founder-image-container {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-section.active .founder-content,
.founder-section.active .founder-image-container {
    opacity: 1;
    transform: translateX(0);
}

.founder-stat-item {
    transition: transform 0.3s ease, color 0.3s ease;
}

.founder-stat-item:hover {
    transform: translateY(-5px);
}

.founder-stat-item:hover .founder-stat-value {
    color: var(--deco-terracotta);
}

.about-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.timeline {
  margin: 2rem 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.timeline-year {
  flex-shrink: 0;
  width: 4rem;
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--deco-gold);
}

.timeline-content {
  flex: 1;
  padding-top: 0.25rem;
}

.timeline-line {
  width: 2rem;
  height: 0.125rem;
  background: var(--deco-gold);
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--deco-charcoal);
}

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.process-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), rgba(198, 93, 7, 0.2));
  color: var(--deco-gold);
}

.process-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deco-charcoal);
  margin-bottom: 1rem;
}

.process-description {
  color: var(--text-secondary);
}

/* ============================================
   PRODUCTS
   ============================================ */
/* Homepage Products */
.homepage-products-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.homepage-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.homepage-category-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--deco-charcoal);
  letter-spacing: -0.5px;
}

.btn-view-more {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deco-terracotta);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(198, 93, 7, 0.05);
}

.btn-view-more:hover {
  background: var(--deco-terracotta);
  color: white;
  transform: translateX(4px);
}

.homepage-products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .homepage-products-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .homepage-category-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .homepage-category-title {
    font-size: 1.5rem;
  }
  
  .btn-view-more {
    font-size: 0.875rem;
    padding: 0.4rem 0.8rem;
  }

  /* Mobile horizontal e-commerce carousel — exactly 2 cards per row */
  .homepage-products-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .homepage-products-row::-webkit-scrollbar {
    display: none;
  }
  
  /* Exactly 2 cards visible, with a peek of the 3rd */
  /* Fixed mobile carousel layout for exactly 2 per row */
  .homepage-products-row .product-card {
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
    scroll-snap-align: center;
    flex: 0 0 calc(50% - 6px);
    border-radius: 1rem;
    margin-bottom: 0.5rem;
  }

  .homepage-products-row .product-content {
    padding: 0.75rem 0.85rem;
  }

  .homepage-products-row .product-name {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .homepage-products-row .product-price {
    font-size: 0.9rem;
  }

  .homepage-products-row .product-add-btn {
    width: 28px;
    height: 28px;
  }

  /* Scroll progress indicator dots */
  .homepage-products-section {
    position: relative;
  }
}

.category-filters-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

.category-filters-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

@media (max-width: 768px) {
  .category-filters-container {
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.category-filters {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 2rem;
  margin: 0 auto;
}

.category-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  background: transparent;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  opacity: 0.7;
}

.category-filter:hover {
  color: var(--deco-charcoal);
  opacity: 1;
}

.category-filter.active {
  color: var(--deco-charcoal);
  border-bottom: 2px solid var(--deco-charcoal);
  opacity: 1;
  background: transparent;
  box-shadow: none;
}

.category-filter svg {
  width: 28px;
  height: 28px;
}

/* Boutique Header & Categories */
.boutique-header-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(198, 93, 7, 0.05));
    border-radius: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}
.boutique-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deco-charcoal);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.boutique-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .boutique-header-section {
        padding: 3rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    .boutique-title {
        font-size: 2.5rem;
    }
}

.boutique-categories-wrapper {
    margin-bottom: 4rem;
}

.boutique-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.boutique-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
}

.boutique-category:hover, .boutique-category.active {
    border-color: var(--deco-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    background: linear-gradient(135deg, var(--card-bg), rgba(212, 175, 55, 0.05));
}

.boutique-category.active .bc-name {
    color: var(--deco-gold);
}
.boutique-category.active .bc-icon {
    background: var(--deco-gold);
    color: white;
}

.bc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(44,44,44,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deco-charcoal);
    transition: var(--transition);
}

.bc-icon svg {
    width: 24px;
    height: 24px;
}

.bc-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deco-charcoal);
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .boutique-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .boutique-categories-wrapper {
        overflow-x: auto;
        padding-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        scroll-snap-type: x mandatory;
    }
    .boutique-categories-wrapper::-webkit-scrollbar {
        display: none;
    }
    .boutique-categories {
        display: flex;
        gap: 1rem;
    }
    .boutique-category {
        flex: 0 0 calc(85vw - 2rem);
        padding: 1rem 1.25rem;
        scroll-snap-align: center;
    }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.product-card {
  background: var(--card-bg);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Elegant border effect */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  pointer-events: none;
  border-radius: 0.85rem;
  z-index: 5;
  transition: var(--transition);
}

.product-card:hover::before {
  border-color: rgba(212, 175, 55, 0.4);
  inset: 0.4rem;
}

.product-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: #f5f5f5;
}

[data-theme="dark"] .product-image {
  background-color: #242424;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--deco-charcoal);
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-overlay {
  display: none;
}

.product-content {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 2px solid rgba(212, 175, 55, 0.15);
}

.product-name {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.product-materials {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: auto;
  font-style: italic;
}

.product-colors,
.product-sizes {
  display: none;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--deco-charcoal);
  letter-spacing: -0.02em;
}

.product-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deco-charcoal), #444);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.product-add-btn:hover {
  background: linear-gradient(135deg, var(--deco-gold), var(--deco-terracotta));
  transform: scale(1.1);
}

.product-add-btn span {
  display: none;
}

.product-add-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   PRODUCT DRAWER
   ============================================ */
.product-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.product-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-color);
  z-index: 1000;
  border-radius: 1.5rem 1.5rem 0 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
  .product-drawer {
    left: 50%;
    transform: translate(-50%, 100%);
    width: 100%;
    max-width: 500px;
    border-radius: 1.5rem 1.5rem 0 0;
  }
  .product-drawer.active {
    transform: translate(-50%, 0);
  }
}

.product-drawer.active {
  transform: translateY(0);
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deco-charcoal);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
}

.drawer-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-image-wrapper {
  width: 100%;
  aspect-ratio: 4/4;
  background: #f0f0f0;
}

.drawer-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-info {
  padding: 1.5rem;
}

.drawer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deco-charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.drawer-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deco-gold);
  margin-bottom: 1.5rem;
}

.drawer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.drawer-meta-section {
  margin-bottom: 1.25rem;
}

.drawer-meta-section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deco-charcoal);
  margin-bottom: 0.5rem;
}

.drawer-meta-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.drawer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.drawer-chip {
  padding: 0.4rem 0.8rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--deco-charcoal);
}

.drawer-actions {
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.drawer-whatsapp-btn {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.drawer-whatsapp-btn:hover {
  background: #20bd5a;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* ============================================
   B2B
   ============================================ */
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .b2b-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
    .b2b-grid {
        grid-template-columns: 1fr;
    }
}

.b2b-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.b2b-icon {
    width: 64px;
    height: 64px;
    background: var(--deco-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deco-gold);
}

.b2b-title {
    font-size: 2rem;
    font-weight: 700;
}

.b2b-text {
    font-size: 1.1rem;
    color: var(--deco-grey);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.b2b-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.b2b-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--deco-charcoal);
}

.b2b-list li::before {
    content: "•";
    color: var(--deco-gold);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -0.5rem;
}

.b2b-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.b2b-card {
    background: var(--dark-card-bg);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.b2b-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(197, 160, 99, 0.2), transparent 70%);
}

.b2b-card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.b2b-card-text {
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.b2b-card .btn {
    position: relative;
    z-index: 1;
}

/* Reconnaissances Section */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.partner-item {
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--deco-charcoal);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.events-list {
    text-align: center;
}

.events-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--deco-charcoal);
}

.event-tag {
    display: inline-block;
    background: var(--deco-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

/* About Section Updates */
.about-subtitle {
    font-size: 1.5rem;
    color: var(--deco-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-role-highlight {
    font-weight: 700;
    color: var(--deco-charcoal);
    margin-bottom: 1.5rem;
    display: block;
}

.about-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.area-tag {
    background: var(--deco-cream);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    color: var(--deco-charcoal);
    border: 1px solid rgba(0,0,0,0.05);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-container {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .testimonial-slide {
    padding: 3rem;
  }
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .testimonial-content {
    flex-direction: row;
    text-align: left;
  }
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.8);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  text-align: center;
}

@media (min-width: 768px) {
  .testimonial-author {
    text-align: left;
  }
}

.testimonial-name {
  font-weight: 700;
  color: var(--deco-charcoal);
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.6);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  padding: 0.5rem;
  border-radius: 9999px;
  background: var(--card-bg);
  color: var(--deco-charcoal);
  transition: var(--transition);
}

.testimonial-nav-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(44, 44, 44, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.testimonial-dot:hover {
  background: rgba(44, 44, 44, 0.5);
}

.testimonial-dot.active {
  width: 2rem;
  background: var(--deco-gold);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--card-bg);
  border-radius: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-link {
  display: block;
  color: inherit;
}

.blog-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--deco-olive);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.6);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deco-charcoal);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--deco-gold);
}

.blog-excerpt {
  color: rgba(44, 44, 44, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  color: var(--deco-gold);
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
}

.blog-card:hover .blog-read-more {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  color: white;
  margin-top: 5rem;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
  }
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-heading {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background: var(--deco-gold);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--deco-gold);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--deco-gold);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--deco-gold);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--deco-gold);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn-primary {
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .footer-bottom-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: white;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.floating-btn {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-text-mobile {
  display: inline;
}

.floating-text-desktop {
  display: none;
}

@media (min-width: 640px) {
  .floating-text-mobile {
    display: none;
  }
  .floating-text-desktop {
    display: inline;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 5rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* ============================================
   MODERN VISION SECTION
   ============================================ */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .vision-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }
}

/* Vision eyebrow label */
.vision-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--deco-gold);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.vision-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deco-charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.vision-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.vision-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .vision-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .vision-stats-grid {
    grid-template-columns: 1fr;
  }
}

.vision-stat {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1.5rem;
  border-left: 4px solid var(--deco-gold);
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-stat:hover {
  transform: translateX(6px);
  box-shadow: 0 15px 40px -5px rgba(212, 175, 55, 0.15);
}

.vision-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--deco-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.vision-stat .stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (min-width: 1024px) {
  .vision-stat {
    padding: 1.5rem 2rem;
  }
}

/* ============================================
   MODERN PROCESS SECTION
   ============================================ */
.modern-header {
  text-align: left;
  max-width: 600px;
}

@media (min-width: 768px) {
  .modern-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
  }
}

.process-modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .process-modern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-modern-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.4s ease;
}

.process-modern-card:hover {
  transform: translateY(-8px);
}

.process-step {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.2);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.process-modern-card .process-title {
  margin-top: 1rem;
  font-size: 1.5rem;
}

/* ============================================
   FLOATING CATEGORIES
   ============================================ */
.floating-categories {
  position: relative;
  z-index: 30;
  margin-top: -5rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .floating-categories {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -7rem;
  }
}

.category-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.3);
}

.category-card:hover::before {
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.8));
}

.category-content {
  position: relative;
  z-index: 10;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.category-icon {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.category-card:hover .category-icon {
  background: white;
  border-color: white;
  color: var(--deco-charcoal);
  transform: scale(1.1);
}

.category-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
  color: white;
}

.category-link-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  font-weight: 600;
}

.category-card:hover .category-link-text {
  opacity: 1;
  transform: translateY(0);
}

/* Rounded Organic UI Improvements */
.btn {
  border-radius: 9999px;
}

.stat-card, .process-card, .b2b-content, .b2b-card, .blog-card, .testimonial-slide {
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05); /* Softer shadow */
}

.section-white, .section-cream {
  transition: background-color 0.3s ease;
}

@media (max-width: 640px) {
    .product-content {
        padding: 0.75rem;
    }
    .product-name {
        font-size: 0.9rem;
    }
    .product-price {
        font-size: 0.95rem;
    }
    .product-materials {
        font-size: 0.75rem;
    }
    .product-add-btn {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   RECYCLE SECTION — PREMIUM
   ============================================ */
.recycle-section {
  background: linear-gradient(135deg, #0a2515 0%, #0f3d20 50%, #1a5e32 100%);
  position: relative;
  overflow: hidden;
}

.recycle-hero-card {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 2;
}

@media (min-width: 768px) {
  .recycle-hero-card {
    grid-template-columns: auto 1fr;
    gap: 5rem;
  }
}

.recycle-bg-decoration {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.recycle-circle-1,
.recycle-circle-2,
.recycle-circle-3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.recycle-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #25D366, transparent);
  top: -200px;
  right: -150px;
  animation: recyclePulse 8s ease-in-out infinite;
}

.recycle-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4caf50, transparent);
  bottom: -100px;
  left: 0;
  animation: recyclePulse 10s ease-in-out infinite reverse;
}

.recycle-circle-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #a5d6a7, transparent);
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
  animation: recyclePulse 6s ease-in-out infinite 2s;
}

@keyframes recyclePulse {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50% { transform: scale(1.1); opacity: 0.12; }
}

.recycle-icon-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  flex-shrink: 0;
  animation: recycleRotate 20s linear infinite;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .recycle-icon-badge {
    margin: 0;
    width: 120px;
    height: 120px;
  }
}

@keyframes recycleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.recycle-content {
  text-align: center;
}

@media (min-width: 768px) {
  .recycle-content {
    text-align: left;
  }
}

.recycle-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #25D366;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.9rem;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.recycle-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .recycle-title {
    font-size: 3rem;
  }
}

.recycle-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.recycle-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .recycle-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

.recycle-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.recycle-feature svg {
  color: #25D366;
  flex-shrink: 0;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  padding: 3px;
  width: 24px;
  height: 24px;
}

.recycle-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.recycle-whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================
   OVERALL PAGE DESIGN POLISH
   ============================================ */
/* Cleaner section transitions */
.section + .section {
  position: relative;
}

/* Enhanced process cards */
.process-modern-card {
  border: 1px solid var(--border-color);
}

.process-modern-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

/* Better section header eyebrow */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--deco-gold);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Scroll snap scroll indicator (mobile carousel) */
.carousel-scroll-hint {
  display: none;
}

@media (max-width: 768px) {
  .carousel-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    justify-content: flex-end;
    padding-right: 0.5rem;
  }

  .carousel-scroll-hint svg {
    animation: bounceRight 1.5s ease-in-out infinite;
  }

  @keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
  }
}

/* Dark mode adjustments for recycle section */
[data-theme="dark"] .recycle-section {
  background: linear-gradient(135deg, #051209 0%, #0a2515 50%, #0f3d20 100%);
}
