/* ============================================
   VENA LOKA CAKRAWALA — Design System
   Colors derived from brand: #432004, #AD7A16
   ============================================ */

:root {
  /* Brand Colors */
  --brown-900: #2a1300;
  --brown-800: #432004;
  --brown-700: #5a2e0a;
  --brown-600: #6d3a12;
  --brown-500: #7d4518;
  --gold-600: #AD7A16;
  --gold-500: #c48d1e;
  --gold-400: #d4a037;
  --gold-300: #e4b85a;
  --gold-200: #f0d08a;
  --gold-100: #faecd4;

  /* Neutral Palette */
  --cream-50: #fdf9f3;
  --cream-100: #faf3e8;
  --cream-200: #f3e8d5;
  --cream-300: #e8d5b8;
  --warm-gray-100: #f5f0eb;
  --warm-gray-200: #e8e0d8;
  --warm-gray-400: #a09488;
  --warm-gray-600: #6b5e52;
  --warm-gray-800: #3d352e;

  /* Semantic */
  --text-primary: var(--brown-800);
  --text-secondary: var(--warm-gray-600);
  --text-muted: var(--warm-gray-400);
  --bg-primary: var(--cream-50);
  --bg-secondary: var(--cream-100);
  --accent: var(--gold-600);
  --accent-light: var(--gold-100);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container-px: clamp(20px, 5vw, 80px);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--brown-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  margin-top: 24px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  border-radius: 3px;
  animation: preloaderFill 1.8s var(--ease-in-out) forwards;
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes preloaderFill {
  to {
    width: 100%;
  }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(253, 249, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(67, 32, 4, 0.08);
  padding: 10px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out);
}

.navbar.scrolled .nav-logo-img {
  width: 44px;
  height: 44px;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 6px;
  color: #fff;
  transition: all 0.3s var(--ease-out);
}

.navbar.scrolled .nav-link {
  color: var(--text-primary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-400);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold-600);
  background: var(--gold-100);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.navbar.scrolled .nav-toggle span {
  background: var(--brown-800);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: #fff;
  box-shadow: 0 4px 20px rgba(173, 122, 22, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(173, 122, 22, 0.4);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-in-out) infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(42, 19, 0, 0.82) 0%,
      rgba(67, 32, 4, 0.65) 40%,
      rgba(90, 46, 10, 0.45) 70%,
      rgba(67, 32, 4, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 var(--container-px);
  padding-top: 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(173, 122, 22, 0.2);
  border: 1px solid rgba(212, 160, 55, 0.3);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 1s var(--ease-out) 0.5s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(48px, 7vw, 88px);
  animation: fadeInUp 1s var(--ease-out) 0.7s both;
}

.hero-title-line.accent {
  color: var(--gold-300);
  font-style: italic;
  animation-delay: 0.9s;
}

.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeInUp 1s var(--ease-out) 1.1s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 1.3s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: var(--container-px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out) 1.6s both;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-400);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(20px);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: var(--gold-600);
}

.section-label.light {
  color: var(--gold-300);
}

.section-label.light::before {
  background: var(--gold-300);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-title em {
  color: var(--gold-600);
  font-style: italic;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-label {
  padding-left: 0;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.8s var(--ease-out);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold-600);
  border-radius: 12px;
  z-index: -1;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold-600);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold-600);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.about-paragraph p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.about-paragraph strong {
  color: var(--gold-600);
  font-weight: 600;
}

/* LOKA Acronym */
.loka-acronym {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--warm-gray-200);
}

.loka-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loka-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}

.loka-word {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values {
  background: var(--bg-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--warm-gray-200);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(67, 32, 4, 0.08);
  border-color: var(--gold-200);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: #fff;
  transform: scale(1.1);
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CRAFTSMANSHIP BANNER
   ============================================ */
.craftsmanship-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.craftsmanship-bg {
  position: absolute;
  inset: 0;
}

.craftsmanship-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craftsmanship-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(42, 19, 0, 0.88) 0%,
      rgba(67, 32, 4, 0.75) 50%,
      rgba(90, 46, 10, 0.65) 100%);
}

.craftsmanship-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.craftsmanship-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.craftsmanship-title em {
  color: var(--gold-300);
  font-style: italic;
}

.craftsmanship-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.craftsmanship-features {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.craft-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-300);
  font-size: 15px;
  font-weight: 500;
}

.craft-feat svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  background: var(--bg-secondary);
}

.product-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 40px;
  color: var(--text-secondary);
  border: 1.5px solid var(--warm-gray-200);
  transition: all 0.3s var(--ease-out);
}

.filter-btn:hover {
  color: var(--gold-600);
  border-color: var(--gold-400);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: #fff;
  border-color: var(--gold-600);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--warm-gray-200);
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(67, 32, 4, 0.1);
}

.product-card.hidden {
  display: none;
}

.product-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-info {
  padding: 24px;
}

.product-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-material {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   MATERIALS SECTION
   ============================================ */
.materials {
  background: var(--bg-primary);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.material-card {
  background: #fff;
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  border: 1px solid var(--warm-gray-200);
  transition: all 0.5s var(--ease-out);
}

.material-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(67, 32, 4, 0.08);
}

.material-visual {
  margin-bottom: 24px;
}

.material-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-100), var(--gold-100));
  border-radius: 50%;
  color: var(--gold-600);
  transition: all 0.4s var(--ease-out);
}

.material-card:hover .material-icon-wrapper {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: #fff;
  transform: scale(1.1);
}

.material-icon-wrapper svg {
  width: 36px;
  height: 36px;
}

.material-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.material-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram {
  background: var(--bg-primary);
}

.instagram-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.instagram-embed-wrapper {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.instagram-embed-wrapper iframe {
  border-radius: 12px !important;
}

.instagram-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 40px;
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.35);
}

.btn-instagram svg {
  stroke: #fff;
}

.instagram-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.instagram-cta .btn-outline svg {
  stroke: var(--gold-600);
}

.instagram-cta .btn-outline:hover svg {
  stroke: #fff;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--warm-gray-200);
  transition: all 0.3s var(--ease-out);
}

.contact-item:hover {
  border-color: var(--gold-400);
  box-shadow: 0 4px 20px rgba(173, 122, 22, 0.08);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
  border-radius: 10px;
  color: var(--gold-600);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-value {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Contact Form */
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 44px;
  border: 1px solid var(--warm-gray-200);
  box-shadow: 0 8px 40px rgba(67, 32, 4, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--cream-50);
  border: 1.5px solid var(--warm-gray-200);
  border-radius: 10px;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(173, 122, 22, 0.08);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23a09488' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brown-800);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease-out);
}

.footer-links a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-newsletter h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s var(--ease-out);
}

.social-link:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: #fff;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 13px;
}

.footer-eco {
  color: var(--gold-400);
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.whatsapp-fab.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

/* ============================================
   SCROLL ANIMATIONS (data-aos)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .contact-grid {
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  /* Navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--brown-800);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 4px;
    transition: right 0.5s var(--ease-out);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    padding: 14px 16px;
    border-radius: 8px;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--gold-400);
    background: rgba(173, 122, 22, 0.15);
  }

  .navbar.scrolled .nav-toggle span {
    background: var(--brown-800);
  }

  .nav-toggle.active span {
    background: #fff !important;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .loka-acronym {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 28px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Products */
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  /* Hero */
  .hero-content {
    padding-top: 140px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .craftsmanship-features {
    flex-direction: column;
    gap: 20px;
  }

  .about-stats {
    justify-content: center;
  }
}