/* ==========
   Base
   ========== */
:root {
  --bg: #f4f7f3;
  --bg-alt: #ffffff;
  --accent: #2f855a;
  --accent-soft: #e6f5ed;
  --accent-dark: #22543d;
  --text: #1f2933;
  --muted: #6b7280;
  --border: #dde5d6;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 180ms ease-out;
  --transition-med: 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e7f5ec 0, #f4f7f3 32%, #f9fafb 70%);
  color: var(--text);
  line-height: 1.6;
}

/* ==========
   Layout
   ========== */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--light {
  background: transparent;
}

.section--accent {
  background: linear-gradient(135deg, #e6f5ed, #fdfcfb);
}

.section--strip {
  padding: 2.75rem 0;
  background: #101827;
  color: #e5f2ea;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header--left {
  text-align: left;
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
  margin-inline: auto;
}

.body-text {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* ==========
   Header / Nav
   ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(209, 213, 219, 0.35);
  transition: box-shadow var(--transition-med), background var(--transition-med), border-color var(--transition-med);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(209, 213, 219, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #38a169 40%, #22543d 100%);
  box-shadow: 0 10px 24px rgba(34, 84, 61, 0.35);
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* Nav */
.nav {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 2.4rem;
  padding-inline: 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-link--active {
  color: var(--accent-dark);
  background: rgba(46, 160, 92, 0.08);
}

.nav-link--cta {
  background: var(--accent);
  color: #ffffff;
}

.nav-link--cta:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 38px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, 0.7);
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle-line:first-child {
  transform: translateY(2px) rotate(45deg);
}

.nav-open .nav-toggle-line:last-child {
  transform: translateY(-2px) rotate(-45deg);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 115%;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    min-width: 190px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--transition-med), transform var(--transition-med);
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
  }
}

/* ==========
   Hero / Subhero
   ========== */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero--home {
  background-image:
    radial-gradient(circle at top left, rgba(56, 161, 105, 0.3), transparent 55%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(17, 94, 89, 0.78)),
    url("https://images.unsplash.com/photo-1542834369-f10ebf06d3de?auto=format&fit=crop&q=80&w=1600");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.1), transparent 55%);
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.hero-title--small {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 0 1.7rem;
  color: rgba(249, 250, 251, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 700;
}

.hero-stat-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Subhero (About page) */
.subhero {
  position: relative;
  padding-block: 4.5rem;
  color: #fff;
}

.subhero--about {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(56, 161, 105, 0.85)),
    url("https://images.unsplash.com/photo-1618477388954-7852f32655ec?auto=format&fit=crop&q=80&w=1400");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.subhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.3));
}

.subhero-inner {
  position: relative;
  z-index: 1;
}

/* ==========
   Buttons
   ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.4rem;
  padding-block: 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-med), color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-fast), border-color var(--transition-med);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(46, 160, 92, 0.45);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(34, 84, 61, 0.55);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.25);
  color: #e5f2ea;
  border-color: rgba(209, 213, 219, 0.4);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.45);
}

.btn-full {
  width: 100%;
}

/* ==========
   Cards & Grids
   ========== */
.grid {
  display: grid;
  gap: 1.75rem;
}

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

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

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

@media (max-width: 960px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(56, 161, 105, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.card:hover::before {
  opacity: 1;
}

.card--pill {
  padding: 1.4rem 1.5rem;
  border-radius: 18px;
}

.card--product {
  padding: 0;
}

.card-image-wrap {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 260ms ease;
}

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

.card-body {
  padding: 1.15rem 1.25rem 1.3rem;
}

.card-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.card-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* About cards */
.about-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
  border-radius: var(--radius-md);
  background: #f0f7f2;
  padding: 1rem;
}

.about-card-title {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.about-card-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Strip */
.strip {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.strip-item {
  flex: 1 1 160px;
}

.strip-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(229, 231, 235, 0.8);
  margin-bottom: 0.25rem;
}

.strip-text {
  margin: 0;
  font-weight: 500;
}

/* Gallery */
.gallery-grid {
  margin-top: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.8rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Products note */
.products-note {
  margin-top: 2.25rem;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  background: #f0f7f2;
  font-size: 0.9rem;
  color: var(--muted);
}

.products-note a {
  color: var(--accent-dark);
  font-weight: 600;
}

/* Contact */
.contact-grid {
  align-items: flex-start;
  gap: 2.5rem;
}

.card--form {
  padding: 1.5rem 1.7rem 1.7rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.6rem 0.75rem;
  font: inherit;
  resize: vertical;
  outline: none;
  background: #ffffff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(46, 160, 92, 0.3);
  background: #fbfffd;
}

.form-hint {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-info {
  padding-top: 0.5rem;
}

.contact-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-lines p {
  margin: 0.15rem 0;
  font-size: 0.9rem;
}

.contact-lines a {
  color: var(--accent-dark);
  text-decoration: none;
}

.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========
   Footer
   ========== */
.site-footer {
  margin-top: 3rem;
  background: #0f172a;
  color: #e5e7eb;
  padding-top: 2.2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
}

.footer-brand {
  max-width: 360px;
}

.footer-text {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #9ca3af;
}

.footer-columns {
  display: flex;
  gap: 2.5rem;
}

.footer-title {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d1d5db;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-bottom {
  padding: 0.85rem 0 1.4rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #9ca3af;
}

.footer-made {
  opacity: 0.85;
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
  }
  .footer-columns {
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

/* ==========
   Reveal on scroll
   ========== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 520ms cubic-bezier(0.23, 0.8, 0.32, 1),
    transform 520ms cubic-bezier(0.23, 0.8, 0.32, 1);
}

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

/* Hero content initial animation */
.hero-content-animated {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 700ms cubic-bezier(0.23, 0.8, 0.32, 1) 80ms forwards;
}

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

/* ==========
   New hero layout + carousel
   ========== */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem 5rem;
}

.hero-left {
  flex: 1.1;
  min-width: 0;
}

.hero-right {
  flex: 1;
  min-width: 0;
}

.hero-carousel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(15, 23, 42, 0.4);
  height: 380px; /* increased height */
}


.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 600ms ease,
    transform 900ms cubic-bezier(0.16, 0.84, 0.44, 1);
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* carousel controls */
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
}

.hero-carousel-btn--prev {
  left: 10px;
}

.hero-carousel-btn--next {
  right: 10px;
}

.hero-carousel-btn:hover {
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-50%) scale(1.03);
}

/* dots */
.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(243, 244, 246, 0.55);
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, width 160ms ease;
}

.hero-dot.is-active {
  width: 18px;
  background: #22c55e;
  transform: scale(1.05);
}

/* responsive layout */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-carousel {
    width: 100%;
    height: 320px; /* was 260px */
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding-block: 3.2rem 4rem;
  }

  .hero-carousel {
    height: 260px; /* was 220px */
  }
}


/* ==========
   Utilities
   ========== */
.page-home main {
  padding-top: 0;
}

.page-about main,
.page-products main,
.page-gallery main,
.page-contact main {
  padding-top: 1.25rem;
}


/* Comparison section – Why Not Them vs Why Us */
.section--comparison {
  background: linear-gradient(180deg, #f4faf6 0%, #f7fafc 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Layout: two cards side-by-side on desktop, stacked on mobile */
.comparison-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .comparison-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.comparison-block {
  margin-top: 0;
  padding: 2.25rem 2rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 52, 96, 0.06);
}

.comparison-block--highlight {
  border: 1px solid rgba(22, 163, 74, 0.18);
  box-shadow: 0 28px 70px rgba(22, 163, 74, 0.14);
}

.comparison-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}

/* Table styling */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table thead tr {
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  text-align: left;
}

.comparison-table th {
  font-weight: 600;
  color: #111827;
}

.comparison-table td:first-child {
  width: 32%;
  font-weight: 500;
  color: #111827;
}

.comparison-table td:last-child {
  color: #4b5563;
  line-height: 1.5;
}

/* subtle zebra effect */
.comparison-table tbody tr:nth-child(odd) {
  background: #f9fafb;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fdfefe;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .comparison-block {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.7rem 0.75rem;
    font-size: 0.9rem;
  }
}
/* Make the emoji a small badge, not a big text blob */
.comparison-title::first-letter {
  font-size: 1.2rem;
}

/* Table styling */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table thead tr {
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  text-align: left;
}

.comparison-table th {
  font-weight: 600;
  color: #111827;
}

.comparison-table td:first-child {
  width: 32%;
  font-weight: 500;
  color: #111827;
}

.comparison-table td:last-child {
  color: #4b5563;
  line-height: 1.5;
}

/* subtle zebra effect */
.comparison-table tbody tr:nth-child(odd) {
  background: #f9fafb;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fdfefe;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .comparison-block {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  .comparison-title {
    flex-wrap: wrap;
    font-size: 0.98rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.7rem 0.75rem;
    font-size: 0.9rem;
  }
}

.products-category {
  margin-top: 3rem;
}

.products-category-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.products-category-text {
  margin-bottom: 1.75rem;
  color: #6b7280;
  max-width: 640px;
}

/* Product image modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-out;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal__dialog {
  position: relative;
  max-width: min(960px, 92vw);
  max-height: 90vh;
  background: #ffffff;
  border-radius: 20px;
  padding: 0.75rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.4);
}

.image-modal__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  object-fit: contain;
}

.image-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal__close:hover {
  background: rgba(21, 128, 61, 0.95);
}

/* show zoom cursor on product images */
.card--product .card-image {
  cursor: zoom-in;
}

/* Announcement moving strip */
.announcement-bar {
  background: linear-gradient(90deg, #15803d, #16a34a);
  color: #ecfdf3;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  overflow: hidden;
}

.announcement-bar .container {
  overflow: hidden;
}

.announcement-scroll {
  display: inline-flex;
  gap: 4rem;
  white-space: nowrap;
  animation: announcement-marquee 20s linear infinite;
}

.announcement-scroll span {
  display: inline-block;
}

@keyframes announcement-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Clients / prestigious brands section */
.section--clients {
  background: #f9fafb;
}

.client-grid {
  margin-top: 2rem;
}

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

.card-image-wrap--client {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 2rem;
}

.card--client .card-image {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.card-body--client {
  padding-top: 1.25rem;
  padding-bottom: 1.75rem;
}

.card-body--client .card-title {
  margin-bottom: 0.25rem;
}

.card-body--client .card-text {
  color: #6b7280;
  font-size: 0.9rem;
}
/* Clients / prestigious brands section */
.section--clients {
  background: #f9fafb;
}

.client-carousel {
  position: relative;
  margin-top: 2rem;
}

.client-carousel__viewport {
  overflow: hidden;
}

.client-carousel__track {
  display: flex;
  transition: transform 320ms ease-out;
  will-change: transform;
}

/* each slide width: 3 at a time on desktop */
.client-slide {
  flex: 0 0 33.3333%;
  padding: 0 0.75rem;
  box-sizing: border-box;
}

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

.card-image-wrap--client {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 2rem;
}

.card--client .card-image {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.card-body--client {
  padding-top: 1.25rem;
  padding-bottom: 1.75rem;
}

.card-body--client .card-title {
  margin-bottom: 0.25rem;
}

.card-body--client .card-text {
  color: #6b7280;
  font-size: 0.9rem;
}

/* prev / next buttons */
.client-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #111827;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  z-index: 5;
}

.client-carousel__btn--prev {
  left: -0.5rem;
}

.client-carousel__btn--next {
  right: -0.5rem;
}

.client-carousel__btn:hover {
  background: #16a34a;
  color: #f9fafb;
  box-shadow: 0 14px 40px rgba(22, 163, 74, 0.35);
}

/* Responsive: 2 cards on tablets, 1 card on mobile */
@media (max-width: 991px) {
  .client-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 640px) {
  .client-slide {
    flex: 0 0 100%;
  }

  .client-carousel__btn--prev {
    left: 0.25rem;
  }

  .client-carousel__btn--next {
    right: 0.25rem;
  }
}
.form-success {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #065f46;
  background: #ecfdf5;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  display: none;
}

.form-success--visible {
  display: inline-block;
}
