/* ==========================================================================
   Deva Poultry Farm — Universal Design System & Complete Stylesheet
   ========================================================================== */

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

:root {
  /* Brand Palette */
  --coral: #E24B36;
  --coral-hover: #CC3F2B;
  --coral-light: rgba(226, 75, 54, 0.08);
  --coral-glow: rgba(226, 75, 54, 0.25);
  --primary: #E24B36;
  --primary-glow: rgba(226, 75, 54, 0.2);
  --primary-dark: #CC3F2B;

  --dark-bg: #141518;
  --dark-surface: #1B1C20;
  --dark-surface-hover: #23252A;
  --dark-border: rgba(255, 255, 255, 0.1);
  --dark-border-strong: rgba(255, 255, 255, 0.2);

  --body-bg: #EEF0F3;
  --background: #EEF0F3;
  --surface: #FFFFFF;
  --surface-elevated: #F8F9FB;
  --surface-pressed: #E9ECEF;
  --light-surface: #FFFFFF;
  --light-border: rgba(0, 0, 0, 0.08);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);

  --text-dark: #121316;
  --text-primary: #121316;
  --text-secondary: #5A606D;
  --text-muted: #6C727F;
  --text-tertiary: #8C93A0;
  --text-light: #FFFFFF;
  --text-light-muted: #A1A7B4;
  --text-inverse: #FFFFFF;

  --emerald: #10B981;
  --purple: #8B5CF6;
  --warning: #F59E0B;
  --info: #3B82F6;
  --danger: #EF4444;

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

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.09);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Global Reset & Defaults
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--body-bg);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-fast);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ==========================================================================
   Header & Universal Navbar (Fixes Giant Logo & Menu Alignment Everywhere)
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo Image STRICT Constraints */
.logo-link,
.brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  flex-shrink: 0;
}

.logo-img,
.brand-logo-img {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  object-fit: contain !important;
  display: inline-block !important;
  flex-shrink: 0;
}

.logo-text,
.brand-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  white-space: nowrap;
}

.brand-logo .logo-text.text-white {
  color: #FFFFFF;
}

/* Nav Menu Links */
.nav-links-wrapper {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  padding: 8px 4px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

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

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

.nav-btn,
.btn-pill-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF !important;
  background-color: var(--coral);
  border-radius: 9999px;
  box-shadow: 0 4px 12px var(--coral-glow);
  white-space: nowrap;
  transition: var(--transition-normal);
}

.nav-btn:hover,
.btn-pill-solid:hover {
  background-color: var(--coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--coral-glow);
}

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  border: 1.5px solid rgba(18, 19, 22, 0.2);
  border-radius: 9999px;
  background-color: transparent;
  white-space: nowrap;
}

.btn-pill-outline:hover {
  border-color: var(--text-dark);
  background-color: rgba(0, 0, 0, 0.04);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-drawer.open,
.nav-menu.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.mobile-nav-link.active {
  color: var(--coral);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.w-full {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Badges, Headers & Common UI
   ========================================================================== */
.coral-badge {
  display: inline-block;
  color: var(--coral);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.coral-badge-dark {
  display: inline-block;
  color: #F8715E;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

.section-title-dark {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   Homepage Sections
   ========================================================================== */
.hero-section {
  padding: 0 0 48px 0;
}

.hero-banner-card {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 80px 0 0 64px;
  color: #FFFFFF;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background-color: #FFFFFF;
  color: #121316;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
}

.btn-hero-primary:hover {
  background-color: #F4F5F8;
  transform: translateY(-2px);
}

.btn-hero-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 9999px;
  transition: var(--transition-normal);
}

.play-circle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #121316;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3 Cards Section */
.partners-section {
  padding: 64px 0 88px 0;
}

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

.partner-card {
  background-color: var(--light-surface);
  border-radius: 24px;
  padding: 16px;
  border: 1px solid var(--light-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(226, 75, 54, 0.25);
}

.card-img-wrapper {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #F0F2F5;
  margin-bottom: 20px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.partner-card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: 4px 8px 12px 8px;
  flex-grow: 1;
}

.card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Dark Features Split & Solutions */
.dark-features-section {
  background-color: var(--dark-bg);
  color: #FFFFFF;
  padding: 100px 0 110px 0;
  border-radius: 40px;
  margin: 0 16px 64px 16px;
}

.dark-features-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}

.dark-feature-visual {
  width: 100%;
}

.visual-frame {
  width: 100%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

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

.dark-feature-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 16px;
}

.dark-feature-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-light-muted);
  margin-bottom: 36px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-item-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.04);
}

.feature-item-info {
  flex: 1;
}

.feature-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.feature-item-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-light-muted);
}

/* Solutions Showcase */
.solutions-showcase-wrapper {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.solutions-header {
  margin-bottom: 40px;
}

.solutions-main-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #FFFFFF;
  line-height: 1.2;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 28px;
  align-items: center;
}

.solutions-tabs-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 22px;
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  text-align: left;
  transition: var(--transition-normal);
}

.solution-tab-btn:hover {
  background-color: var(--dark-surface-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.solution-tab-btn.active {
  background-color: #23252C;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.solution-tab-btn .tab-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light-muted);
  margin-bottom: 4px;
}

.solution-tab-btn.active .tab-badge {
  color: #F8715E;
}

.solution-tab-btn .tab-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.solutions-center-visual {
  width: 100%;
}

.solution-img-box {
  width: 100%;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.solution-barn-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-normal);
}

.solutions-details-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.solution-detail-card {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 20px;
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.solution-detail-card.active {
  display: block;
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, #1E2026 0%, #17181C 100%);
}

.detail-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Community Section */
.community-section {
  padding: 80px 0 100px 0;
}

.network-orbit-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.radar-mesh-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 480px;
  pointer-events: none;
  z-index: 1;
}

.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(226, 75, 54, 0.2);
}

.radar-c1 { width: 320px; height: 320px; }
.radar-c2 { width: 520px; height: 400px; border-style: dotted; border-color: rgba(226, 75, 54, 0.15); }
.radar-c3 { width: 720px; height: 480px; border-style: dotted; border-color: rgba(226, 75, 54, 0.1); }

.orbit-avatar {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FFFFFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-fast);
}

.orbit-avatar:hover {
  transform: scale(1.18);
  z-index: 10;
  box-shadow: 0 8px 24px rgba(226, 75, 54, 0.3);
}

.avatar-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-pos-1 { top: 12%; left: 24%; }
.avatar-pos-2 { top: 18%; right: 22%; }
.avatar-pos-3 { top: 48%; left: 12%; }
.avatar-pos-4 { top: 52%; right: 10%; }
.avatar-pos-5 { bottom: 16%; left: 18%; }
.avatar-pos-6 { bottom: 18%; right: 18%; }

.central-testimonial-box {
  position: relative;
  z-index: 4;
  max-width: 540px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 36px 28px 36px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-avatar-wrapper {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  margin: -60px auto 16px auto;
  border: 3px solid #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.central-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-content-block {
  position: relative;
  margin-bottom: 16px;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 28px;
  color: #121316;
  font-weight: 700;
  line-height: 1;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: #121316;
  display: inline;
  margin: 0 4px;
}

.testimonial-author-meta {
  margin-bottom: 20px;
}

.author-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #121316;
  margin-bottom: 2px;
}

.author-role {
  font-size: 12.5px;
  color: var(--text-muted);
}

.testimonial-nav-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121316;
  background-color: #FFFFFF;
}

.nav-arrow-btn:hover {
  background-color: var(--coral);
  color: #FFFFFF;
  border-color: var(--coral);
}

/* Leadership Pasture Banner */
.leadership-banner-section {
  padding: 20px 0 80px 0;
}

.leadership-banner-card {
  position: relative;
  width: 100%;
  min-height: 540px;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.leadership-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #121316;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-left { left: 36px; }
.arrow-right { right: 36px; }

.leadership-floating-box {
  position: relative;
  z-index: 4;
  max-width: 480px;
  background-color: #FFFFFF;
  border-radius: 28px;
  padding: 44px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.floating-badge-topleft {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.floating-badge-bottomright {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

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

.leadership-box-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.leadership-box-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-leadership-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 9999px;
  background-color: #FAF5F4;
  color: var(--coral);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(226, 75, 54, 0.15);
}

.btn-leadership-cta:hover {
  background-color: var(--coral);
  color: #FFFFFF;
}

/* ==========================================================================
   Inner Pages (Products, About, Farm, Feed Mill, Where to Buy, FAQs, Privacy)
   ========================================================================== */
.inner-hero {
  background: linear-gradient(135deg, #141518 0%, #1e2026 100%);
  color: #FFFFFF;
  padding: 72px 0 64px 0;
  margin-bottom: 48px;
}

.breadcrumbs {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #FFFFFF;
  font-weight: 600;
}

.breadcrumbs span {
  margin: 0 6px;
}

.inner-hero-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.inner-hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
}

/* Features Headers & Grids in Inner Pages */
.features-header {
  margin-bottom: 36px;
}

.features-tag {
  display: inline-block;
  color: var(--coral);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.features-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.features-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(226, 75, 54, 0.2);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.icon-emerald { background-color: rgba(16, 185, 129, 0.12); color: #10b981; }
.icon-purple { background-color: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.icon-info { background-color: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.icon-warning { background-color: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.icon-danger { background-color: rgba(239, 68, 68, 0.12); color: #ef4444; }

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Inner Grid Split (About Us / Farm) */
.inner-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 36px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.inner-grid.reverse {
  grid-template-columns: 1fr 240px;
}

.inner-grid-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: var(--surface-elevated);
  height: 200px;
}

.inner-grid-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.inner-grid-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ==========================================================================
   Feed Table, Dealer Cards & General Buttons
   ========================================================================== */
.feed-analysis-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.feed-analysis-table th {
  background-color: var(--dark-bg);
  color: #FFFFFF;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  text-align: left;
}

.feed-analysis-table td {
  padding: 14px 18px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.feed-analysis-table tr:last-child td {
  border-bottom: none;
}

.feed-analysis-table tr:hover td {
  background-color: #F9FAFC;
}

/* Dealer / Outlets Grid */
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.dealer-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
}

.dealer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.dealer-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.dealer-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
}

.product-card-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.product-card-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-secondary);
}

.product-card-specs li span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.product-card-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background-color: var(--coral);
  color: #FFFFFF !important;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 4px 12px var(--coral-glow);
  transition: var(--transition-fast);
}

.product-card-btn:hover {
  background-color: var(--coral-hover);
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background-color: var(--coral);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 14px var(--coral-glow);
  transition: var(--transition-normal);
}

.btn-primary:hover {
  background-color: var(--coral-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background-color: #FFFFFF;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  border-radius: 9999px;
  border: 1.5px solid var(--border-strong);
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background-color: #F4F5F8;
  border-color: var(--text-dark);
}

/* Products Page Styles */
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.product-detail-card {
  background: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.product-card-image {
  width: 100%;
  height: 220px;
  background-color: #F0F2F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-secondary);
}

.spec-item span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.order-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.order-btn:hover {
  background-color: var(--coral);
  color: #FFFFFF;
  border-color: var(--coral);
}

/* FAQ Accordion Styles */
.faq-container {
  max-width: 860px;
  margin: 0 auto 80px auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  color: var(--text-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--coral);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-icon {
  font-size: 20px;
  font-weight: 700;
  color: var(--coral);
  transition: transform var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Myth vs Fact Box in FAQ */
.myth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.myth-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
}

.myth-header {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.myth-tag { color: var(--danger); }
.fact-tag { color: var(--emerald); }

/* Privacy Policy Layout */
.policy-hero {
  background: linear-gradient(135deg, #141518 0%, #1e2026 100%);
  color: #FFFFFF;
  padding: 64px 0 48px 0;
  margin-bottom: 40px;
}

.policy-hero-title {
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.policy-hero-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.policy-body {
  padding-bottom: 80px;
}

.policy-container {
  max-width: 860px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.policy-section {
  margin-bottom: 36px;
}

.policy-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.policy-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.policy-list {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-list li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.permission-card {
  background: var(--surface-elevated);
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.permission-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.badge-mandatory {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.badge-optional {
  background: rgba(59, 130, 246, 0.1);
  color: var(--info);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

/* Where to buy / Distributors */
.where-to-buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.distributor-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.distributor-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.distributor-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 4px;
}

/* Contact / B2B Forms */
.b2b-form {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #F9FAFB;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: #FFFFFF;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--coral);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 6px 16px var(--coral-glow);
}

.form-submit-btn:hover {
  background: var(--coral-hover);
}

/* ==========================================================================
   Universal Footer
   ========================================================================== */
.site-footer,
.footer {
  background-color: var(--dark-bg);
  color: #FFFFFF;
  padding: 80px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

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

.footer-tagline {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.footer-logo-row,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-desc,
.footer-copyright {
  font-size: 13.5px;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-heading,
.footer-col-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links-list,
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.footer-links-list a,
.footer-links a {
  font-size: 13.5px;
  color: var(--text-light-muted);
}

.footer-links-list a:hover,
.footer-links a:hover {
  color: #FFFFFF;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.social-icon-btn:hover {
  background-color: var(--coral);
}

.newsletter-form {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 6px 6px 6px 18px;
  max-width: 420px;
}

.newsletter-input {
  flex: 1;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-submit-btn {
  padding: 10px 22px;
  background-color: #FFFFFF;
  color: #121316;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 9999px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light-muted);
}

/* ==========================================================================
   Modals & Drawers
   ========================================================================== */
.contact-drawer-overlay,
.video-modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-drawer-overlay.active,
.video-modal-backdrop.active {
  display: flex;
}

.contact-drawer-card,
.video-modal-card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 28px;
  max-width: 480px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.video-modal-card {
  max-width: 800px;
  padding: 16px;
}

.modal-video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #F0F2F5;
  color: #121316;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background-color: var(--coral);
  color: #FFFFFF;
}

.drawer-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.drawer-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-input-group label {
  font-size: 12px;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: #F8F9FA;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
}

.form-input:focus {
  border-color: var(--coral);
  background-color: #FFFFFF;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-banner-card { height: 520px; }
  .hero-title { font-size: 38px; }
  .dark-features-split { grid-template-columns: 1fr; gap: 40px; }
  .visual-frame { height: 380px; }
  .solutions-grid { grid-template-columns: 1fr; gap: 24px; }
  .solution-img-box { height: 300px; }
  .footer-content-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .floating-badge-topleft, .floating-badge-bottomright { display: none; }
  .inner-grid, .inner-grid.reverse { grid-template-columns: 1fr; }
  .inner-grid-image { height: 160px; }
}

@media (max-width: 768px) {
  .nav-links-wrapper,
  .nav-actions .btn-pill-outline,
  .nav-actions .btn-pill-solid {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content { padding: 48px 24px; }
  .hero-title { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .card-img-wrapper { height: 200px; }
  .dark-features-section { margin: 0 8px 48px 8px; padding: 60px 0; border-radius: 28px; }
  .dark-feature-title { font-size: 30px; }
  .section-title-dark { font-size: 28px; }
  .central-testimonial-box { padding: 24px 20px; margin: 0 12px; }
  .banner-carousel-arrow { display: none; }
  .leadership-floating-box { padding: 32px 20px; }
  .footer-tagline { font-size: 28px; }
  .footer-links-group { grid-template-columns: 1fr; gap: 24px; }
  .policy-container { padding: 24px 16px; }
  .myth-grid { grid-template-columns: 1fr; }
}
