/* 
 * Chaitanya Poultry Needs - Design System & Stylesheet
 * Elegant dark-emerald and soft gold aesthetic, premium typography, glassmorphism effects.
 */

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

/* --- CUSTOM PROPERTIES --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Color Palette */
  --bg-primary: #081611;
  --bg-secondary: #0c2018;
  --bg-card: rgba(15, 38, 30, 0.7);
  --bg-card-hover: rgba(22, 54, 43, 0.85);
  --bg-glass: rgba(10, 26, 20, 0.5);
  
  --border-color: rgba(24, 187, 129, 0.15);
  --border-glow: rgba(24, 187, 129, 0.3);
  
  --primary: #10b981; /* Emerald */
  --primary-hover: #34d399; /* Mint */
  --primary-light: rgba(16, 185, 129, 0.15);
  --secondary: #fbbf24; /* Soft Gold/Amber */
  --secondary-hover: #f59e0b;
  
  --text-primary: #f3f4f6; /* Pearl White */
  --text-secondary: #9ca3af; /* Silver */
  --text-muted: #6b7280;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6.5rem 0;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- GLASS CONTAINER --- */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #14b8a6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--primary);
}

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

.btn-accent {
  background: linear-gradient(135deg, var(--secondary) 0%, #d97706 100%);
  color: #081611;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #fcd34d 0%, var(--secondary-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35);
}

.btn-icon-only {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-icon-only:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: #fff;
}

/* --- NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(8, 22, 17, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(24, 187, 129, 0.1);
  transition: all var(--transition-fast);
}

header.scrolled {
  height: 70px;
  background: rgba(8, 22, 17, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}

.logo i {
  color: var(--primary);
  font-size: 1.75rem;
  filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(12, 45, 34, 0.4) 0%, rgba(8, 22, 17, 1) 90%);
}

.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.25;
  background-image: url('assets/hero_poultry.png');
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp var(--transition-slow) forwards;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  color: var(--primary-hover);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-hover);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeIn var(--transition-slow) 0.3s forwards;
  opacity: 0;
}

.hero-glow-card {
  width: 100%;
  max-width: 400px;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-glow-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.card-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.card-feature:last-child {
  margin-bottom: 0;
}

.card-feature-icon {
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.card-feature-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.card-feature-info p {
  font-size: 0.875rem;
}

/* --- DYNAMIC DOSAGE CALCULATOR --- */
.calculator-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.calc-input-panel {
  padding: 3rem;
}

.calc-form-group {
  margin-bottom: 1.75rem;
}

.calc-form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.calc-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-input-wrapper i {
  position: absolute;
  left: 1.25rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.calc-control {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-fast);
}

.calc-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

select.calc-control {
  appearance: none;
  cursor: pointer;
}

.calc-input-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 1.25rem;
  color: var(--text-secondary);
  pointer-events: none;
}

.calc-input-wrapper.no-arrow::after {
  display: none;
}

.calc-bird-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bird-type-btn {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.bird-type-btn i {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.bird-type-btn span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bird-type-btn.active {
  background: var(--primary-light);
  border-color: var(--primary);
}

.bird-type-btn.active i {
  color: var(--primary-hover);
}

.bird-type-btn.active span {
  color: #fff;
}

.calc-results-panel {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-left: 2px solid rgba(24, 187, 129, 0.1);
}

.calc-placeholder {
  text-align: center;
  padding: 2rem;
}

.calc-placeholder i {
  font-size: 4rem;
  color: rgba(16, 185, 129, 0.2);
  margin-bottom: 1.5rem;
}

.calc-placeholder h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.calc-output {
  display: none;
  animation: fadeIn var(--transition-normal) forwards;
}

.output-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.output-header h4 {
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.output-product-title {
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.output-tag {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 600;
}

.dosage-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.metric-lbl {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.calc-instructions {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.calc-instructions h5 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-instructions h5 i {
  color: var(--primary);
}

.calc-instructions ul {
  list-style-type: none;
  padding-left: 0.5rem;
}

.calc-instructions li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.25rem;
}

.calc-instructions li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* --- PRODUCT CATALOG --- */
.catalog-header-bar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.search-filter-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 1.5rem;
  align-items: center;
}

.catalog-search {
  position: relative;
}

.catalog-search input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.catalog-search input:focus {
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-glow);
}

.catalog-search i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 5px;
}

.filter-tabs::-webkit-scrollbar {
  height: 4px;
}

.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: #fff;
}

.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #081611;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.product-card-img-wrapper {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.14) 0%, rgba(15, 23, 42, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-normal);
}

.product-card:hover .product-card-img {
  transform: scale(1.08) translateY(-4px);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 22, 17, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-hover);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-specs {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.product-spec-lbl {
  color: var(--text-muted);
  display: block;
}

.product-spec-val {
  color: #fff;
  font-weight: 600;
}

.product-card-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.75rem;
}

.product-card-footer .btn {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* --- SERVICES & CONSULTING --- */
.services-section {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #081611;
  transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  margin-top: auto;
}

.service-features-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features-list li i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* --- BIOSECURITY --- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.bio-card-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-accordion-item {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(12, 45, 34, 0.4);
  overflow: hidden;
}

.bio-header {
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition-fast);
}

.bio-header:hover {
  background: rgba(16, 185, 129, 0.05);
}

.bio-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bio-title-wrap i {
  color: var(--primary);
  font-size: 1.15rem;
}

.bio-title-wrap h4 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.bio-arrow {
  color: var(--text-secondary);
  transition: transform var(--transition-fast);
}

.bio-accordion-item.open .bio-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.bio-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  border-top: 1px solid transparent;
}

.bio-accordion-item.open .bio-content {
  border-top: 1px solid var(--border-color);
  max-height: 250px; /* arbitrary height to slide down to */
}

.bio-body {
  padding: 1.5rem 1.75rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.bio-badge-callout {
  padding: 3rem;
  text-align: center;
  position: relative;
}

.bio-badge-callout i.main-shield {
  font-size: 4.5rem;
  color: var(--primary);
  filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
  margin-bottom: 2rem;
}

.bio-badge-callout h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.bio-badge-callout p {
  margin-bottom: 2rem;
}

/* --- CONTACT & INQUIRY --- */
.contact-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.contact-detail-info p {
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.inquiry-panel {
  padding: 3.5rem;
}

.inquiry-basket-container {
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.inquiry-basket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.inquiry-basket-header h4 {
  font-size: 1.1rem;
  color: #fff;
}

.inquiry-basket-header span {
  font-size: 0.85rem;
  background: var(--primary);
  color: #081611;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  font-weight: 700;
}

.basket-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.basket-item {
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.basket-item button {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.basket-item button:hover {
  color: #ef4444;
}

.basket-empty-msg {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-control-wrap {
  position: relative;
}

.form-control-wrap input,
.form-control-wrap textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

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

.form-control-wrap input:focus,
.form-control-wrap textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

/* Dynamic Inquiry Receipt Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 12, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: 90%;
  max-width: 550px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(16, 185, 129, 0.15);
  transform: translateY(30px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: #fff;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: #fff;
}

/* Detail modal styles */
.modal-product-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-product-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: 16px;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
  padding: 1rem;
  border: 1px solid var(--border-color);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.modal-spec-item {
  text-align: center;
}

.modal-spec-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.modal-spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.modal-product-info h5 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.modal-product-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* Receipt styles */
.receipt-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
}

.receipt-text {
  text-align: center;
  margin-bottom: 2.5rem;
}

.receipt-text h4 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.receipt-details-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.receipt-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.receipt-row span.label {
  color: var(--text-muted);
}

.receipt-row span.val {
  color: #fff;
  text-align: right;
}

/* --- FOOTER --- */
footer {
  background: #040c09;
  border-top: 1px solid rgba(24, 187, 129, 0.1);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-col p {
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.925rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-hover);
  padding-left: 5px;
}

.newsletter-form {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: #fff;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 1.25rem;
  border-radius: 50px;
  background: var(--primary);
  color: #081611;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--primary-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* --- KEYFRAMES & ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll Fade In */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-fade.animated {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-bg {
    width: 100%;
    opacity: 0.15;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  }
  
  .hero-image-wrapper {
    display: none; /* Hide glow card on smaller screens to prioritize spacing */
  }
  
  .calc-grid,
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .calc-results-panel {
    border-left: none;
    border-top: 2px solid rgba(24, 187, 129, 0.1);
    padding-top: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  
  .footer-col:last-child {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(8, 22, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(24, 187, 129, 0.1);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    opacity: 0;
    pointer-events: none;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .search-filter-wrap {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .inquiry-panel,
  .calc-input-panel,
  .calc-results-panel {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-col:last-child,
  .footer-col:first-child {
    grid-column: span 2;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .calc-bird-types {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col,
  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: span 1;
  }
}

/* ==========================================================================
   WHATSAPP & PDF EXPORT STYLES
   ========================================================================== */
.calc-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

.btn-pdf {
  background: #dc2626;
  color: #ffffff !important;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-pdf:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.45);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
}

/* PDF Export Template Styling */
#pdf-report-template {
  position: absolute;
  top: 0;
  left: 0;
  width: 790px;
  background: #ffffff;
  color: #1e293b;
  opacity: 0;
  pointer-events: none;
  z-index: -9999;
}

#pdf-report-template.rendering-pdf {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 99999;
  background: #ffffff;
}




/* --- E-COMMERCE & SHOPPING CART STYLES --- */
.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn-trigger {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-btn-trigger:hover {
  background: var(--primary);
  color: #081611;
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.product-category-tag {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
}

.product-rating {
  font-size: 0.8rem;
  color: #f59e0b;
  font-weight: 600;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-current {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.stock-status {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
}

.product-card-discount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(239, 68, 68, 0.9);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 12, 10, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #0f172a;
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.cart-drawer-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.cart-qty-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  min-width: 20px;
  text-align: center;
}

.cart-remove-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.95);
}

.cart-summary-card {
  margin-bottom: 1.25rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.cart-summary-row.total-row {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.5rem;
}

.cart-summary-row.total-row .total-amount {
  color: var(--primary);
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-secondary);
}

.cart-empty-state i {
  font-size: 3.5rem;
  color: rgba(16, 185, 129, 0.2);
  margin-bottom: 1rem;
}


/* --- ANTIGRAVITY HERO PHOTOGRAPHY STYLES --- */
.hero-antigravity-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.25);
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
  animation: floatHeroFrame 6s ease-in-out infinite;
}

.hero-antigravity-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 28px;
  filter: contrast(1.08) brightness(1.04);
  transition: transform 0.5s ease;
}

.hero-antigravity-frame:hover .hero-antigravity-img {
  transform: scale(1.03);
}

.hero-float-badge {
  position: absolute;
  background: rgba(8, 22, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 10;
}

.hero-float-badge i {
  color: var(--primary);
  font-size: 1rem;
}

.hero-float-badge.badge-top {
  top: 1.5rem;
  right: 1.5rem;
}

.hero-float-badge.badge-bottom {
  bottom: 1.5rem;
  left: 1.5rem;
}

@keyframes floatHeroFrame {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}


/* --- TOP ANNOUNCEMENT BAR & VENTRI DISTRIBUTOR STYLES --- */
.top-announcement-bar {
  background: linear-gradient(90deg, #064e3b 0%, #0284c7 50%, #065f46 100%);
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.distributor-badge i {
  color: #f59e0b;
}

.announcement-right {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.95;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.distributor-subtag {
  font-size: 0.65rem;
  color: var(--primary-hover);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: -2px;
}

/* Ventri Distributor Trust Banner */
.distributor-trust-banner {
  background: rgba(16, 185, 129, 0.06);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2.5rem 0;
  margin-bottom: 2rem;
}

.distributor-trust-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.distributor-seal-box {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(2, 132, 199, 0.2) 100%);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.distributor-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.distributor-trust-info h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.distributor-trust-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 750px;
}

.distributor-badges-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.trust-badge-pill {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.825rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.trust-badge-pill i {
  color: var(--primary);
}

@media (max-width: 992px) {
  .distributor-trust-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .distributor-seal-box {
    margin: 0 auto;
  }
  .distributor-badges-col {
    align-items: center;
  }
}
