/* Erva Healthcare - Modern Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --primary-green-h: 140;
  --primary-green-s: 28%;
  --primary-green-l: 25%;
  --primary-green: hsl(var(--primary-green-h), var(--primary-green-s), var(--primary-green-l)); /* #2e4d38 */
  --primary-green-hover: hsl(var(--primary-green-h), var(--primary-green-s), 18%);
  --primary-green-light: hsl(var(--primary-green-h), var(--primary-green-s), 95%);
  
  --accent-green: #0ca654; /* bright green for links and badges */
  --accent-green-hover: #0a8e47;
  
  --bg-light: #fafbf9;
  --bg-white: #ffffff;
  --bg-dark: #121814;
  --bg-dark-card: #1c241e;
  
  --text-dark: #1d2520;
  --text-muted: #626e66;
  --text-light: #ffffff;
  --text-light-muted: rgba(255, 255, 255, 0.7);
  
  --border-color: rgba(0, 0, 0, 0.08);
  --border-color-light: rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', var(--font-sans);
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  
  /* Shadow & Radii */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}


.flex { display: flex; }
.grid { display: grid; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.section-padding {
  padding: 80px 0;
}

.text-center { text-align: center; }
.w-full { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-family: var(--font-sans);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-green);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(12, 166, 84, 0.3);
}

.btn-expert {
  background-color: #ffffff;
  color: var(--primary-green);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-expert:hover {
  background-color: #f8fafc;
  color: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-light);
}

.btn-secondary:hover {
  border-color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--primary-green);
  color: var(--text-light);
}

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

/* Badges & Sections Label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent-green);
  border-radius: 50%;
}

.divider-line {
  height: 1px;
  background-color: var(--border-color);
  width: 100%;
  margin-bottom: 40px;
}

/* Header & Nav */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}

.main-header.scrolled {
  position: fixed;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  animation: slideDown 0.4s ease-out forwards;
}

.main-header.scrolled a {
  color: var(--text-dark);
}

.main-header.scrolled .nav-link:hover {
  color: var(--accent-green);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.logo-white {
  display: block;
  filter: brightness(0) invert(1); /* Pure white logo over green background */
}

.logo-dark {
  display: none;
  filter: none;
}

/* Sticky Header (.scrolled) Adjustments */
.main-header.scrolled .logo-white {
  display: none;
}

.main-header.scrolled .logo-dark {
  display: block;
  height: 44px;
}

.main-header.scrolled .btn-expert {
  background-color: var(--accent-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(12, 166, 84, 0.25);
}

.main-header.scrolled .btn-expert:hover {
  background-color: var(--accent-green-hover);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(12, 166, 84, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 28px; /* Matching mockup size */
  font-weight: 800; /* Extra bold matching mockup */
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--text-light);
}

.main-header.scrolled .logo-title {
  color: var(--primary-green);
}

.logo-subtitle {
  font-size: 11px; /* Matching mockup size */
  font-weight: 700;
  letter-spacing: 1.5px; /* Matching mockup spacing */
  text-transform: uppercase;
  color: var(--text-light-muted);
}

.main-header.scrolled .logo-subtitle {
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: #25d366;
  border-radius: 2px;
}

.main-header.scrolled .nav-link {
  color: #1e293b;
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
  color: #0ca654;
}

.main-header.scrolled .nav-link.active::after {
  background-color: #0ca654;
}

/* Mobile Nav Styles */
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

.main-header.scrolled .mobile-nav-toggle {
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 660px; /* Fixed hero height to match mockup green canvas */
  background: radial-gradient(circle at 50% 30%, rgba(46, 175, 112, 0.45) 0%, rgba(15, 90, 50, 0.82) 55%, rgba(7, 52, 28, 0.96) 100%), url(../img/hero/backgrounds/bg-1.webp) no-repeat center top;
  background-size: cover;
  color: var(--text-light);
  overflow: visible; /* Crucial to let the bowls overflow into the legacy section */
  box-sizing: border-box;
  padding-top: 100px; /* Header clearance */
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  height: 100%;
}

.hero-content h1,
.hero-slide h1 {
  font-size: 46px; /* Larger heading matching user reference */
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.2;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.5px;
}

.hero-content h1 span,
.hero-slide h1 span {
  font-weight: 300;
}

.hero-content h1 strong,
.hero-slide h1 strong {
  font-weight: 700;
  color: var(--text-light);
}

.hero-content p,
.hero-slide p {
  font-size: 17px; /* Larger subtext font size matching reference */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* Hero Slider Structure */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 249px;
  margin: 71px auto 0 auto;
}

/* Slider Navigation Arrows (Hidden per reference) */
.slider-arrow {
  display: none !important;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.hero-slide.active {
  position: absolute;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .btn,
.hero-content .btn {
  width: 194px;
  height: 42px;
  padding: 0;
  line-height: 42px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #0ca654;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.hero-slide .btn:hover,
.hero-content .btn:hover {
  background-color: #f8fafc;
  color: #098040;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Slider Dots (Hidden per reference) */
.slider-dots {
  display: none !important;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: var(--text-light);
  transform: scale(1.2);
}

/* Bowls Outer Container - Spans full screen width, allows single centered bowl overflow */
.hero-bowls-outer {
  position: absolute;
  bottom: -195px; /* Lowers bowl container to create vertical space under button */
  left: 0;
  width: 100%;
  height: 400px;
  overflow: visible;
  z-index: 10;
  pointer-events: none;
}

.hero-bowls-wrapper {
  position: relative;
  width: 100%;
  max-width: 1340px;
  height: 100%;
  margin: 0 auto;
  pointer-events: auto;
}

/* 3D Carousel Stage Viewport */
.hero-bowls-track-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

.hero-bowls-track {
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  transform-style: preserve-3d;
}

.hero-bowl-slide {
  position: absolute;
  left: -180px; /* Center 360px bowl on container center axis */
  top: 0;
  width: 360px;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 900ms cubic-bezier(.22, .61, .36, 1), opacity 900ms cubic-bezier(.22, .61, .36, 1);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-bowl-slide.pos-center {
  transform: translate3d(0, 0, 120px) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 12;
  pointer-events: auto;
}

.hero-bowl-slide.pos-left {
  transform: translate3d(-460px, 0, -120px) rotateY(26deg) scale(0.75);
  opacity: 0.85;
  z-index: 11;
}

.hero-bowl-slide.pos-right {
  transform: translate3d(460px, 0, -120px) rotateY(-26deg) scale(0.75);
  opacity: 0.85;
  z-index: 11;
}

.hero-bowl-slide .single-hero-bowl {
  width: 360px;
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.14));
}

.hero-badge-card {
  position: absolute;
  top: 195px; /* Aligned vertically with 360px bowl at boundary line */
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-white);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  z-index: 15;
  box-sizing: border-box;
  height: 52px;
}

.badge-left {
  left: 15%;
}

.badge-right {
  right: 15%;
}

.hero-badge-card img {
  height: auto;
  max-height: 26px; /* Allows rosette and Google icons to fit naturally */
  object-fit: contain;
}

.hero-badge-text {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  line-height: 1.3;
}

.hero-badge-text span {
  color: var(--text-muted);
}

.stars {
  color: #fbbf24; /* yellow star color */
  font-size: 14px;
}

.stars-green {
  color: #10b981;
  font-size: 14px;
}



/* Legacy Section */
.legacy-section {
  padding: 210px 0 80px 0;
  background-color: var(--bg-light);
}

.legacy-header {
  max-width: 820px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.legacy-header h2 {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.legacy-header h2 .highlight-green {
  color: #0ca654;
  font-weight: 700;
}

.legacy-header h2 .title-dark {
  color: #1e293b;
  font-weight: 300;
}

.legacy-header p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.legacy-card {
  background-color: var(--bg-white);
  padding: 32px 28px;
  border-radius: 32px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: left;
}

.legacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(12, 166, 84, 0.12);
  border-color: rgba(12, 166, 84, 0.3);
}

.legacy-icon-container {
  width: 58px;
  height: 58px;
  background-color: #0ca654;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px 0; /* Left alignment matching Image 2 */
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(12, 166, 84, 0.2);
}

.legacy-card:hover .legacy-icon-container {
  transform: scale(1.08);
}

.legacy-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1e293b;
  text-align: left;
}

.legacy-card p {
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.btn-readmore {
  background-color: #0ca654;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  padding: 11px 34px;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(12, 166, 84, 0.25);
  transition: var(--transition);
}

.btn-readmore:hover {
  background-color: #0b954b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(12, 166, 84, 0.35);
}

/* About Us Layout Home */
.about-section {
  background-color: var(--bg-white);
  padding: 80px 0;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: 36px 12px 36px 12px;
  overflow: hidden;
  box-shadow: none;
}

.about-image-wrapper .about-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.about-image-overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48%;
  background: linear-gradient(to top, rgba(12, 166, 84, 0.95) 0%, rgba(12, 166, 84, 0.75) 50%, rgba(12, 166, 84, 0) 100%);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  box-sizing: border-box;
}

.about-image-overlay-card h4 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1;
}

.about-image-overlay-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.about-content h2 {
  font-size: 38px;
  line-height: 1.25;
  color: #1e293b;
  margin-bottom: 18px;
  font-weight: 300; /* Light elegant typography matching Image 2 */
  letter-spacing: -0.5px;
}

.about-content p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 680px;
}

.about-pills-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.about-logo-pill {
  width: 68px;
  height: 68px;
  background-color: #d1fae5; /* Mint green circle matching Image 2 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-logo-pill img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.about-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 14px;
}

.about-badge {
  background-color: #f3f4f6;
  padding: 10px 22px;
  border-radius: 50px; /* Oval pill shape matching Image 2 */
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border: none;
  color: #334155;
  transition: all 0.2s ease;
}

.about-badge:hover {
  background-color: #e5e7eb;
  color: #0f172a;
}

.about-capsule-card {
  width: 140px;
  height: 155px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  margin-left: auto;
}

.about-capsule-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Our Products Section Home */
.products-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.section-main-title {
  font-size: 38px;
  font-weight: 300;
  color: #1e293b;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.products-banner-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 28px;
  background-image: url('../img/happy_family.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.products-banner-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.products-floating-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.products-inner-image {
  width: 100%;
  height: 270px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.products-inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-list-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.product-item-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  background-color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-item-row:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.product-item-row:hover {
  transform: translateX(4px);
}

.product-item-row:hover h4 {
  color: var(--accent-green);
}

.product-item-img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item-info {
  flex-grow: 1;
}

.product-item-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}

.product-item-info h4 span {
  color: #0ca654;
  font-size: 14px;
}

.product-item-info p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* Quality Control Section Home */
.quality-section {
  background-color: var(--bg-white);
  padding: 80px 0;
}

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

.quality-image-wrapper {
  position: relative;
  border-radius: 36px 12px 36px 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.quality-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.quality-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48%;
  background: linear-gradient(to top, rgba(12, 166, 84, 0.95) 0%, rgba(12, 166, 84, 0.75) 50%, rgba(12, 166, 84, 0) 100%);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  box-sizing: border-box;
}

.quality-image-overlay h4 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1;
}

.quality-image-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.quality-content h2 {
  font-size: 38px;
  font-weight: 300;
  color: #1e293b;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.quality-content p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 680px;
}

.quality-badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.quality-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.quality-badge-icon {
  width: 66px;
  height: 66px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.quality-badge-item:hover .quality-badge-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(12, 166, 84, 0.2);
}

.quality-badge-item span {
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  line-height: 1.35;
}
  transition: var(--transition);
}

.quality-badge-item:hover .quality-badge-icon {
  background-color: var(--accent-green);
  color: var(--text-light);
  transform: rotate(360deg);
}

.quality-badge-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Partner Section Home */
.partner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  color: var(--text-light);
}

.partner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 27, 24, 0.9) 0%, rgba(46, 77, 56, 0.75) 100%);
  z-index: 1;
}

.partner-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.partner-container h2 {
  font-size: 38px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.partner-container p {
  font-size: 16px;
  color: var(--text-light-muted);
  margin-bottom: 32px;
}

.partner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Testimonials Section Home */
.testimonials-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.testimonials-nav-controls {
  display: flex;
  gap: 12px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-nav-btn:hover {
  background-color: #0ca654;
  color: #ffffff;
  border-color: #0ca654;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 166, 84, 0.25);
}

.testimonials-fixed-layout {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
}

.testimonial-center-column {
  height: 330px;
}

.testimonial-side-column {
  height: 330px;
  position: relative;
}

.testimonial-quote-slot {
  height: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: #0ca654;
  width: 28px;
  border-radius: 10px;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 36px 28px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 15px;
  left: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(12, 166, 84, 0.1);
  line-height: 1;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--primary-green-light);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-info p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Video Testimonial Card */
.testimonial-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.testimonial-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  z-index: 1;
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-green);
  z-index: 2;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.testimonial-video-card:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--accent-green);
  color: var(--text-light);
}

.video-card-user-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--text-light);
}

.video-card-user-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}

.video-card-user-info p {
  font-size: 12px;
  color: var(--text-light-muted);
}

/* Light Green Testimonial Card */
.testimonial-card.light-green-bg {
  background-color: #e6f6ed;
  border-color: #cdecd9;
}

.testimonial-card.light-green-bg::before {
  color: rgba(12, 166, 84, 0.15);
}

/* Footer Section */
.footer-container-outer {
  padding: 0 24px 40px 24px;
  background-color: var(--bg-light);
}

.footer-card {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.footer-nav-link span {
  color: var(--accent-green);
}

.footer-nav-link:hover {
  color: var(--accent-green);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.footer-info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-info-label {
  font-size: 13px;
  color: var(--accent-green);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-info-value {
  font-size: 14px;
  color: var(--text-light-muted);
}

.footer-info-link {
  color: var(--text-light-muted);
  transition: var(--transition);
}

.footer-info-link:hover {
  color: var(--text-light);
}

.footer-copyright-row {
  margin-top: auto;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-factory-graphic {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.btn-whatsapp {
  background-color: #25d366 !important;
  color: #ffffff !important;
  border-radius: 30px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background-color: #20bd5a !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-img-floating {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-img-floating:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

/* Page Titles for interior pages */
.interior-hero {
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(46, 175, 112, 0.5) 0%, rgba(15, 90, 50, 0.88) 55%, rgba(7, 52, 28, 0.98) 100%), url(../img/hero/backgrounds/bg-1.webp) no-repeat center top;
  background-size: cover;
  padding: 135px 0 60px 0;
  color: var(--text-light);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.interior-hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
}

.breadcrumbs a:hover {
  color: #25d366;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.4);
}

/* Interior: About Page */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.about-stat-item {
  display: flex;
  gap: 16px;
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.about-stat-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 22px;
  flex-shrink: 0;
}

.about-stat-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-stat-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Skills/Statistics progress bars */
.skills-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-progress-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.skill-bar-track {
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background-color: var(--accent-green);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* Interior: Quality Page */
.quality-equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.quality-equipment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.quality-equipment-item span {
  color: var(--accent-green);
}

/* Interior: Erva Way Page */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-green);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  font-weight: 700;
  color: rgba(12, 166, 84, 0.15);
  font-family: var(--font-heading);
}

.process-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-right: 40px;
  color: var(--text-dark);
}

.process-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Interior: Product Page Layout */
.product-page-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.product-sidebar-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  padding: 24px;
}

.product-sidebar-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.product-sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-sidebar-link {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.product-sidebar-link.active,
.product-sidebar-link:hover {
  background-color: var(--primary-green-light);
  color: var(--accent-green);
}

.product-content-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-display-frame {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: none;
  border: 1px solid var(--border-color);
  padding: 24px;
  overflow: hidden;
}

.product-display-frame img {
  width: 100%;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.product-display-frame img:hover {
  transform: scale(1.02);
}

/* Interior: Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
}

.contact-icon-circle {
  width: 56px;
  height: 56px;
  background-color: var(--primary-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 22px;
  margin: 0 auto 20px auto;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.map-container-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.map-container-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-full {
  grid-column: span 2;
}

.contact-input-field {
  width: 100%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
}

.contact-input-field:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(12, 166, 84, 0.15);
}

textarea.contact-input-field {
  min-height: 140px;
  resize: vertical;
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .products-grid,
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .testimonials-fixed-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-center-column {
    height: 300px;
    order: -1;
  }

  .testimonial-side-column {
    height: auto;
    min-height: 220px;
  }

  .products-floating-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    margin: 0 16px;
  }

  .products-banner-wrapper {
    height: auto;
    min-height: 440px;
    padding: 30px 16px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero {
    height: auto;
    padding-bottom: 40px;
  }

  .hero-bowls-outer {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 0;
    overflow: visible;
  }
  
  .hero-bowls-wrapper {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .hero-bowls-wrapper img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  
  .hero-badge-card {
    position: static;
    margin-bottom: 0;
    transform: none;
  }
  
  .legacy-section {
    padding: 100px 0 60px 0;
  }
  
  .legacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quality-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero-content h1,
  .hero-slide h1 {
    font-size: 30px;
  }

  .section-main-title {
    font-size: 26px !important;
  }
  
  .hero-bowls-outer {
    margin-bottom: 0;
  }
  
  .legacy-section {
    padding: 80px 0 60px 0;
  }
  
  .legacy-grid {
    grid-template-columns: 1fr;
  }
  
  .quality-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .testimonials-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .product-page-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-card {
    padding: 24px;
  }
  
  .about-stats-grid,
  .quality-equipment-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-img-floating {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
}

/* Mobile Sidebar Menu (Active State) */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: var(--transition);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-close {
  align-self: flex-end;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
}

.mobile-drawer-link:hover {
  color: var(--accent-green);
}
