/* ============================================
   FISHYLICIOUS - Official Brand Website
   Color Palette (from logo analysis):
   Primary:   #E9A189 (salmon orange - fish)
   Secondary: #8EB5A5 (sage green - accent)
   Accent:    #F0C75E (golden yellow - highlight)
   Dark:      #3A1C21 (dark brown - text)
   Cream:     #FFF9F5 (warm cream - bg)
   ============================================ */

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

:root {
  --primary: #E9A189;
  --primary-dark: #D4886E;
  --primary-light: #F5D5C8;
  --secondary: #8EB5A5;
  --secondary-light: #C8DDD5;
  --accent: #F0C75E;
  --accent-light: #FBE9B5;
  --dark: #3A1C21;
  --dark-soft: #5C3A40;
  --text: #3A1C21;
  --text-soft: #6B4D52;
  --text-muted: #9B7D82;
  --bg: #FFF9F5;
  --bg-alt: #FFF3EB;
  --white: #FFFFFF;
  --card: #FFFFFF;
  --border: #F0E0D8;
  --shadow-sm: 0 1px 3px rgba(58,28,33,0.06);
  --shadow-md: 0 4px 16px rgba(58,28,33,0.08);
  --shadow-lg: 0 8px 32px rgba(58,28,33,0.12);
  --shadow-xl: 0 16px 48px rgba(58,28,33,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1240px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Mobile container - tighter padding for better centering */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

/* ---- TYPOGRAPHY ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Smaller spacing on mobile */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 32px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    max-width: 90%;
  }
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-accent {
  color: var(--primary);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,161,137,0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,249,245,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(58,28,33,0.08);
  padding: 10px 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-cta-desktop {
  z-index: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  padding-top: calc(60px + env(safe-area-inset-top));
  overflow: hidden;
  background: var(--bg);
}

/* Smaller hero on mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
    min-height: auto;
  }
  
  .hero-container {
    padding: 0 12px;
    gap: 20px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    max-width: 90%;
  }
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: -50px;
  right: -50px;
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: var(--accent-light);
  bottom: -30px;
  left: -50px;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--secondary-light);
  top: 40%;
  left: 50%;
}

.hero-sparkle {
  position: absolute;
  font-size: 20px;
  opacity: 0.5;
  animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 15%; right: 15%; animation-delay: 0.8s; }
.sparkle-3 { bottom: 30%; left: 20%; animation-delay: 1.5s; }
.sparkle-4 { bottom: 20%; right: 25%; animation-delay: 2.2s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Mobile hero layout - single column */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 12px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-badges {
    justify-content: center;
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  color: var(--text-soft);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.hero-title {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-title-accent {
  color: var(--primary);
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Visual - Clean Product Display */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero-product-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-product-glow-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-product-glow-inner {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--primary-light) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
}

.hero-product {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: linear-gradient(135deg, #FFF9F5 0%, #F8F0E8 50%, #F5EFE6 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(58, 28, 33, 0.08);
  filter: drop-shadow(0 4px 8px rgba(58, 28, 33, 0.1));
  animation: floating 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(58, 28, 33, 0.12);
}

.hero-product-1,
.hero-product-2,
.hero-product-3 {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.hero-product-1.floating {
  animation-delay: 0s;
}

.hero-product-2.floating-delay {
  animation-delay: 0.5s;
}

.hero-product-3.floating-delay-2 {
  animation-delay: 1s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Floating animation for CTA products */
.floating {
  animation: floating 4s ease-in-out infinite;
}

.floating-delay {
  animation: floating 4s ease-in-out infinite 1s;
}

.floating-delay-2 {
  animation: floating 4s ease-in-out infinite 2s;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .floating, .floating-delay, .floating-delay-2,
  .hero-product {
    animation: none;
  }
  .hero-sparkle {
    animation: none;
  }
}

/* CTA Product styling */
.cta-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.cta-product {
  width: 100%;
  max-width: 160px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: linear-gradient(135deg, #FFF9F5 0%, #F8F0E8 50%, #F5EFE6 100%);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(58, 28, 33, 0.1);
  filter: drop-shadow(0 2px 8px rgba(58, 28, 33, 0.1));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(58, 28, 33, 0.15);
}

.cta-product.floating {
  animation: floating 4s ease-in-out infinite;
}

.cta-product.floating-delay {
  animation: floating 4s ease-in-out infinite 0.5s;
}

.cta-product.floating-delay-2 {
  animation: floating 4s ease-in-out infinite 1s;
}

.cta-product-1.floating {
  animation-delay: 0s;
}

.cta-product-2.floating-delay {
  animation-delay: 0.5s;
}

.cta-product-3.floating-delay-2 {
  animation-delay: 1s;
}

/* ---- TRUST BADGES ---- */
.trust-badges {
  padding: 28px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

/* ---- PRODUCTS ---- */
.products {
  text-align: center;
  padding: 80px 0;
  background: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}


.product-tag {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  background: var(--white);
  color: var(--text-soft);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.product-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-card-variants {
  margin-bottom: 20px;
  margin-top: auto;
}

.variant-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.variant-pill {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg);
  color: var(--text-soft);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.variant-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.variant-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-card-price .price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.product-card-price .weight {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.btn-product {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ---- WHY SECTION ---- */
.why-section {
  padding: 80px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.why-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.why-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---- ZERO WASTE ---- */
.zero-waste {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.zero-waste-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.zero-waste-content .section-title {
  text-align: left;
}

.zero-waste-content .section-subtitle {
  text-align: left;
  margin: 0 0 20px;
}

.zero-waste-text {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}

.zero-waste-process {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.process-step span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
}

.process-icon {
  font-size: 28px;
}

.process-arrow {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

.zero-waste-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.highlight-tag {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  color: var(--text-soft);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
}

.zero-waste-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zero-waste-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.zero-waste-image {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(58,28,33,0.12));
}

/* ---- ABOUT ---- */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrapper {
  text-align: center;
  margin-bottom: 24px;
}

.about-logo-image {
  width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(58,28,33,0.1));
}

.about-product-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.about-product-mini {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--bg);
  padding: 8px;
  border: 1px solid var(--border);
}

.about-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}

.about-text {
  margin-bottom: 28px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.about-highlight-icon {
  font-size: 18px;
}

/* ---- VALUES ---- */
.values-section {
  padding: 80px 0;
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.value-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---- CERTIFICATION ---- */
.certification {
  padding: 80px 0;
  background: var(--white);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.cert-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cert-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  background: var(--secondary-light);
  color: #4A7D6A;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.cert-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---- TESTIMONIAL ---- */
.testimonial-section {
  padding: 80px 0;
  background: var(--bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  font-style: italic;
}

/* ---- CTA ---- */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-wrapper {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.cta-products {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 80px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  color: var(--primary);
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.contact-detail {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px 0 0;
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 15px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.7);
}

.footer-badges {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---- FLOATING WHATSAPP ---- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 14px 22px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.wa-float svg {
  flex-shrink: 0;
}

.wa-float-text {
  font-size: 14px;
  font-weight: 700;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(58,28,33,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.modal-body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 0;
}

.modal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 16px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.modal-nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--dark);
  border-radius: 50%;
  font-size: 18px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.modal-nav-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.modal-nav-info {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  min-width: 50px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--dark);
  border-radius: 50%;
  font-size: 24px;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-image {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
  margin: 0 auto;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-product-wrapper {
    max-width: 380px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zero-waste-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .zero-waste-content .section-title,
  .zero-waste-content .section-subtitle {
    text-align: center;
  }

  .zero-waste-content {
    text-align: center;
  }

  .zero-waste-process {
    justify-content: center;
  }

  .zero-waste-highlights {
    justify-content: center;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 12px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-cta-desktop {
    display: none;
  }

  /* Full-Screen Mobile Navigation */
  .nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100dvh;
    height: 100dvh;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
  }

  .nav-mobile.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(58, 28, 33, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
  }

  .nav-mobile-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100vw;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: env(safe-area-inset-top, 20px) 24px 24px;
    background: var(--bg);
    color: var(--dark);
  }

  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
  }

  .nav-mobile-close {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    padding: 6px;
  }

  .nav-mobile-close span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
  }

  .nav-mobile-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-mobile-close span:nth-child(2) {
    opacity: 0;
  }

  .nav-mobile-close span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1;
    margin-bottom: 32px;
  }

  .nav-mobile-link {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition-delay: 0s;
  }

  .nav-mobile.items-visible .nav-mobile-link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-mobile-link:hover {
    color: var(--primary);
  }

  .nav-mobile-link.nav-link:hover {
    color: var(--primary);
  }

  .nav-mobile.items-visible .nav-mobile-link:nth-child(1) { transition-delay: 0.05s; }
  .nav-mobile.items-visible .nav-mobile-link:nth-child(2) { transition-delay: 0.10s; }
  .nav-mobile.items-visible .nav-mobile-link:nth-child(3) { transition-delay: 0.15s; }
  .nav-mobile.items-visible .nav-mobile-link:nth-child(4) { transition-delay: 0.20s; }
  .nav-mobile.items-visible .nav-mobile-link:nth-child(5) { transition-delay: 0.25s; }
  .nav-mobile.items-visible .nav-mobile-link:nth-child(6) { transition-delay: 0.30s; }

  .nav-mobile-cta {
    text-align: center;
    margin-bottom: 40px;
  }

  .nav-mobile-cta-btn {
    width: 200px;
    font-size: 16px;
    padding: 14px 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition-delay: 0.35s;
  }

  .nav-mobile.items-visible .nav-mobile-cta-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-mobile-footer {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition-delay: 0.40s;
  }

  .nav-mobile.items-visible .nav-mobile-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-mobile-brand-tag {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .product-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .hero-visual {
    max-width: 280px;
  }

  .trust-grid {
    gap: 16px 24px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-content {
    max-width: 95vw;
  }

  .modal-image {
    max-height: 60vh;
  }

  .wa-float-text {
    display: none;
  }

  .wa-float {
    padding: 16px;
    border-radius: 50%;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  .cta-visual {
    max-width: 140px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav,
  .footer-social {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 90px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badges {
    gap: 6px;
  }

  .badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .zero-waste-process {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .section-header {
    margin-bottom: 32px;
  }

  .products,
  .why-section,
  .zero-waste,
  .about,
  .values-section,
  .certification,
  .testimonial-section,
  .cta-section,
  .contact-section {
    padding: 56px 0;
  }

  .cta-wrapper {
    padding: 28px 20px;
  }
}

/* ---- PREVENT BODY SCROLL WHEN MOBILE NAV OPEN ---- */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
  .nav-mobile {
    display: none;
  }
}


/* Products section mobile optimization */
@media (max-width: 768px) {
  .products {
    padding: 60px 0;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .product-card {
    padding: 0;
    border-radius: 12px;
  }
  
  .product-card-image {
    padding: 20px;
    border-radius: 12px 12px 0 0;
  }
  
  .product-card-body {
    padding: 16px;
  }
}

/* Contact cards stack on mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Hero product 2-1 layout */
.hero-product-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-product {
  width: 180px;
  height: auto;
  object-fit: contain;
  z-index: 2;
}

.hero-product-1 {
  animation: float1 4s ease-in-out infinite;
}

.hero-product-2 {
  animation: float2 4s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-product-3 {
  width: 220px;
  height: auto;
  animation: float3 4s ease-in-out infinite;
  animation-delay: 2s;
}

