/* ============================================================
   SHAKTI BORAX — 1990s Indian Industrial Aesthetic
   Deep bottle green · Amber/ochre accents · Sturdy serifs
   ============================================================ */

:root {
  --black: #0c1410;
  --dark: #111a14;
  --green-900: #1a3325;
  --green-800: #1f3d2c;
  --green-700: #254d35;
  --green-600: #2d6040;
  --green-500: #3a7a52;
  --amber: #b87d12;
  --amber-light: #d4971e;
  --amber-pale: #f0c96a;
  --cream: #f4efe6;
  --cream-dark: #ebe5d8;
  --white: #ffffff;
  --text-body: #3d4a42;
  --text-muted: #6b7c6f;
  --border: rgba(255, 255, 255, 0.08);
  --border-lt: #d8d0c4;
  --shadow: 0 4px 24px rgba(12, 20, 16, 0.12);
  --shadow-lg: 0 12px 40px rgba(12, 20, 16, 0.18);
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--text-body);
  background: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
strong {
  font-weight: 600;
}

/* ============================================================
   ANIMATIONS (matching Bolt site)
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale3d(0.96, 0.96, 1);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-up {
  animation: fadeInUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-play-state: paused;
  will-change: transform, opacity;
}
.anim-scale {
  animation: scaleIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-play-state: paused;
  will-change: transform, opacity;
}
.anim-slide {
  animation: slideIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-play-state: paused;
  will-change: transform, opacity;
}
.anim-up.in-view,
.anim-scale.in-view,
.anim-slide.in-view {
  animation-play-state: running;
}
.d100 {
  animation-delay: 80ms;
}
.d200 {
  animation-delay: 160ms;
}
.d300 {
  animation-delay: 240ms;
}
.d400 {
  animation-delay: 320ms;
}
.d500 {
  animation-delay: 400ms;
}

.card-hover {
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.2);
}

.feature-card {
  transition:
    background-color var(--transition),
    transform var(--transition);
}
.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
}
.feature-icon {
  transition: transform var(--transition);
}

.icon-container {
  transition:
    transform var(--transition),
    background-color var(--transition);
}
.card-hover:hover .icon-container {
  transform: scale(1.05);
}

/* ============================================================
   HEADER (fixed, dark — matches Bolt)
   ============================================================ */
.site-header {
  background: rgba(12, 20, 16, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(184, 125, 18, 0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-brand img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--amber-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
}
.header-nav .nav-iso img {
  height: 52px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.header-nav .nav-iso img:hover {
  opacity: 1;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger svg {
  width: 24px;
  height: 24px;
}

/* ============================================================
   MOBILE NAV (full-screen overlay — matches Bolt exactly)
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  height: 100vh;
  flex-direction: column;
  animation: mobileNavIn 0.3s ease forwards;
}
.mobile-nav.open {
  display: flex;
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-top .header-brand img {
  height: 48px;
  width: 48px;
}

.mobile-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
}
.mobile-nav-links {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-links a {
  display: block;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: var(--white);
  transition: background var(--transition);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-iso {
  padding: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav-iso a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.mobile-nav-iso a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.mobile-nav-iso img {
  height: 32px;
  width: auto;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

.section-py {
  padding: 3rem 0;
}
@media (min-width: 640px) {
  .section-py {
    padding: 4rem 0;
  }
}
@media (min-width: 768px) {
  .section-py {
    padding: 6rem 0;
  }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
}

.amber-bar {
  display: block;
  height: 4px;
  width: 80px;
  background: var(--amber);
  margin: 1.5rem 0;
  border-radius: 2px;
}
.amber-bar-sm {
  display: block;
  height: 3px;
  width: 60px;
  background: var(--amber);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.amber-bar-center {
  display: block;
  height: 4px;
  width: 80px;
  background: var(--amber);
  margin: 1.5rem auto 2rem;
  border-radius: 2px;
}

.heading-xl {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}
.heading-lg {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.heading-md {
  font-family: "Libre Baskerville", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ============================================================
   HERO (full-screen with bg + overlay — matches Bolt)
   ============================================================ */
.hero {
  position: relative;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 20, 16, 0.92) 0%,
    rgba(12, 20, 16, 0.55) 50%,
    rgba(12, 20, 16, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 3rem;
  width: 100%;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.hero-pill {
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  transition: background var(--transition);
}
.hero-pill:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--cream);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.btn-primary svg {
  transition: transform var(--transition);
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(12, 20, 16, 0.5);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-ghost:hover {
  background: rgba(12, 20, 16, 0.7);
  transform: translateY(-2px);
}
.btn-ghost svg {
  transition: transform var(--transition);
}
.btn-ghost:hover svg {
  transform: translateX(3px);
}

/* Hero stats card (right column) */
.hero-stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.stat-box {
  background: rgba(12, 20, 16, 0.3);
  border-radius: 8px;
  padding: 0.85rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform var(--transition);
}
.stat-box:hover {
  transform: translateY(-2px);
}
.stat-num {
  font-family: "Libre Baskerville", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.3rem;
}

/* ============================================================
   ABOUT SECTION (home) — white/light bg
   ============================================================ */
.about-section {
  position: relative;
  overflow: hidden;
}
.about-section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.about-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    rgba(255, 255, 255, 0.97) 100%
  );
}
.about-section-content {
  position: relative;
}

.about-feature-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 1px solid var(--border-lt);
}
.about-icon {
  background: rgba(26, 51, 37, 0.08);
  border-radius: 8px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.about-icon svg {
  color: var(--green-600);
}

/* ============================================================
   FEATURES SECTION — dark green bg (replaces blue-900/800)
   ============================================================ */
.features-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-800) 100%
  );
  color: var(--white);
}
.features-section-tex {
  position: absolute;
  inset: 0;
  background-image: 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.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.feature-card-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--transition),
    transform var(--transition);
}
.feature-card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.feature-card-dark:hover .f-icon {
  transform: scale(1.1);
}
.f-icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 125, 18, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition);
}
.f-icon svg {
  color: var(--amber-light);
}
.feature-card-dark h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.feature-card-dark p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}

.features-text h2 {
  color: var(--white);
}
.features-text .amber-bar {
  margin-top: 1.5rem;
}
.features-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============================================================
   GLOBAL PRESENCE SECTION — light
   ============================================================ */
.presence-section {
  background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
}

.presence-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--border-lt);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.presence-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.presence-icon {
  background: rgba(26, 51, 37, 0.08);
  border-radius: 8px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.presence-icon svg {
  color: var(--green-600);
}
.presence-card h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.presence-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   DARK PAGE HERO (About/Products/Contact top section)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: calc(480px + 64px);
  padding: 6rem 0 3rem;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--green-900) 50%,
    var(--dark) 100%
  );
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}

.page-hero h1 {
  color: var(--white);
}

/* Info panel (right column on page heroes) */
.info-panel {
  background: rgba(12, 20, 16, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.info-row:last-child {
  border-bottom: none;
}
.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 125, 18, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  color: var(--amber-light);
}
.info-text-main {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}
.info-text-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1px;
}

/* Timeline (About page hero) */
.timeline-panel {
  background: rgba(12, 20, 16, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.timeline-item:last-child {
  border-bottom: none;
}
.tl-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 125, 18, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tl-icon svg {
  color: var(--amber-light);
}
.tl-year {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.tl-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1px;
}

/* ============================================================
   ABOUT PAGE — body sections
   ============================================================ */
.about-body-section {
  position: relative;
  overflow: hidden;
}
.about-body-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.about-body-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    rgba(255, 255, 255, 0.97) 100%
  );
}
.about-body-content {
  position: relative;
}

.journey-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-800) 100%
  );
  color: var(--white);
}
.journey-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background var(--transition),
    transform var(--transition);
}
.journey-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.jc-icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 125, 18, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.jc-icon svg {
  color: var(--amber-light);
}
.journey-card h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.journey-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Why Choose Us — 3-column with center image */
.why-section {
  background: var(--white);
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-lt);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  background: rgba(26, 51, 37, 0.08);
  border-radius: 8px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}
.why-card:hover .why-icon {
  background: rgba(26, 51, 37, 0.14);
}
.why-icon svg {
  color: var(--green-600);
}
.why-card h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-center-img {
  position: relative;
  height: 100%;
  min-height: 400px;
  max-height: 580px;
}
.why-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.why-center-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-center-badge-inner {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  max-width: 240px;
  margin: 0 1rem;
  text-align: center;
}
.why-center-badge-inner h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.why-center-badge-inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  height: 100%;
  border: 1px solid var(--border-lt);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-img-wrap {
  background: linear-gradient(to br, var(--cream) 0%, var(--white) 100%);
  padding: 1.5rem;
  position: relative;
}
.product-img {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}
.product-img img {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--transition);
}

.product-body {
  flex: 1;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-block {
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.85rem;
}
.product-block-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.product-block-head svg {
  color: var(--green-600);
}
.product-block-head span {
  font-family: "Libre Baskerville", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.app-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.app-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.app-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}

.specs-grid {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.spec-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  background: var(--white);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
}
.spec-key {
  color: var(--text-muted);
  font-weight: 500;
}
.spec-val {
  color: var(--dark);
}

.product-docs {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.85rem;
}
.doc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  background: var(--green-600);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.87rem;
  font-weight: 600;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}
.doc-btn:hover {
  background: var(--green-700);
}
.doc-btn svg {
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
}

.location-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--border-lt);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.lc-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.lc-icon {
  width: 64px;
  height: 64px;
  background: rgba(26, 51, 37, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lc-icon svg {
  color: var(--green-600);
}
.lc-title {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.lc-region {
  color: var(--green-600);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 2px;
}
.lc-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.lc-body .meta {
  color: var(--text-muted);
  font-size: 0.87rem;
  margin-top: 0.5rem;
}

.director-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--border-lt);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.director-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dc-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.dc-icon {
  width: 64px;
  height: 64px;
  background: rgba(26, 51, 37, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dc-icon svg {
  color: var(--green-600);
}
.dc-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.dc-title {
  color: var(--green-600);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 2px;
}
.dc-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.dc-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.dc-link:hover {
  color: var(--green-600);
}
.dc-link svg {
  flex-shrink: 0;
}

/* ============================================================
   FOOTER (4-column — matches Bolt exactly)
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer-brand-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.footer-brand-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col-title {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Menu 2-column grid */
.footer-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.footer-menu-grid a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-menu-grid a:hover,
.footer-menu-grid a.active {
  color: var(--white);
}

/* Office */
.footer-office-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.footer-office-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--amber);
}
.footer-office-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-office-item a:hover {
  color: var(--amber-light);
}

/* Social */
.social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}
.social-btn svg {
  width: 16px;
  height: 16px;
}

/* WhatsApp green on hover */
.social-btn.wa:hover {
  background: #25d366;
  border-color: #25d366;
}
.social-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}
.social-btn.li:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   SECTION IMAGES
   ============================================================ */
.section-img {
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  display: block;
}
.section-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(
    to top,
    rgba(12, 20, 16, 0.2) 0%,
    transparent 60%
  );
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: products 3 → 2 columns */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

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

  /* 12-col grid → single column */
  .grid-12 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
    padding-bottom: 2rem;
  }
  .hero-content {
    padding-top: 5.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Multi-column inline grids → single column */
  .products-grid,
  .why-grid,
  .presence-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .about-feature-grid,
  .feature-cards-grid,
  .journey-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Fix inline-set fixed heights on section images */
  .section-img {
    height: auto !important;
    max-height: 380px;
  }

  /* Cap center image in Why Choose section */
  .why-center-img {
    min-height: 260px;
    max-height: 360px;
    height: 360px;
  }

  .product-img {
    height: 260px;
  }

  /* Shrink brand name so it stays on one line — applies to both header and mobile nav */
  .site-header .header-brand,
  .mobile-nav .header-brand {
    flex: 1;
    min-width: 0;
    gap: 0.6rem;
  }
  .site-header .brand-text,
  .mobile-nav .brand-text {
    min-width: 0;
    overflow: hidden;
  }
  .site-header .brand-name,
  .mobile-nav .brand-name {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-pills {
    gap: 0.4rem;
  }
  .hero-pill {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }
  .heading-xl {
    font-size: 1.6rem;
  }
  /* brand text stays visible — size handled below */

  /* Single product card per row on small phones */
  .product-img {
    height: 220px;
  }

  /* Page hero panels stack more comfortably */
  .info-panel,
  .timeline-panel {
    padding: 1rem;
  }
}
