/* ===== DESIGN TOKENS — LIGHT THEME ===== */
:root {
  --green-primary: #16a34a;
  --green-dark: #15803d;
  --green-light: #22c55e;
  --green-xlight: #dcfce7;
  --green-glow: rgba(22, 163, 74, 0.18);
  --gold: #d97706;
  --gold-light: #fbbf24;
  --bg-page: #f8fafc;
  --bg-section-alt: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f0fdf4;
  --border: #e2e8f0;
  --border-hover: #86efac;
  --text-primary: #0f172a;
  --text-secondary: #166534;
  --text-muted: #64748b;
  --text-body: #334155;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 8px 32px rgba(22, 163, 74, 0.2);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  /* bg-light - used in product pages, feature lists, enquiry section */
  --bg-light: #f1f5f9;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
  background: var(--green-primary);
  border-radius: 3px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1536px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 16px var(--green-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
}

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

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

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

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--green-primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BLANK/WHITE EMOJIS ===== */
.emoji-tint {
  display: inline-block;
  filter: grayscale(1) brightness(2) contrast(0.5);
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: 88px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--green-xlight);
  border: 1px solid #86efac;
  color: var(--green-dark);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

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

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: none;
}

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

.nav-logo img {
  height: 80px;
  object-fit: contain;
  transition: var(--transition);
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-link i {
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-primary);
  background: transparent;
}

.nav-item-dropdown {
  position: relative;
}

.mobile-nav-header,
.tile-icon {
  display: none;
}

.desktop-only {
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 2px solid var(--green-primary);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.nav-item-dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
  position: relative;
}

.dropdown-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
  text-transform: none;
  font-weight: 500;
}

.dropdown-menu li:last-child>a {
  border-bottom: none;
}

/* Submenu Fly-out (Desktop) */
.submenu {
  position: absolute;
  left: 100%;
  top: -2px;
  background: white;
  min-width: 260px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--green-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.dropdown-menu li:hover>.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Parent highlight when submenu active */
.dropdown-menu li:hover>a {
  background: var(--green-primary);
  color: white;
}

.dropdown-menu li:hover>a::after {
  color: white;
}

.dropdown-menu li a::after {
  content: '›';
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

/* Hide chevron for items without submenus if desired, or keep as decoration */
.dropdown-menu li:not(.has-submenu)>a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background: var(--green-primary);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1300;
  position: relative;
  /* ensures z-index works */
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url('../assets/prithvi_hero_bg.png') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 45%, rgba(15, 23, 42, 0.2) 100%),
    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'%3E%3Cg fill='%2316a34a' fill-opacity='0.04'%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");
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeSlideDown 0.8s ease forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(22, 197, 94, 0.3), 0 4px 12px rgba(0, 0, 0, 0.6);
  animation: fadeSlideDown 0.8s 0.1s ease forwards;
  opacity: 0;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #4ade80, #fef08a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.4));
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #ffffff;
  max-width: 580px;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: fadeSlideDown 0.8s 0.2s ease forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideDown 0.8s 0.3s ease forwards;
  opacity: 0;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: fadeSlideDown 0.8s 0.4s ease forwards;
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  padding-right: 0;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.stat-suffix {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fcd34d;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-weight: 500;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
  z-index: 1;
  pointer-events: none;
  /* Keep clear of the stats card only on large desktops */
  margin-left: 0;
}

@media (min-width: 1250px) {
  .hero-scroll-indicator {
    margin-left: 260px;
  }
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--green-primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== TICKER ===== */
.ticker-strip {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  overflow: hidden;
  padding: 13px 0;
}

.ticker-inner {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-inner span {
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg-page);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.img-badge-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.year-badge {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-green);
}

.about-img-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.about-img-secondary img {
  border-radius: var(--radius-md);
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-img-secondary img:hover {
  border-color: var(--green-primary);
  transform: scale(1.02);
}

.about-lead {
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.about-text {
  color: var(--text-body);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.feature-pill {
  background: var(--green-xlight);
  border: 1px solid #86efac;
  color: var(--green-dark);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: var(--transition);
}

.feature-pill:hover {
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--bg-section-alt);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  border-radius: 0 0 4px 4px;
}

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

.stats-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  filter: grayscale(1) brightness(2) contrast(0.5);
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-number.stats-text {
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 10px;
  min-height: 3.2rem;
  /* keep all cards equal height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  text-wrap: balance;
}

.stats-line {
  width: 32px;
  height: 3px;
  background: var(--green-primary);
  margin: 0 auto 10px;
  border-radius: 2px;
}

.stats-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== PRODUCTS ===== */
.products-section {
  background: var(--bg-page);
}

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

/* Centre single leftover card on row 2 */
.products-grid .product-last {
  grid-column: 2;
}

/* ===== PRODUCTS SLIDER (HOME) ===== */
.products-slider {
  position: relative;
  margin-top: 18px;
}

.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex !important;
  gap: 24px;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  flex: 0 0 calc((100% - 48px) / 3);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  color: var(--green-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: var(--transition);
  font-size: 1.4rem;
  line-height: 1;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
}

.slider-btn.prev {
  left: -10px;
}

.slider-btn.next {
  right: -10px;
}

.slider-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 26px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-color: transparent;
}

.product-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 163, 74, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card.touch-active .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 20px;
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: #fef3c7;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  border: 1px solid #fde68a;
}

.verify-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1e40af;
  background: #dbeafe;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  border: 1px solid #bfdbfe;
  margin-left: 8px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.product-info p {
  color: var(--text-body);
  font-size: 0.88rem;
}

/* ===== GALLERY SLIDER (HOME) ===== */
.gallery-slider {
  position: relative;
  margin-top: 18px;
}

.gallery-slider .slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-slider .gallery-grid {
  /* slider-track already sets display: flex !important */
  grid-template-rows: none;
  grid-template-columns: none;
}

.gallery-slider .gallery-item {
  height: 300px;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--bg-section-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: white;
  padding: 20px 14px 10px;
  font-size: 0.83rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ===== WHY US ===== */
.why-section {
  background: var(--bg-page);
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
  background: var(--bg-card-hover);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  filter: grayscale(1) brightness(2) contrast(0.5);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-card p {
  color: var(--text-body);
  font-size: 0.88rem;
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--bg-section-alt);
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.process-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
  background: var(--bg-card-hover);
}

.process-arrow {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 1.4rem;
  color: var(--green-primary);
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(22, 163, 74, 0.15);
  line-height: 1;
  margin-bottom: 10px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.step-content p {
  font-size: 0.83rem;
  color: var(--text-body);
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--bg-page);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
  background: var(--bg-card-hover);
}

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  filter: grayscale(1) brightness(2) contrast(0.5);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-card p {
  color: var(--text-body);
  font-size: 0.88rem;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

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

.phone-flag {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

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

.closed {
  color: var(--gold);
  font-weight: 600;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  background: #f0fdf4;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-success {
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
  background: var(--green-xlight);
  padding: 10px;
  border-radius: var(--radius-sm);
}

.contact-link {
  color: var(--green-dark);
  font-weight: 500;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--green-primary);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  padding-top: 60px;
}

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

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #f1f5f9;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 50px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-readmore {
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-readmore:hover {
  color: #4ade80;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-flag {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.footer-contact-link {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--green-light);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #94a3b8;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours-row:last-of-type {
  border-bottom: none;
}

.footer-closed {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: white;
  transition: var(--transition);
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-fb {
  background: #1877f2;
}

.social-tw {
  background: #1da1f2;
}

.social-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-gp {
  background: #EA4335;
}

.social-li {
  background: #0a66c2;
}

.footer-bottom {
  background: #0a0f1e;
  padding: 18px 0;
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.83rem;
  margin-bottom: 4px;
}

.footer-bottom .footer-attribution {
  color: #475569;
  font-size: 0.75rem;
  margin-top: 6px;
}

.footer-bottom .footer-attribution a {
  color: var(--green-light);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom .footer-attribution a:hover {
  color: #4ade80;
  text-decoration: underline;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-green);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ===== FLOATING QUOTE BUTTON ===== */
.float-quote-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--green-primary), var(--green-dark));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 20px 12px;
  border: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  z-index: 997;
  box-shadow: -3px 0 18px rgba(22, 163, 74, 0.3);
  transition: var(--transition);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.float-quote-btn:hover {
  background: linear-gradient(180deg, var(--green-dark), #14532d);
  padding-top: 28px;
  box-shadow: -5px 0 24px rgba(22, 163, 74, 0.45);
}

/* ===== QUOTE DRAWER ===== */
.quote-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

.quote-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100vw);
  background: var(--bg-card);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.quote-drawer.open {
  transform: translateX(0);
}

.quote-drawer-header {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  padding: 28px 28px 20px;
  flex-shrink: 0;
}

.quote-drawer-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.quote-drawer-header p {
  font-size: 0.88rem;
  opacity: 0.85;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.quote-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
}

.quote-drawer-body .form-group {
  margin-bottom: 16px;
}

.quote-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.quote-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.quote-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.quote-success p {
  color: var(--text-body);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ===== REVIEWS / TESTIMONIALS ===== */
.reviews-section {
  background: var(--bg-section-alt);
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
}

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

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-xlight), #fff);
  border: 1px solid #86efac;
  color: var(--green-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}

.review-name {
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

.review-role {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2px;
}

.review-rating {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.review-text {
  color: var(--text-body);
  font-size: 0.92rem;
}

.section-cta-center {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--green-primary);
}

.faq-question i {
  color: var(--green-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  background: #fafafa;
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-images {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

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

  /* Reset 5th card override — let it flow naturally at 2 cols */
  .products-grid .product-last {
    grid-column: auto;
  }

  .slider-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .process-steps {
    gap: 4px;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  /* === BENTO UI MOBILE MENU === */

  .tile-icon {
    display: none;
  }

  .chevron-desktop {
    display: inline;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1300;
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
  }

  .hamburger .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hamburger.active .bar-1 {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar-2 {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hamburger.active .bar {
    background: #fff;
  }

  /* === FULL-SCREEN NAV === */
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(10, 15, 30, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1200;
    padding: 110px 20px 40px;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: min-content;
    gap: 12px;
    align-content: start;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  /* === HEADER INSIDE MENU === */
  .mobile-nav-header {
    grid-column: 1 / -1;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-header img {
    height: 55px;
    object-fit: contain;
  }

  .mobile-nav-header span {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.15em;
  }

  /* === BENTO TILES === */
  .tile-icon {
    display: block !important;
    font-size: 1.6rem;
    color: var(--green-light);
    margin-bottom: 6px;
  }

  .chevron-desktop {
    display: none !important;
  }

  .bento-tile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9) translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-links.open .bento-tile {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  /* Stagger */
  .nav-links.open .bento-tile:nth-child(2) {
    transition-delay: 0.06s;
  }

  .nav-links.open .bento-tile:nth-child(3) {
    transition-delay: 0.12s;
  }

  .nav-links.open .bento-tile:nth-child(4) {
    transition-delay: 0.18s;
  }

  .nav-links.open .bento-tile:nth-child(5) {
    transition-delay: 0.24s;
  }

  .nav-links.open .bento-tile:nth-child(6) {
    transition-delay: 0.30s;
  }

  .nav-links.open .bento-tile:nth-child(7) {
    transition-delay: 0.36s;
  }

  /* HOME + PRODUCTS span full width */
  .tile-home {
    grid-column: 1 / -1;
  }

  .tile-products {
    grid-column: 1 / -1;
  }

  /* Tile links */
  .bento-tile>a.nav-link {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    color: #fff !important;
    background: transparent !important;
    text-align: center;
    gap: 4px;
    width: 100%;
    font-size: 0.85rem;
  }

  .bento-tile>a.nav-link span {
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
  }

  /* Products tile: row layout */
  .tile-products>a.nav-link {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 22px 20px;
  }

  /* Active tile glow */
  .bento-tile a.nav-link.active {
    background: rgba(34, 197, 94, 0.1) !important;
    border-color: rgba(34, 197, 94, 0.25);
  }

  /* === DROPDOWN IN BENTO === */
  .nav-item-dropdown.mobile-open .dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 0 0 16px 16px !important;
    padding: 8px 12px 12px !important;
    margin: 0 !important;
    min-width: 0 !important;
  }

  .dropdown-menu li .submenu {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    min-width: 0 !important;
    width: 100% !important;
    padding-left: 14px !important;
    margin-top: 0 !important;
  }

  .dropdown-menu li.submenu-open .submenu {
    display: flex !important;
  }

  .dropdown-menu li a {
    padding: 10px 14px !important;
    background: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
  }

  .dropdown-menu li.submenu-open>a {
    color: var(--green-light) !important;
    font-weight: 700 !important;
  }

  .dropdown-menu li.has-submenu>a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .dropdown-menu li.has-submenu>a::after {
    display: block !important;
    content: '\f078' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
    transition: transform 0.3s ease !important;
  }

  .dropdown-menu li.submenu-open>a::after {
    transform: rotate(180deg) !important;
    color: var(--green-light) !important;
  }

  .nav-item-dropdown>.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-item-dropdown.mobile-open>.nav-link i.fa-chevron-down {
    transform: rotate(180deg);
  }

  /* === OVERLAY (not needed — nav-links IS the overlay) === */
  .nav-overlay {
    display: none !important;
  }

  /* === BODY LOCK === */
  body.nav-open {
    overflow: hidden;
  }

  .nav-logo img {
    height: 85px;
  }

  /* Products — single column, no forced column */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid .product-last {
    grid-column: auto;
  }

  .slider-track {
    gap: 16px;
  }

  .slider-slide {
    flex: 0 0 100%;
  }

  .slider-btn.prev {
    left: 8px;
  }

  .slider-btn.next {
    right: 8px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-steps {
    flex-direction: column;
    gap: 12px;
  }

  .process-arrow {
    display: none;
  }

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

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-links ul li a {
    display: inline-block;
    padding: 4px 0;
  }

  .footer-phone-row,
  .footer-hours-row {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 28px;
  }

  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-bottom .footer-attribution a {
    color: #ffffff !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--green-light);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero */
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 0;
  }

  .stat-item {
    padding: 10px 14px;
  }

  .stat-divider {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero {
    align-items: flex-start !important;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    padding-top: 95px !important;
  }

  /* Balanced space to clear navbar */
  .hero-badge {
    padding: 5px 12px;
    font-size: 0.75rem;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  /* Drawer full screen on mobile */
  .quote-drawer {
    width: 100%;
  }

  .float-quote-btn {
    font-size: 0.75rem;
    padding: 9px 14px;
  }

  /* Contact form */
  .contact-form {
    padding: 20px;
  }

  /* About images compact */
  .about-img-main img {
    height: 260px;
  }

  .about-img-secondary img {
    height: 120px;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats-number {
    font-size: 2.4rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* ===== PRODUCT DETAIL PAGE REFINE ===== */
.product-detail-section {
  padding-top: 180px;
}

.product-page-header {
  text-align: left;
  margin-bottom: 40px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Desktop polish for product detail pages */
@media (min-width: 1025px) {
  .product-detail-grid {
    grid-template-columns: 520px 1fr;
    gap: 56px;
  }

  /* Keep left rail visible while reading */
  .product-gallery {
    position: sticky;
    top: 110px;
    /* below fixed navbar */
  }

  .product-main-img img {
    max-height: 520px;
    object-fit: cover;
  }

  .brochure-card {
    padding: 26px;
  }

  .specs-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .table-responsive {
    margin-top: 24px;
  }
}

/* Prevent grid children from expanding beyond their track */
.product-detail-grid>* {
  min-width: 0;
}

.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: #f1f5f9;
  /* Fallback background */
  position: relative;
}

.product-main-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

/* Info Box Component */
.info-box {
  margin-top: 30px;
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.info-box-accent {
  background: var(--green-xlight);
  border: 1px dashed var(--green-primary);
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.info-box-header i {
  color: var(--green-primary);
  font-size: 1.5rem;
}

.info-box-header h4 {
  font-family: var(--font-heading);
  margin: 0;
}

.info-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* Brochure Card Component */
.brochure-card {
  margin-top: 30px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  padding: 30px;
  border-radius: var(--radius-lg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-green);
  transition: var(--transition);
}

.brochure-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.3);
}

.brochure-content h4 {
  color: #fff;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.brochure-content p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

.brochure-btn {
  background: #fff;
  color: var(--green-primary);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brochure-btn:hover {
  background: var(--green-xlight);
  transform: scale(1.05);
}

.product-content h3 {
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.product-content p {
  margin-bottom: 24px;
}

/* Specs Info Grid */
.specs-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.spec-item {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: var(--transition);
}

.spec-item:hover {
  border-color: var(--green-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.spec-icon {
  width: 40px;
  height: 40px;
  background: var(--green-xlight);
  color: var(--green-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.spec-text h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 4px 0;
  letter-spacing: 0.05em;
}

.spec-text p {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

/* Feature List */
.product-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  background: var(--bg-light);
  padding: 25px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green-primary);
}

.product-features-list li {
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.product-features-list li:last-child {
  margin-bottom: 0;
}

.product-features-list li i {
  color: var(--green-primary);
  margin-top: 4px;
}

/* Yield Grid */
.yield-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.yield-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

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

.yield-header {
  padding: 20px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yield-header h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0;
  font-family: var(--font-heading);
}

.yield-badge {
  background: var(--green-primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.yield-body {
  padding: 20px;
}

.yield-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Inline Enquiry Form Section */
.enquiry-section {
  background: var(--bg-light);
  padding: 80px 0;
  margin-top: 80px;
  border-radius: var(--radius-lg);
}

.enquiry-form-container {
  max-width: 850px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* Directory Table */
.product-directory-section {
  margin-top: 100px;
}

.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-top: 30px;
  display: block;
}

/* Remove card border/shadow for specific tables (e.g. Technical Parameters) */
.table-responsive.tech-params-table {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin-top: 0;
}

.product-summary-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.product-summary-table thead {
  background: var(--green-primary);
  color: #fff;
}

.product-summary-table th {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.product-summary-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-body);
  font-size: 0.95rem;
}

.yield-table-img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #f8fafc;
}

.product-summary-table th.image-cell,
.product-summary-table td.image-cell {
  width: 140px;
  text-align: center;
}

/* ========================================================
   GRID-2-COL — 2-column form row used on all enquiry forms
   ======================================================== */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
  /* match .form-group spacing */
}

.grid-2-col>div {
  display: flex;
  flex-direction: column;
}

/* ========================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================================== */

/* ---- Large Tablet: ≤ 1024px ---- */
@media (max-width: 1024px) {

  /* Product detail: reduce gap before going single column */
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Enquiry form container max-width */
  .enquiry-form-container {
    padding: 36px 32px;
  }

  /* Directory section: less top space */
  .product-directory-section {
    margin-top: 72px;
  }
}

/* ---- Tablet / Large Mobile: ≤ 768px ---- */
@media (max-width: 768px) {
  .product-detail-section {
    padding-top: 140px;
  }

  .product-page-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .product-content h3 {
    text-align: center;
  }

  .product-features-list {
    text-align: left;
  }

  .specs-info-grid {
    grid-template-columns: 1fr;
  }

  /* Collapse 2-col form rows to 1 column */
  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  /* Section subtitle no max-width constraint on mobile */
  .section-subtitle {
    max-width: 100%;
    text-align: center;
  }

  /* Smaller table cells */
  .product-summary-table th,
  .product-summary-table td {
    padding: 14px 16px;
    font-size: 0.875rem;
  }

  /* Directory section top space */
  .product-directory-section {
    margin-top: 60px;
  }

  /* Hero scroll indicator — centered on mobile (not offset by stat card) */
  .hero-scroll-indicator {
    margin-left: 0;
  }

  /* footer-inner: switch to 2-col on tablets */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* Product section heading center-align on mobile */
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* Enquiry section padding */
  .enquiry-section {
    padding: 48px 0;
    margin-top: 48px;
    border-radius: var(--radius-md);
  }

  /* Image: let it show naturally, don't crop */
  .product-main-img {
    height: auto;
  }

  .product-main-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Table scrolling improvements */
  .table-responsive {
    border-radius: var(--radius-md);
    position: relative;
  }

  .tech-params-table .product-summary-table {
    min-width: 600px;
  }

  /* Floating button: smaller on mobile */
  .float-quote-btn {
    padding: 14px 10px;
    font-size: 0.72rem;
  }
}

/* ---- Small mobile: ≤ 480px ---- */
@media (max-width: 480px) {

  /* Container horizontal padding */
  .container {
    padding: 0 16px;
  }

  /* Section padding */
  .section {
    padding: 44px 0;
  }

  /* Product detail page top offset */
  .product-detail-section {
    padding-top: 110px;
  }

  /* Enquiry form inner padding */
  .enquiry-form-container {
    padding: 20px 14px;
  }

  /* Directory margin */
  .product-directory-section {
    margin-top: 44px;
  }

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

  .spec-item {
    padding: 15px;
  }

  /* Footer fully single column on small screens */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Stats 2-col grid */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Hero stats wrap */
  .hero-stats {
    flex-wrap: wrap;
    padding: 14px 16px;
  }

  .stat-item {
    padding: 8px 10px;
  }

  /* Why-us grid single column */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Section header smaller section-tag pill */
  .section-tag {
    font-size: 0.72rem;
    padding: 4px 12px;
  }

  /* Nav logo smaller on very small screens */
  .nav-logo img {
    height: 75px;
  }

  /* Form button full width */
  .btn-full {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  /* Product features list smaller padding */
  .product-features-list {
    padding: 18px;
  }

  /* Specs grid single column always on small screens */
  .specs-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}



/* ========================================================
   PRINT STYLES – Professional multi-page optimization
   ======================================================== */
@media print {

  /* Hide non-essential layout items */
  .navbar,
  .hamburger,
  .back-to-top,
  .float-quote-btn,
  .enquiry-section,
  .footer,
  .ticker-strip,
  .hero-scroll-indicator,
  .nav-overlay,
  .quote-drawer-overlay,
  .quote-drawer {
    display: none !important;
  }

  /* Reset layout for print */
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt;
  }

  .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .section {
    padding: 20px 0 !important;
    page-break-inside: avoid;
  }

  .product-detail-section {
    padding-top: 0 !important;
  }

  /* Remove gradients for clearer printing */
  .gradient-text {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #000 !important;
    font-weight: bold;
  }

  /* Adjust grid for single column or specific print layout */
  .product-detail-grid {
    display: block !important;
  }

  .product-main-img {
    max-width: 300px;
    margin-bottom: 20px;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  .product-content {
    width: 100% !important;
  }

  .info-box,
  .brochure-card {
    border: 1px solid #ccc !important;
    background: #f9f9f9 !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  .brochure-btn {
    border: 1px solid #000 !important;
  }

  /* Table styling for print */
  .table-responsive {
    overflow: visible !important;
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }

  .product-summary-table {
    min-width: 0 !important;
    border: 1px solid #000 !important;
  }

  .product-summary-table th {
    background: #eee !important;
    color: #000 !important;
    border: 1px solid #000 !important;
  }

  .product-summary-table td {
    border: 1px solid #000 !important;
  }

  /* Show URLs after links in print */
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
  }
}