/* =============================================
   IndiWord Crop Care - Custom CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=Lato:wght@300;400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --site-max-width: 1280px; /* Tailwind 7xl */
  --green-primary: #0a4c66;
  --green-dark: #08384d;
  --green-light: #9fd0e3;
  --green-pale: #eef6fa;
  --gray-dark: #3c3c3c;
  --gray-mid: #555;
  --gray-light: #f4f4f4;
  --white: #ffffff;
  --black: #111111;
  --gold: #c9a84c;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: var(--gray-dark);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 0.6rem;
}

.text-center {
  text-align: center;
}

.green {
  color: inherit;
}

/* ---- Navbar ---- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 76, 102, 0.15);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

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

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-dark);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-primary);
  background: var(--green-pale);
}

.nav-cta {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  width: 20px;
  background: #1f3550;
  border-radius: 2px;
  transition: background 0.2s ease;
}

#mobileMenu {
  display: none;
}

#mobileMenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open #mobileMenu {
  display: block !important;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 1rem 1.5rem;
  overflow-y: auto;
}

body.mobile-menu-open #mobileMenu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ---- Language Selector / Translate Modal ---- */
.language-trigger-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  background: #fff;
  color: var(--gray-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 4px;
}

.language-trigger-btn:hover {
  color: var(--green-primary);
  border-color: var(--green-primary);
}

.nav-language-item {
  display: inline-flex;
  align-items: center;
}

.language-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 31, 41, 0.45);
  z-index: 9999;
  padding: 1rem;
}

.language-modal.is-open {
  display: flex;
}

.language-modal-card {
  width: 100%;
  max-width: 700px;
  background: #f7f4eb;
  border: 1px solid #ded8ca;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  padding: 1.25rem 1.5rem 1.4rem;
}

.language-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid #ddd6c7;
  padding-bottom: 0.85rem;
}

.language-modal-head h3 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.language-modal-head h3 i {
  font-size: 2rem;
  color: var(--green-primary);
}

.language-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: #8a8a8a;
  font-size: 1.2rem;
}

.language-modal-close:hover {
  color: var(--green-primary);
  background: #e8f2f6;
}

.language-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.language-option-btn {
  border: 1px solid #c8c8c8;
  border-radius: 9px;
  padding: 0.65rem 1rem;
  background: #fff;
  color: #26403f;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  min-width: 150px;
}

.language-option-btn:hover,
.language-option-btn.is-active {
  border-color: var(--green-primary);
  color: #ffffff;
  background: var(--green-primary);
}

.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-text-highlight {
  display: none !important;
}

.skiptranslate {
  display: none !important;
}

html,
body {
  top: 0 !important;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  /* min-height: 88vh; */
  min-height: calc(100vh - 88px - 45px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #062a3a 0%, #08384d 40%, #0a4c66 70%, #3a6f86 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-blob {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(10, 76, 102, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-blob-2 {
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: 0.78rem;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title .accent {
  color: var(--green-light);
  text-shadow: 0 2px 10px rgba(6, 42, 58, 0.35);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-img-wrapper::after {
  content: 'Science For Better Farming';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2rem 1rem 1rem;
  text-align: center;
}

.hero-floating {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-md);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-floating.left {
  left: -30px;
  top: 30%;
}

.hero-floating.right {
  right: -30px;
  bottom: 25%;
}

.hero-floating .icon {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.hero-floating .icon i {
  line-height: 1;
}

.hero-floating.right .icon {
  color: var(--gold);
}

.hero-floating.left .icon {
  color: #0a552b;
}

.hero-floating .val {
  color: var(--green-primary);
  font-size: 1rem;
}

/* ---- Marquee Banner ---- */
.marquee-section {
  background: var(--green-primary);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-item .marquee-icon {
  font-size: 0.74rem;
  width: 12px;
  text-align: center;
  opacity: 0.95;
}

.marquee-item .icon-seedling { color: #7ed957; }
.marquee-item .icon-droplet { color: #5ac8fa; }
.marquee-item .icon-leaf { color: #6ddf6a; }
.marquee-item .icon-lab { color: #9cc5ff; }
.marquee-item .icon-water { color: #39b7ff; }
.marquee-item .icon-bolt { color: #ffd43b; }
.marquee-item .icon-wheat { color: #f6c65b; }
.marquee-item .icon-vial { color: #c6a8ff; }

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---- Categories Section ---- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-light);
}

.container {
  max-width: var(--site-max-width) !important;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 72px;
  height: 72px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--green-primary);
  font-size: 1.75rem;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--green-primary);
  color: var(--white);
}

.category-icon i {
  display: inline-block;
  line-height: 1;
}

/* Colorize uploaded icon images using CSS filter */
/* Converts black icon to theme color (#0a4c66) */
.category-icon img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(60%) saturate(600%) hue-rotate(165deg) brightness(80%);
  transition: filter var(--transition);
}

/* On hover: switch icon image to white */
.category-card:hover .category-icon img {
  filter: brightness(0) invert(1);
}

.category-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-desc {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.category-count {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 1px;
}

/* ---- Products Page ---- */
.products-hero {
  background:
    linear-gradient(rgba(6, 42, 58, 0.65), rgba(10, 76, 102, 0.65)),
    url('images/hero-bg/banner-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0 4rem;
  text-align: center;
}

.products-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 0.8rem;
}

.products-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.filter-bar {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
  position: sticky;
  top: 89px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.filter-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-toggle {
  display: none;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: white;
  color: var(--gray-dark);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  padding: 3rem 0;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-primary);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--gray-light);
}

.product-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--green-pale), #d7e9f2);
}

.product-body {
  padding: 1.4rem;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-dark);
  margin-bottom: 0.25rem;
}

.product-subtitle {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-card .product-footer {
  display: none;
}

/* ---- Features / Why Us ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 0.8rem;
}

.feature-item {
  background: var(--white);
  border: 1px solid #dce8ef;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 1.8rem 1.25rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 76, 102, 0.45);
}

.feature-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #f7fcff, #e4f0f6 70%);
  border: 1px solid #cfe1ea;
  color: var(--green-primary);
  font-size: 1.5rem;
  line-height: 1;
}

.feature-icon i {
  display: inline-block;
  line-height: 1;
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  min-height: 2.4em;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.65;
  max-width: 34ch;
  margin: 0 auto;
}

/* ---- About Page ---- */
.about-hero {
  background:
    linear-gradient(rgba(6, 42, 58, 0.65), rgba(10, 76, 102, 0.65)),
    url('images/hero-bg/banner-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0 4rem;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story .visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-pale);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

.about-story .content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-story .content p {
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats-section {
  background: #f5f9fc;
  border-top: 1px solid #dce8ef;
  border-bottom: 1px solid #dce8ef;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.about-stat-card {
  background: white;
  border: 1px solid #d8e6ee;
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.about-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.1;
}

.about-stat-label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4c6070;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-primary);
}

.value-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-pale);
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.value-card .icon i {
  line-height: 1;
}

.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.87rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.team-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--green-primary);
  font-weight: 600;
}

/* ---- Contact Page ---- */
.contact-hero {
  background:
    linear-gradient(rgba(6, 42, 58, 0.65), rgba(10, 76, 102, 0.65)),
    url('images/hero-bg/banner-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0 4rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-body {
  flex: 1;
  min-width: 0;
}

.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--green-primary);
}

.contact-item .ci-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.contact-item .ci-value {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

.contact-item .ci-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item .ci-value a:hover {
  color: var(--green-primary);
}

.contact-follow {
  margin-top: 2rem;
}

.contact-follow-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-social-row a {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-primary);
  transition: var(--transition);
}

.contact-social-row a:hover {
  background: var(--green-primary);
  color: white;
}

.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  color: var(--gray-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-dark);
  background: var(--gray-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(10, 76, 102, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  width: 100%;
  background: var(--green-primary);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: var(--green-dark);
}

.contact-breadcrumb .container {
  flex-wrap: wrap;
}

/* ---- Footer ---- */
.footer {
  background: #062a3a;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
  height: 62px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--green-primary);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-col ul li a i {
  margin-right: 0.45rem;
  width: 0.95rem;
  text-align: center;
}

.footer-col ul li a:hover {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
  color: var(--green-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.4px;
}

.footer-tagline i {
  margin-left: 0.2rem;
  font-size: 0.8em;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 0.8rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---- Testimonials ---- */
.testimonial-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
}

.testimonial-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(6, 42, 58, 0.9);
  color: #eef8ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(6, 42, 58, 0.25);
}

.testimonial-nav-btn i {
  font-size: 0.9rem;
}

.testimonial-nav-btn:hover {
  background: rgba(10, 76, 102, 0.98);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.testimonial-nav-btn:focus-visible {
  outline: 2px solid rgba(159, 208, 227, 0.85);
  outline-offset: 2px;
}

.testimonial-nav-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.18);
}

.testimonial-nav-btn:disabled:hover {
  background: rgba(6, 42, 58, 0.9);
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  position: relative;
}

.testimonial-card::before {
  content: none;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.author-loc {
  font-size: 0.78rem;
  color: var(--green-primary);
}

/* ---- Stars ---- */
.stars {
  color: #f5a623;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0.8rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    gap: 1rem;
  }

  .testimonials-grid .testimonial-card {
    flex-basis: calc((100% - 1rem) / 2);
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 3.6rem 0 2.8rem;
  }

  .contact-hero h1 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
  }

  .contact-form-box {
    padding: 1rem;
    border-radius: 14px;
  }

  .contact-form-box h3 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .form-group {
    margin-bottom: 0.7rem;
  }

  .form-group label {
    font-size: 0.72rem;
    margin-bottom: 0.32rem;
    letter-spacing: 0.45px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.62rem 0.78rem;
    font-size: 0.86rem;
    border-radius: 9px;
  }

  .form-group textarea {
    min-height: 105px;
  }

  .btn-submit {
    font-size: 0.88rem;
    padding: 0.78rem;
  }

  .contact-item {
    gap: 0.75rem;
  }

  .contact-item .ci-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .contact-item .ci-value {
    font-size: 0.88rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .whatsapp-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.7rem !important;
    padding: 1rem !important;
  }

  .whatsapp-cta-btn {
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
  }

  .contact-map-card {
    height: auto !important;
    min-height: 260px;
    padding: 1.1rem;
  }

  .faq-list {
    margin-top: 1.2rem !important;
  }

  .faq-item {
    padding: 1rem 1rem !important;
  }

  .faq-item > div:first-child {
    align-items: flex-start !important;
    gap: 0.6rem;
  }

  .faq-item > div:first-child span:first-child {
    font-size: 0.88rem;
    line-height: 1.4;
    padding-right: 0.25rem;
  }

  .faq-item .faq-icon {
    line-height: 1;
    margin-top: 0.05rem;
  }

  .section {
    padding: 3rem 0;
  }

  .filter-bar {
    padding: 0.75rem 0;
  }

  .filter-toggle {
    width: min(320px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.78rem 1rem;
    border: 1px solid rgba(10, 76, 102, 0.18);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
    color: #14394d;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(6, 42, 58, 0.12);
    transition: var(--transition);
  }

  .filter-toggle i {
    font-size: 0.78rem;
    color: var(--green-primary);
  }

  .filter-toggle:hover,
  .filter-toggle:focus-visible {
    border-color: rgba(10, 76, 102, 0.35);
    box-shadow: 0 8px 20px rgba(6, 42, 58, 0.18);
    outline: none;
  }

  .filter-bar.mobile-open .filter-toggle {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: #ffffff;
  }

  .filter-bar.mobile-open .filter-toggle i {
    color: #ffffff;
  }

  .filter-inner {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    align-items: stretch;
    margin-top: 0.75rem;
  }

  .filter-bar.mobile-open .filter-inner {
    display: grid;
  }

  .filter-inner > span:first-child {
    grid-column: 1 / -1;
    margin-right: 0 !important;
    margin-bottom: 0.1rem;
  }

  .filter-btn {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    font-size: 0.78rem;
    text-align: center;
  }

  .hero-container {
    padding: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .mission-grid {
    grid-template-columns: 1fr !important;
  }

  .testimonials-grid .testimonial-card {
    flex-basis: 100%;
  }

  .product-specs {
    padding: 1.1rem;
  }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.55rem 0;
  }

  .spec-value {
    text-align: left;
    word-break: break-word;
  }

  .offer-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    padding: 1.4rem !important;
  }

  .offer-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .offer-card > div:first-child {
    margin-bottom: 0 !important;
  }

  .offer-card > div:last-child {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .contact-breadcrumb {
    padding: 0.6rem 0 !important;
  }

  .contact-breadcrumb .container {
    font-size: 0.74rem !important;
  }

  .contact-hero h1 {
    font-size: 1.62rem;
  }

  .contact-form-box {
    padding: 0.85rem;
  }

  .contact-form-box h3 {
    font-size: 0.98rem;
    margin-bottom: 0.85rem;
  }

  .form-group {
    margin-bottom: 0.58rem;
  }

  .form-group label {
    font-size: 0.68rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.56rem 0.68rem;
    font-size: 0.82rem;
  }

  .form-group textarea {
    min-height: 96px;
  }

  .btn-submit {
    font-size: 0.84rem;
    padding: 0.72rem;
  }

  .contact-item .ci-label {
    font-size: 0.72rem;
    letter-spacing: 0.7px;
  }

  .contact-item .ci-value {
    font-size: 0.84rem;
  }

  .faq-item {
    padding: 0.9rem !important;
  }

  .faq-item > div:first-child span:first-child {
    font-size: 0.82rem;
  }

  .offer-card {
    padding: 1.1rem !important;
    border-radius: 14px !important;
  }
}

/* ---- Product Detail Page ---- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
}

.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  padding: 1rem;
  font-size: 6rem;
}

.product-detail-photo {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 410px;
  object-fit: contain;
}

#relatedProducts .product-img {
  object-fit: contain;
  background: #ffffff;
  padding: 0.6rem;
}

.product-detail-content h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
}

.product-detail-content .subtitle {
  color: var(--green-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-detail-content .desc {
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-detail-content .desc p {
  margin-bottom: 0.6rem;
}

.product-specs {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.88rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--gray-mid);
  font-weight: 600;
}

.spec-value {
  font-weight: 700;
  color: var(--gray-dark);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.benefit-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--green-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-primary);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(10, 76, 102, 0.3);
}

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

/* ---- Responsive ---- */
@media (max-width: 1279px) {
  .hero-floating {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .hero-desc {
    max-width: 100%;
  }

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

  .hero-visual {
    margin-top: 2rem;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

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

  .product-detail {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  #mobileMenu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 1rem 1.5rem;
    overflow-y: auto;
  }

  #mobileMenu.is-open {
    display: block !important;
  }

  #mobileMenu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .language-modal-card {
    max-width: 96%;
    padding: 1rem;
  }

  .language-modal-head h3 {
    font-size: 1rem;
  }

  .language-modal-head h3 i {
    font-size: 1.25rem;
  }

  .language-option-btn {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0rem;
    margin-bottom: 0rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    padding: 1.6rem 1.1rem 1.4rem;
  }

  .feature-title {
    min-height: auto;
  }

  .product-detail-content h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .nav-language-item {
    display: none;
  }
}

@media (max-width: 480px) {

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-up {
  animation: fadeInUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ---- Page Tabs (for multi-page SPA) ---- */
.page {
  display: none;
}

.page.active {
  display: block;
}