/* ==========================================================================
   SHRI RAM BHOG RICE | JAGDISH PRASAD ANAND KUMAR (EST. 2002)
   Master Production Stylesheet
   ========================================================================== */

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

:root {
  /* Royal Palette */
  --primary-dark: #07210e;
  --primary-deep: #0c3813;
  --primary: #14532d;
  --primary-light: #1b5e20;
  --primary-accent: #2e7d32;
  
  --gold-dark: #8c690b;
  --gold-primary: #c59b27;
  --gold-light: #d4af37;
  --gold-shimmer: #f7df8c;
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #ecd077 50%, #c59b27 100%);
  --gold-glow: rgba(212, 175, 55, 0.28);
  
  --bg-page: #fbf9f4;
  --bg-card: #ffffff;
  --bg-card-subtle: #f5f0e4;
  --bg-dark: #08170c;
  --bg-dark-surface: #0f2b17;
  
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;
  --text-gold: #c59b27;

  --border-gold: rgba(212, 175, 55, 0.3);
  --border-subtle: rgba(212, 175, 55, 0.18);
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(12, 56, 19, 0.08), 0 8px 10px -6px rgba(12, 56, 19, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(12, 56, 19, 0.14), 0 12px 20px -8px rgba(12, 56, 19, 0.08);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.3);
  --shadow-dark: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-royal: 'Cinzel', serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 92%;
  max-width: 1360px;
  margin-inline: auto;
}

.container-narrow {
  width: 90%;
  max-width: 1060px;
  margin-inline: auto;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--primary-deep);
  line-height: 1.22;
  font-weight: 700;
}

.font-royal {
  font-family: var(--font-royal);
  letter-spacing: 0.06em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-tag.light {
  background: rgba(247, 223, 140, 0.16);
  border-color: rgba(247, 223, 140, 0.4);
  color: var(--gold-shimmer);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-header.dark h2 {
  color: #ffffff;
}

.section-header.dark p {
  color: #c9d5cc;
}

.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(20, 83, 45, 0.3);
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(20, 83, 45, 0.45);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0c3813;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
  filter: brightness(1.04);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-shimmer);
  border: 1.5px solid var(--gold-light);
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  background: var(--gold-light);
  color: #0c3813;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-deep);
  border: 1.5px solid var(--primary-deep);
}

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

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.08rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */

.top-announcement {
  background: var(--primary-dark);
  color: #f1ebd8;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-announcement-left, .top-announcement-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-info-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 56, 19, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.navbar.scrolled {
  background: rgba(7, 33, 14, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 7px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
}

.brand-wrapper:hover .brand-logo {
  transform: scale(1.03);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  flex: 1 1 auto;
}

.brand-title {
  font-family: var(--font-royal);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tagline {
  font-size: 0.76rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: #e5e7eb;
  font-size: 0.96rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-cta-item {
  display: none;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #ffffff;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.hamburger-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 100px 0 70px;
  background: 
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, rgba(7, 33, 14, 0.94) 0%, rgba(12, 56, 19, 0.88) 50%, rgba(5, 20, 9, 0.96) 100%),
    url("../images/hero.png") center center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.hero-badge-wrap span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-shimmer);
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  color: #ffffff;
  line-height: 1.14;
  margin-bottom: 12px;
  font-weight: 800;
}

.hero-subtitle {
  font-family: var(--font-royal);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 22px;
  font-weight: 600;
}

.hero-description {
  font-size: 1.12rem;
  color: #d1ded5;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-royal);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: #b7c7bc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Visual Showcase Right */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-featured {
  position: relative;
  background: rgba(15, 43, 23, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.38);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-dark), 0 0 40px rgba(212, 175, 55, 0.14);
  width: 100%;
  max-width: 430px;
  text-align: center;
  transition: transform var(--transition-smooth);
}

.hero-card-featured:hover {
  transform: translateY(-6px);
}

.hero-card-img-wrap {
  width: 220px;
  height: 230px;
  margin: 0 auto 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-img-wrap img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-smooth);
}

.hero-card-featured:hover .hero-card-img-wrap img {
  transform: scale(1.05);
}

.featured-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold-gradient);
  color: #0c3813;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.hero-card-title {
  font-size: 1.45rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.hero-card-tag {
  color: var(--gold-shimmer);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.hero-grain-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.grain-spec-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #e5e7eb;
}

/* ==========================================================================
   TRUST PILLARS & HIGHLIGHTS
   ========================================================================== */

.trust-pillars-section {
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -45px;
}

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

.pillar-card {
  background: var(--bg-card);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.22);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(20, 83, 45, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--primary);
  color: #ffffff;
}

.pillar-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   ABOUT & HERITAGE SECTION
   ========================================================================== */

.about-section {
  padding: 110px 0 90px;
  background: var(--bg-page);
  position: relative;
}

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

.about-visual-col {
  position: relative;
}

.about-main-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0f2b17;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.about-logo-hero {
  max-width: 250px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: var(--gold-gradient);
  color: #0c3813;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid #ffffff;
}

.badge-years {
  font-family: var(--font-royal);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-content-col h2 {
  font-size: clamp(2.1rem, 3.2vw, 2.7rem);
  margin-bottom: 20px;
}

.about-lead-text {
  font-size: 1.14rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-body-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 35px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: var(--shadow-sm);
}

.check-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-title {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--primary-deep);
  margin-bottom: 2px;
}

.check-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ==========================================================================
   PRODUCT CATALOG & SHOWCASE SECTION
   ========================================================================== */

.products-section {
  padding: 100px 0 110px;
  background: #f4efe6;
  position: relative;
}

.catalog-search-wrap {
  max-width: 550px;
  margin: -15px auto 30px;
  position: relative;
}

.catalog-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: #ffffff;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.catalog-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.15);
}

.search-icon-box {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  pointer-events: none;
}

.category-filter-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(20, 83, 45, 0.25);
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-item-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
}

.product-item-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.card-top-banner {
  position: relative;
  background: radial-gradient(circle at center, #fbf7ee 0%, #ede5d3 100%);
  padding: 30px 20px 20px;
  text-align: center;
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-badge-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.product-badge-flag.gold-flag {
  background: var(--gold-gradient);
  color: #0c3813;
}

.card-img-container {
  max-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
}

.card-img-container img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition-smooth);
}

.product-item-card:hover .card-img-container img {
  transform: scale(1.08);
}

.card-body-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-variety-category {
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-item-title {
  font-size: 1.35rem;
  color: var(--primary-deep);
  margin-bottom: 8px;
  font-weight: 700;
}

.product-short-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 18px;
}

.spec-mini-item {
  font-size: 0.78rem;
  color: var(--text-light);
}

.spec-mini-item strong {
  display: block;
  font-size: 0.84rem;
  color: var(--primary-deep);
}

.pack-sizes-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pack-size-tag {
  background: var(--bg-card-subtle);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.card-action-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ==========================================================================
   GRAIN COMPARISON MATRIX DRAWER / TABLE
   ========================================================================== */

.comparison-toggle-wrap {
  text-align: center;
  margin-top: 45px;
}

.matrix-container {
  display: none;
  margin-top: 30px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.matrix-container.open {
  display: block;
  animation: fadeIn 0.35s ease;
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.comparison-table th {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 14px 16px;
  font-family: var(--font-royal);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
}

.comparison-table tr:hover td {
  background: rgba(212, 175, 55, 0.06);
}

.comparison-table td.prod-col {
  font-weight: 700;
  color: var(--primary-deep);
}

/* ==========================================================================
   RICE SELECTOR GUIDE / INTERACTIVE MATCHER
   ========================================================================== */

.rice-finder-section {
  padding: 90px 0;
  background: #ffffff;
}

.finder-box-card {
  background: linear-gradient(135deg, var(--bg-dark-surface) 0%, var(--primary-deep) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.finder-heading-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.finder-heading-wrap h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  color: #ffffff;
  margin-bottom: 10px;
}

.finder-heading-wrap p {
  color: #cfdbd2;
  font-size: 1rem;
}

.finder-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.finder-use-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.finder-use-card:hover, .finder-use-card.active-use {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-light);
  transform: translateY(-5px);
}

.finder-use-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.finder-use-title {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 700;
}

.finder-use-desc {
  font-size: 0.84rem;
  color: #cfdbd2;
  margin-bottom: 14px;
}

.finder-recommend-tag {
  display: inline-block;
  background: var(--gold-gradient);
  color: #0c3813;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

/* ==========================================================================
   QUALITY & SOURCING PROCESS (THE QUALITY STORY)
   ========================================================================== */

.quality-story-section {
  padding: 110px 0;
  background: var(--bg-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.quality-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 83, 45, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
  margin-top: 30px;
}

.process-steps-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.4), transparent);
  z-index: 1;
}

.process-step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-deep);
  border: 2px solid var(--gold-light);
  color: var(--gold-shimmer);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-royal);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.process-step-item:hover .step-num-bubble {
  transform: scale(1.12);
  background: var(--gold-gradient);
  color: #0c3813;
}

.step-content-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  width: 100%;
  transition: var(--transition-smooth);
}

.process-step-item:hover .step-content-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-5px);
}

.step-content-card h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-content-card p {
  font-size: 0.84rem;
  color: #b3c2b7;
  line-height: 1.5;
}

.quality-specs-strip {
  margin-top: 65px;
  background: rgba(20, 83, 45, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.quality-spec-point {
  display: flex;
  flex-direction: column;
}

.spec-highlight-val {
  font-family: var(--font-royal);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 4px;
}

.spec-highlight-desc {
  font-size: 0.85rem;
  color: #d1ded5;
}

/* ==========================================================================
   WAREHOUSE, LOGISTICS & B2B SUPPLY CAPABILITIES
   ========================================================================== */

.warehouse-supply-section {
  padding: 100px 0;
  background: #fbf9f4;
}

.warehouse-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.warehouse-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 20px;
}

.warehouse-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.hubs-comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 30px;
}

.hub-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
}

.hub-badge {
  display: inline-block;
  background: rgba(20, 83, 45, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hub-card h4 {
  font-size: 1.12rem;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.hub-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.b2b-capabilities-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.b2b-cap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.b2b-cap-item:last-child {
  margin-bottom: 0;
}

.b2b-cap-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b2b-cap-text h4 {
  font-size: 1.08rem;
  color: var(--primary-deep);
  margin-bottom: 3px;
}

.b2b-cap-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

/* ==========================================================================
   B2B QUOTE CALCULATOR & INQUIRY SECTION
   ========================================================================== */

.inquiry-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f4efe6 0%, #eae3d3 100%);
  position: relative;
}

.inquiry-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.inquiry-info-pane {
  background: linear-gradient(135deg, var(--bg-dark-surface) 0%, var(--primary-deep) 100%);
  color: #ffffff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inquiry-info-pane h3 {
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.inquiry-info-pane p {
  color: #d1ded5;
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 30px;
}

.inquiry-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.method-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-shimmer);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-details h5 {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.method-details p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}

.inquiry-form-pane {
  padding: 50px 45px;
}

.inquiry-form-pane h4 {
  font-size: 1.65rem;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.inquiry-form-pane .form-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

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

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

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #faf8f5;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.12);
  background: #ffffff;
}

textarea.form-control {
  resize: vertical;
  min-height: 95px;
}

/* ==========================================================================
   CONTACT & OPERATIONS HUB
   ========================================================================== */

.contact-section {
  padding: 90px 0;
  background: #ffffff;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-box {
  background: var(--bg-page);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.location-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.location-city-tag {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.location-box h3 {
  font-size: 1.45rem;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.location-role {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.location-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.loc-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-main {
  background: var(--primary-dark);
  color: #d1ded5;
  padding: 80px 0 30px;
  border-top: 2px solid var(--gold-primary);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 45px;
  margin-bottom: 60px;
}

.footer-brand-col p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 18px;
  margin-bottom: 22px;
  color: #b7c7bc;
}

.footer-heading {
  font-family: var(--font-royal);
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item {
  font-size: 0.9rem;
  color: #b7c7bc;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-link-item:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #8c9e92;
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================================================================
   MODAL DIALOG (PRODUCT QUICK VIEW)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 9, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e5e7eb;
}

.modal-grid-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.modal-image-pane {
  background: radial-gradient(circle at center, #fbf7ee 0%, #ede5d3 100%);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-pane img {
  max-height: 300px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

.modal-details-pane {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
}

.modal-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  font-size: 0.88rem;
}

.modal-spec-table tr {
  border-bottom: 1px solid var(--border-light);
}

.modal-spec-table td {
  padding: 8px 0;
}

.modal-spec-table td:first-child {
  color: var(--text-light);
  font-weight: 500;
  width: 45%;
}

.modal-spec-table td:last-child {
  color: var(--primary-deep);
  font-weight: 700;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */

.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: transform var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 990;
  box-shadow: var(--shadow-md);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--gold-gradient);
  color: #0c3813;
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Tablets & Small Laptops (<= 1200px) */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: 2;
  }
  .hero-card-featured {
    max-width: 420px;
    margin: 0 auto;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps-timeline::before {
    display: none;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablets Portrait & Medium Screens (<= 992px) */
@media (max-width: 992px) {
  .about-grid, 
  .warehouse-grid, 
  .inquiry-wrapper, 
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .finder-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quality-specs-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-grid-content {
    grid-template-columns: 1fr;
  }
  
  .modal-image-pane {
    padding: 24px;
  }
  
  .modal-image-pane img {
    max-height: 220px;
  }
  
  .hamburger-btn {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(7, 33, 14, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 28px 24px 40px;
    gap: 16px;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1001;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-cta-item {
    display: block;
    width: 100%;
    margin-top: 6px;
  }

  .mobile-nav-cta-item:first-of-type {
    margin-top: 14px;
  }

  .about-experience-badge {
    position: static;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
  }
}

/* Standard Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  /* Top Announcement Bar */
  .top-announcement {
    display: none;
  }

  /* Navbar Header */
  .navbar {
    padding: 8px 0;
  }

  .navbar.scrolled {
    padding: 6px 0;
  }

  .nav-container {
    gap: 10px;
  }

  .brand-wrapper {
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-logo {
    height: 44px;
    width: auto;
    flex-shrink: 0;
  }

  .brand-text {
    min-width: 0;
    overflow: hidden;
    flex: 1 1 auto;
  }

  .brand-title {
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
  }

  .nav-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .nav-actions .btn-sm {
    padding: 7px 12px;
    font-size: 0.82rem;
    gap: 6px;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding: 36px 0 28px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-badge-wrap {
    padding: 5px 14px;
    margin-bottom: 14px;
    gap: 6px;
  }

  .hero-badge-wrap span {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 5.5vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 8px;
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 3.8vw, 1.3rem);
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.95rem;
    justify-content: center;
  }

  .hero-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 18px;
    margin-top: 0;
  }

  .stat-number {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  /* Hero Featured Card */
  .hero-card-featured {
    max-width: 100%;
    padding: 22px 16px 18px;
    border-radius: var(--radius-lg);
    position: relative;
  }

  .featured-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    font-size: 0.68rem;
    padding: 3px 10px;
  }

  .hero-card-img-wrap {
    width: 160px;
    height: 170px;
    margin: 14px auto 10px;
    position: relative;
    z-index: 1;
  }

  .hero-card-title {
    font-size: 1.22rem;
    margin-bottom: 4px;
  }

  .hero-card-tag {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .hero-grain-badges {
    gap: 6px;
    margin-bottom: 14px;
  }

  .grain-spec-chip {
    font-size: 0.72rem;
    padding: 3px 8px;
  }

  .hero-card-featured .btn {
    padding: 10px 16px;
    font-size: 0.86rem;
  }

  /* Trust Pillars Section */
  .trust-pillars-section {
    margin-top: 20px;
    padding: 10px 0 25px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pillar-card {
    padding: 18px 16px;
    border-radius: var(--radius-md);
  }

  .pillar-icon-box {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
  }

  .pillar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .pillar-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* About Section */
  .about-section {
    padding: 45px 0;
  }

  .about-main-image-wrap {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
  }

  .about-logo-hero {
    max-width: 160px;
  }

  .about-content-col h2 {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
    margin-bottom: 12px;
  }

  .about-lead-text {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .about-body-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .about-checklist-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 22px;
  }

  .check-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .check-title {
    font-size: 0.88rem;
  }

  .check-desc {
    font-size: 0.76rem;
  }

  .about-content-col .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .about-content-col .hero-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Product Catalog Section */
  .products-section {
    padding: 45px 0 55px;
  }

  .section-header {
    margin-bottom: 25px;
  }

  .section-header h2 {
    font-size: clamp(1.55rem, 5.5vw, 2.2rem);
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .catalog-search-wrap {
    margin: 0 auto 18px;
    width: 100%;
  }

  .catalog-search-input {
    padding: 12px 16px 12px 42px;
    font-size: 16px;
    border-radius: var(--radius-full);
  }

  .search-icon-box {
    left: 14px;
  }

  .category-filter-nav {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 4px 2px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-filter-nav::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 7px 13px;
    font-size: 0.76rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .product-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-item-card {
    border-radius: var(--radius-md);
  }

  .card-top-banner {
    height: 190px;
    padding: 16px 12px;
    position: relative;
  }

  .product-badge-flag {
    top: 10px;
    left: 10px;
    z-index: 3;
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  .card-img-container {
    max-height: 155px;
    z-index: 1;
  }

  .card-img-container img {
    max-height: 145px;
  }

  .card-body-content {
    padding: 16px 14px;
  }

  .card-variety-category {
    font-size: 0.72rem;
  }

  .product-item-title {
    font-size: 1.18rem;
    margin-bottom: 6px;
  }

  .product-short-desc {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .product-spec-row {
    padding: 8px 0;
    gap: 6px;
    margin-bottom: 12px;
  }

  .spec-mini-item {
    font-size: 0.72rem;
  }

  .spec-mini-item strong {
    font-size: 0.8rem;
  }

  .pack-sizes-row {
    margin-bottom: 14px;
    gap: 4px;
  }

  .pack-size-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
  }

  .card-action-btns {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .card-action-btns .btn {
    padding: 9px 10px;
    font-size: 0.8rem;
    gap: 5px;
    justify-content: center;
  }

  .comparison-toggle-wrap {
    margin-top: 30px;
  }

  .comparison-toggle-wrap .btn {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.86rem;
    white-space: normal;
  }

  .matrix-container {
    padding: 12px 8px;
    margin-top: 16px;
    border-radius: var(--radius-md);
  }

  .comparison-table {
    font-size: 0.76rem;
    min-width: 540px;
  }

  .comparison-table th, 
  .comparison-table td {
    padding: 8px 10px;
  }

  /* Rice Selector Guide */
  .rice-finder-section {
    padding: 40px 0;
  }

  .finder-box-card {
    padding: 24px 14px;
    border-radius: var(--radius-lg);
  }

  .finder-heading-wrap {
    margin-bottom: 20px;
  }

  .finder-heading-wrap h3 {
    font-size: clamp(1.4rem, 4.5vw, 1.85rem);
    margin-bottom: 6px;
  }

  .finder-heading-wrap p {
    font-size: 0.88rem;
  }

  .finder-categories-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .finder-use-card {
    padding: 16px 12px;
  }

  .finder-use-icon {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .finder-use-title {
    font-size: 0.98rem;
  }

  .finder-use-desc {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }

  .finder-recommend-tag {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  /* Quality Story Section */
  .quality-story-section {
    padding: 45px 0;
  }

  .process-steps-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .process-steps-timeline::before {
    display: none;
  }

  .process-step-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 12px;
  }

  .step-num-bubble {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-content-card {
    padding: 14px 12px;
  }

  .step-content-card h4 {
    font-size: 0.94rem;
    margin-bottom: 3px;
  }

  .step-content-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .quality-specs-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px 10px;
    margin-top: 25px;
    border-radius: var(--radius-md);
  }

  .spec-highlight-val {
    font-size: 1.35rem;
  }

  .spec-highlight-desc {
    font-size: 0.72rem;
  }

  /* Warehouse & Logistics Section */
  .warehouse-supply-section {
    padding: 45px 0;
  }

  .warehouse-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .warehouse-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
    margin-bottom: 12px;
  }

  .warehouse-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .hubs-comparison-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hub-card {
    padding: 14px 12px;
    border-radius: var(--radius-md);
  }

  .hub-card h4 {
    font-size: 1rem;
  }

  .hub-card p {
    font-size: 0.8rem;
  }

  .warehouse-content .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .warehouse-content .hero-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .b2b-capabilities-box {
    padding: 20px 14px;
    border-radius: var(--radius-lg);
  }

  .b2b-cap-item {
    gap: 12px;
    margin-bottom: 14px;
  }

  .b2b-cap-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
  }

  .b2b-cap-icon svg {
    width: 18px;
    height: 18px;
  }

  .b2b-cap-text h4 {
    font-size: 0.96rem;
  }

  .b2b-cap-text p {
    font-size: 0.8rem;
  }

  /* B2B Quote & Inquiry Section */
  .inquiry-section {
    padding: 45px 0;
  }

  .inquiry-wrapper {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

  .inquiry-info-pane {
    padding: 25px 16px;
  }

  .inquiry-info-pane h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .inquiry-info-pane p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .inquiry-contact-methods {
    gap: 12px;
  }

  .contact-method-row {
    gap: 10px;
  }

  .method-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .method-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .method-details h5 {
    font-size: 0.75rem;
  }

  .method-details p {
    font-size: 0.92rem;
  }

  .inquiry-form-pane {
    padding: 25px 16px;
  }

  .inquiry-form-pane h4 {
    font-size: 1.35rem;
  }

  .inquiry-form-pane .form-subtitle {
    font-size: 0.84rem;
    margin-bottom: 18px;
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

  .form-control {
    font-size: 16px;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
  }

  .inquiry-form-pane .btn-block {
    padding: 13px 18px;
    font-size: 0.92rem;
  }

  /* Contact & Operating Centers */
  .contact-section {
    padding: 45px 0;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .location-box {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

  .location-city-tag {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.7rem;
    padding: 2px 8px;
  }

  .location-box h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  .location-role {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .location-detail-list {
    gap: 10px;
  }

  .loc-item {
    font-size: 0.85rem;
    gap: 10px;
  }

  .loc-item svg {
    width: 17px;
    height: 17px;
  }

  /* Footer */
  .footer-main {
    padding: 45px 0 20px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  .footer-brand-col p {
    font-size: 0.85rem;
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-links-list {
    gap: 8px;
  }

  .footer-link-item {
    font-size: 0.85rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.78rem;
    padding-top: 20px;
  }

  /* Modal Quick View */
  .modal-backdrop {
    padding: 12px;
  }

  .modal-card {
    border-radius: var(--radius-lg);
    max-height: 88vh;
    width: 100%;
  }

  .modal-grid-content {
    grid-template-columns: 1fr;
  }

  .modal-image-pane {
    padding: 20px 14px;
    height: 180px;
  }

  .modal-image-pane img {
    max-height: 160px;
  }

  .modal-details-pane {
    padding: 18px 16px;
  }

  .modal-close-btn {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  #modal-title {
    font-size: 1.25rem !important;
  }

  .modal-spec-table {
    font-size: 0.8rem;
    margin: 10px 0 14px;
  }

  /* Floating Action Buttons */
  .floating-whatsapp-btn {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .back-to-top-btn {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    left: 16px;
    width: 38px;
    height: 38px;
  }

  .back-to-top-btn svg {
    width: 17px;
    height: 17px;
  }
}

/* Standard Mobile Devices (<= 576px, iPhone 14/15/16 Pro Max, 390px, 375px) */
@media (max-width: 576px) {
  .navbar {
    padding: 7px 0 6px;
  }

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

  .brand-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 8px;
    row-gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
    text-decoration: none;
  }

  .brand-logo {
    grid-row: 1;
    grid-column: 1;
    height: 36px;
    width: auto;
    flex-shrink: 0;
  }

  .brand-text {
    display: contents;
  }

  .brand-title {
    grid-row: 1;
    grid-column: 2;
    font-family: var(--font-royal);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .brand-tagline {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
    padding-top: 1px;
  }

  .nav-actions {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    margin-left: 8px;
    gap: 0;
  }

  .nav-wa-btn,
  .nav-quote-btn {
    display: none;
  }

  .hamburger-btn {
    display: inline-flex;
    padding: 6px;
    border-radius: var(--radius-sm);
    align-self: flex-start;
    margin-top: 1px;
  }

  .nav-menu {
    top: 64px;
    height: calc(100vh - 64px);
  }

  .container {
    width: 92%;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 4px 12px;
    letter-spacing: 1.2px;
  }
}

/* Compact Mobile Screens (<= 380px, iPhone SE 1st gen, 320px-360px viewports) */
@media (max-width: 380px) {
  .container {
    width: 94%;
  }

  .brand-wrapper {
    column-gap: 6px;
    row-gap: 1px;
  }

  .brand-logo {
    height: 32px;
  }

  .brand-title {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
  }

  .brand-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.4px;
  }

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

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .card-action-btns {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .quality-specs-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}