@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Logo Derived Color System */
  --primary: #0a3b24;          /* Premium Deep Forest Emerald from logo leaves */
  --primary-hover: #072a19;    /* Rich darker green for hover states */
  --primary-light: #e7efe9;    /* Soft emerald tint for backgrounds */
  
  --secondary: #d67c27;        /* Warm copper/gold from the B monogram */
  --secondary-hover: #bf6a1c;  /* Deeper copper for hover states */
  --secondary-light: #fdf3e9;  /* Soft copper tint for highlights */
  
  --accent: #f4f8f5;           /* Clean mint-cream background */
  --surface: #ffffff;          /* Pure white for layout cards */
  --surface-strong: #ebf1ed;   /* Light gray-green for alternate layouts */
  
  --text: #09120d;             /* Dark charcoal green-black for readability */
  --muted: #4e6056;            /* Medium muted olive-gray for secondary text */
  --border: rgba(10, 59, 36, 0.08); /* Transparent primary border tint */
  --border-strong: rgba(10, 59, 36, 0.15);
  
  /* WhatsApp Identity */
  --whatsapp-color: #25d366;
  --whatsapp-hover: #1ebd57;
  
  /* Modern Styling Tokens */
  --shadow-sm: 0 4px 12px rgba(9, 18, 13, 0.03);
  --shadow-md: 0 12px 32px rgba(9, 18, 13, 0.05);
  --shadow-lg: 0 24px 64px rgba(9, 18, 13, 0.09);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ==========================================
   Base resets & layouts
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--accent) 0%, #e2eae4 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

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

/* ==========================================
   Header & Navigation
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  box-shadow: 0 1px 10px rgba(10, 59, 36, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.brand-logo img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-strong);
  padding: 1px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.brand-logo:hover img {
  transform: rotate(15deg) scale(1.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: var(--transition);
}

.site-nav a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.site-nav a.active {
  background: var(--primary);
  color: #ffffff;
}

.site-nav a.button-secondary {
  margin-left: 0.5rem;
}

/* ==========================================
   Buttons
   ========================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 59, 36, 0.18);
}

.button-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 59, 36, 0.28);
}

.button-secondary {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(214, 124, 39, 0.2);
}

.button-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 124, 39, 0.35);
}

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

.button-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.whatsapp-button {
  background: var(--whatsapp-color);
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.whatsapp-button svg {
  flex-shrink: 0;
  fill: currentColor;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
  padding: 8rem 0 7rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 59, 36, 0.98) 0%, rgba(5, 25, 15, 0.95) 100%);
  color: #ffffff;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../Combine_harvester.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Glowing gold mesh overlay in hero */
.hero-section::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(214, 124, 39, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
  margin: 0 auto 2.5rem;
  max-width: 62ch;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.hero-highlights span:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--secondary);
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem;
}

.hero-actions .button-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.hero-actions .button-outline:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

/* ==========================================
   Common Section Layouts & Headings
   ========================================== */
.section {
  padding: 5.5rem 0;
}

.section-heading {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 auto;
}

/* Grid Layouts */
.feature-grid,
.brand-grid,
.why-grid,
.product-grid,
.about-grid,
.stats-section,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.feature-grid,
.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
}

/* ==========================================
   Card Styling & Interactions
   ========================================== */
.feature-card,
.brand-card,
.why-card,
.stat-card,
.contact-form-card,
.product-card,
.brand-summary,
.contact-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover,
.why-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.feature-card h3,
.why-card h3,
.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.85rem;
}

.feature-card p,
.why-card p,
.stat-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Category cards customized */
.category-card {
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  border-top-color: var(--secondary);
}

.show-more-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

.show-more-link:hover {
  color: var(--secondary-hover);
  transform: translateX(4px);
}

/* ==========================================
   Brand Cards & Showcase
   ========================================== */
.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-height: 200px;
  overflow: hidden;
}

.brand-logo-card img {
  width: 100%;
  height: 100%;
  max-height: 140px;
  object-fit: contain;
  filter: grayscale(8%) contrast(90%);
  transition: var(--transition);
}

.brand-logo-card.cover {
  padding: 0;
}

.brand-logo-card.cover img {
  height: 200px;
  max-height: none;
  object-fit: cover;
}

.brand-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.brand-logo-card:hover img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.05);
}

/* ==========================================
   Catalog Download Banner/Section
   ========================================== */
.catalog-banner {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  border: 2px solid var(--primary-light);
  border-left: 6px solid var(--secondary);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 2.75rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-md);
}

.catalog-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.catalog-icon {
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  color: #d13028; /* PDF Red icon color */
  border-radius: 12px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.catalog-text h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.catalog-text p {
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-action .button {
  background: var(--secondary);
  color: #ffffff;
  border: 1px solid var(--secondary);
  padding: 0.85rem 1.65rem;
}

.catalog-action .button:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 124, 39, 0.25);
}

/* ==========================================
   Products Page Styles
   ========================================== */
.page-hero {
  padding-bottom: 1.5rem;
}

.category-section {
  padding: 4.5rem 0;
  border-bottom: 1.5px dashed var(--border-strong);
}

.category-section:last-of-type {
  border-bottom: none;
}

.category-header {
  margin-bottom: 2.5rem;
}

.category-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.5rem;
  position: relative;
  display: inline-block;
}

.category-header h2::after {
  content: '';
  display: block;
  width: 55px;
  height: 4px;
  background: var(--secondary);
  margin-top: 0.6rem;
  border-radius: 99px;
}

.category-header p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 65ch;
}

/* 5 Column Grid for products on Desktop */
.category-section .product-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.category-section .product-card {
  padding: 1.25rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-section .product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  background: #f1f6f2; /* Clean backdrop for product images */
  padding: 1rem;
  margin-bottom: 1.15rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.category-section .product-card:hover img {
  transform: scale(1.06) rotate(1deg);
}

.category-section .product-card h3 {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

/* ==========================================
   Contact Page Styles
   ========================================== */
.contact-grid {
  grid-template-columns: 1fr 1.3fr;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 2.25rem 0;
}

.contact-details li {
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-details li strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-details a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--secondary-hover);
  text-decoration: underline;
}

.contact-form-card form {
  display: grid;
  gap: 1.25rem;
}

.contact-form-card label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.25rem;
  font: inherit;
  background: var(--surface);
  transition: var(--transition);
  color: var(--text);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 59, 36, 0.12);
}

.form-feedback {
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ==========================================
   About Page Styles
   ========================================== */
.about-grid {
  grid-template-columns: 1fr 1fr;
}

.about-grid h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.stats-section {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.stat-card {
  text-align: center;
  border-top: 4px solid var(--secondary);
}

.stat-card h3 {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-summary {
  text-align: center;
  background: var(--surface-strong);
  border-radius: var(--border-radius-md);
  padding: 3.5rem 2rem;
  margin-top: 3.5rem;
  border: 1px solid var(--border);
}

.contact-summary h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.95rem;
  margin: 0 0 0.5rem;
}

.contact-summary p {
  color: var(--muted);
  max-width: 55ch;
  margin: 0 auto 1.75rem;
}

/* Founder Section Styling */
.founder-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
}

.founder-item {
  margin-bottom: 2.25rem;
}

.founder-item:last-of-type {
  margin-bottom: 0;
}

.founder-name {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.founder-title {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================
   Distribution Network Section
   ========================================== */
.distribution-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(10, 59, 36, 0.97) 0%, rgba(5, 20, 12, 0.98) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.distribution-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 45%;
  height: 60%;
  background: radial-gradient(circle, rgba(214, 124, 39, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.distribution-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.distribution-section .section-heading h2 {
  color: #ffffff;
}

.distribution-section .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.distribution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.distribution-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  text-align: center;
}

.distribution-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.dist-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(214, 124, 39, 0.15);
  border: 1px solid rgba(214, 124, 39, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--secondary);
  transition: var(--transition);
}

.distribution-card:hover .dist-icon {
  background: rgba(214, 124, 39, 0.25);
  transform: scale(1.08) rotate(5deg);
}

.dist-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  background: rgba(214, 124, 39, 0.12);
  border: 1px solid rgba(214, 124, 39, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.85rem;
}

.distribution-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.distribution-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.distribution-card p strong {
  color: #ffffff;
}

/* Geographic Reach */
.geo-reach {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.geo-reach h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.geo-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.geo-pills span {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.geo-pills span:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.geo-pill-highlight {
  background: var(--secondary) !important;
  color: #ffffff !important;
  border-color: var(--secondary) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(214, 124, 39, 0.35);
}

.geo-pill-highlight:hover {
  background: var(--secondary-hover) !important;
  box-shadow: 0 6px 24px rgba(214, 124, 39, 0.5);
}

/* Tagline */
.dist-tagline {
  text-align: center;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.dist-tagline strong {
  color: var(--secondary);
}

/* Dealer Showcase Marquee */
.dealer-showcase {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.dealer-showcase h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.dealer-marquee-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.dealer-marquee-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

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

.dealer-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: var(--transition);
}

.dealer-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.dealer-pill strong {
  color: #ffffff;
  font-weight: 700;
  margin-right: 0.3rem;
}

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

/* Distribution responsive */
@media (max-width: 1024px) {
  .distribution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .distribution-grid {
    grid-template-columns: 1fr;
  }
  
  .distribution-section {
    padding: 4.5rem 0;
  }
}

/* ==========================================
   CTA Banner Styling (Contact sections)
   ========================================== */
.cta-banner {
  text-align: center;
  padding: 4.5rem 2rem;
  margin: 3.5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #051a0f 100%);
  border-radius: var(--border-radius-lg);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(214, 124, 39, 0.22), transparent 55%);
  z-index: 0;
}

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

.cta-content h2 {
  font-family: var(--font-heading);
  margin: 0 0 0.85rem;
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  font-weight: 800;
  color: #ffffff;
}

.cta-content p {
  margin: 0 auto 2.25rem;
  opacity: 0.9;
  max-width: 55ch;
  font-size: 1.08rem;
}

.cta-banner .button-primary {
  background: var(--secondary);
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(214, 124, 39, 0.2);
}

.cta-banner .button-primary:hover {
  background: var(--secondary-hover);
  box-shadow: 0 6px 20px rgba(214, 124, 39, 0.35);
}

/* ==========================================
   Floating WhatsApp Widget
   ========================================== */
.whatsapp-float-widget {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-float-bubble {
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: var(--transition);
  animation: float 4s ease-in-out infinite, pulseGreen 2.5s infinite;
  text-decoration: none;
}

.whatsapp-float-bubble:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-bubble svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
}

.whatsapp-float-tooltip {
  background: #09120d;
  color: #ffffff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float-widget:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  background: #05130b; /* Extra deep forest green */
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 0 3.5rem;
  border-top: 4px solid var(--secondary);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
}

.site-footer h3 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.site-footer p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
}

.site-footer a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1.5px solid transparent;
}

.site-footer a:hover {
  color: #ffffff;
  border-color: var(--secondary);
}

/* ==========================================
   Stats Counter Strip (Home Page)
   ========================================== */
.stats-strip {
  background: linear-gradient(135deg, #051a0f 0%, #0a3b24 50%, #072a19 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 124, 39, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stats-strip-card {
  text-align: center;
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  position: relative;
}

.stats-strip-card:last-child {
  border-right: none;
}

.stats-strip-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 99px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.stats-strip-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.stats-strip-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stats-strip-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stats-strip-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
}

.stats-strip-detail {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stats-strip-inner {
    grid-template-columns: 1fr;
  }
  .stats-strip-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem;
  }
  .stats-strip-card:last-child {
    border-bottom: none;
  }
}

/* ==========================================
   "India Needs…" Quote Banner (Home Page)
   ========================================== */
.india-needs-banner {
  padding: 4rem 0;
  background: var(--surface-strong);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.india-needs-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 850px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  background: var(--surface);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border);
  border-left: 6px solid var(--secondary);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.india-needs-inner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 35%;
  height: 160%;
  background: radial-gradient(circle, rgba(214, 124, 39, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.india-needs-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.india-needs-inner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

.india-needs-inner blockquote strong {
  color: var(--primary);
}

.india-needs-inner blockquote span {
  color: var(--secondary);
  font-weight: 800;
}

@media (max-width: 768px) {
  .india-needs-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.75rem;
    border-left: none;
    border-top: 5px solid var(--secondary);
  }
}

/* ==========================================
   Market Gaps Section (About Page)
   ========================================== */
.market-gaps-section {
  border-top: 1px solid var(--border);
  padding-top: 4.5rem;
  margin-top: 1rem;
}

.market-gaps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.market-gap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.market-gap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.market-gap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.gap-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #0a3b24 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(10, 59, 36, 0.2);
}

.market-gap-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.gap-arrow {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.market-gap-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.market-gap-card p strong {
  color: var(--secondary);
}

@media (max-width: 900px) {
  .market-gaps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================
   Full Basket Model Banner (Products Page)
   ========================================== */
.full-basket-banner {
  background: linear-gradient(135deg, var(--primary-light) 0%, #d8ece0 50%, var(--accent) 100%);
  border: 2px solid rgba(10, 59, 36, 0.1);
  border-radius: var(--border-radius-md);
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

.full-basket-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 30%;
  height: 140%;
  background: radial-gradient(circle, rgba(10, 59, 36, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.full-basket-inner {
  padding: 2.75rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.full-basket-badge {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(10, 59, 36, 0.2);
}

.full-basket-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.full-basket-inner > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 65ch;
  margin: 0 auto 1.25rem;
}

.full-basket-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.full-basket-brands strong {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.brand-dot {
  color: var(--secondary);
  font-weight: 800;
}

.brand-note {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .full-basket-inner {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================
   Keyframes
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 1024px) {
  .category-section .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .about-grid,
  .header-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    gap: 2.5rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .site-nav a {
    padding: 0.5rem 0.9rem;
  }

  .category-section .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .catalog-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    text-align: center;
  }
  
  .catalog-info {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .category-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .button {
    width: 100%;
  }
  
  .site-nav a.button-secondary {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .whatsapp-float-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-float-tooltip {
    display: none; /* Hide tooltips on mobile/touch screens */
  }
}

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