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

:root {
  --brand-green: #6c8a2b;
  --brand-gold: #efd67a;
  --brand-brown: #bca26b;
  --brand-white: #ffffff;
  --gray-900: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-600: #666666;
  --gray-500: #808080;
  --gray-300: #cccccc;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --success-green: #22c55e;
  --error-red: #ef4444;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--brand-white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin: 0;
  color: var(--gray-600);
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--brand-gold);
  color: var(--gray-900);
}

.btn-primary:hover {
  background-color: #e5cc6f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 214, 122, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--brand-green);
  color: white;
}

.btn-green {
  background-color: var(--brand-green);
  color: white;
}

.btn-green:hover {
  background-color: #5a7324;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 138, 43, 0.4);
}

.btn-large {
  padding: 1rem 2rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.btn i {
  width: 1.25rem;
  height: 1.25rem;
}

.section-tag,
.badge-tag {
  display: inline-block;
  background-color: rgba(108, 138, 43, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-tag span,
.badge-tag span {
  color: var(--brand-green);
  font-weight: 500;
  margin: 0;
}

.section-tag-gold {
  background-color: rgba(239, 214, 122, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin: 1rem 0;
}

.section-header p {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  background-color: var(--brand-green);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.logo-text h3 {
  color: var(--brand-green);
  margin: 0;
  font-size: 1.25rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-700);
  font-weight: 400;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--brand-green);
}

.cta-desktop {
  display: block;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-700);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  color: var(--gray-700);
  text-align: left;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.nav-link-mobile:hover {
  color: var(--brand-green);
}

.btn-mobile {
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.6) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

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

.hero-title {
  font-size: 3.5rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.hero-tagline {
  color: var(--brand-green);
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-products {
  display: none;
}

.product-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 16rem;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.product-card h4 {
  text-align: center;
  margin: 0;
}

.product-card-1 {
  animation: float 3s ease-in-out infinite;
}

.product-card-2 {
  margin-top: 3rem;
  animation: float 3s ease-in-out infinite 0.5s;
}

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

.about {
  padding: 5rem 0;
  background: linear-gradient(to bottom, white, rgba(108, 138, 43, 0.05));
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 31.25rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-badge {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--brand-gold);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 20rem;
}

.about-badge p {
  color: var(--gray-900);
  margin: 0;
}

.about-content h2 {
  margin: 1rem 0 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(108, 138, 43, 0.2);
}

.license-icon {
  background-color: var(--brand-green);
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.license-icon i {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.license-title {
  color: var(--gray-900);
  font-weight: 500;
  margin: 0;
}

.license-number {
  color: var(--brand-green);
  margin: 0;
}

.benefits {
  padding: 5rem 0;
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.benefits-column {
  border-radius: 1.5rem;
  padding: 2rem;
}

.ghee-benefits {
  background: linear-gradient(
    to bottom right,
    rgba(239, 214, 122, 0.2),
    rgba(188, 162, 107, 0.2)
  );
}

.milk-benefits {
  background: linear-gradient(
    to bottom right,
    rgba(108, 138, 43, 0.1),
    rgba(108, 138, 43, 0.2)
  );
}

.benefits-column h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.benefit-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-gold {
  background-color: var(--brand-gold);
}

.benefit-icon-green {
  background-color: var(--brand-green);
}

.benefit-icon i {
  width: 1.5rem;
  height: 1.5rem;
}

.benefit-icon-gold i {
  color: var(--gray-900);
}

.benefit-icon-green i {
  color: white;
}

.benefit-text h4 {
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.benefit-text p {
  color: var(--gray-600);
  margin: 0;
}

.products {
  padding: 5rem 0;
  background: linear-gradient(to bottom, rgba(108, 138, 43, 0.05), white);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-item {
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

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

.product-item:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--brand-gold);
  color: var(--gray-900);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-coming {
  background-color: var(--gray-500);
  color: white;
}

.product-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem;
  border-radius: 50%;
}

.product-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-green);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 1.125rem;
}

.cattle-feeding {
  padding: 5rem 0;
  background-color: white;
}

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

.cattle-content h2 {
  margin: 1rem 0 1.5rem;
}

.cattle-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.fodder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.fodder-item {
  background-color: rgba(108, 138, 43, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.fodder-item:hover {
  background-color: rgba(108, 138, 43, 0.1);
}

.fodder-icon {
  background-color: var(--brand-green);
  padding: 0.75rem;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fodder-icon i {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.fodder-item p {
  color: var(--gray-900);
  margin: 0;
}

.cattle-carousel {
  position: relative;
}

.carousel {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.carousel-track {
  position: relative;
  height: 31.25rem;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.carousel-btn i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-900);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background-color: var(--gray-500);
}

.indicator.active {
  width: 2rem;
  background-color: var(--brand-green);
}

.awareness {
  padding: 5rem 0;
  background: linear-gradient(to bottom, white, rgba(108, 138, 43, 0.05));
}

.comparison-table {
  background-color: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(to right, var(--brand-green), #5a7324);
  color: white;
  padding: 1.5rem;
}

.table-header .table-cell {
  text-align: center;
}

.table-header h3 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
}

.table-header p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.table-header .highlight {
  color: var(--brand-gold);
}

.table-body {
  border-bottom: 1px solid var(--gray-200);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  transition: background-color 0.3s ease;
}

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

.table-row:hover {
  background-color: var(--gray-100);
}

.table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.icon-negative {
  color: var(--error-red);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-positive {
  color: var(--success-green);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.table-cell span {
  color: var(--gray-600);
}

.table-row .table-cell:last-child span {
  color: var(--gray-900);
  font-weight: 500;
}

.table-footer {
  background-color: rgba(239, 214, 122, 0.2);
  padding: 2rem;
  text-align: center;
}

.table-footer p {
  color: var(--gray-900);
  margin-bottom: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.highlight-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.highlight-icon {
  background-color: rgba(108, 138, 43, 0.1);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.highlight-icon-gold {
  background-color: rgba(239, 214, 122, 0.5);
}

.highlight-icon i {
  color: var(--brand-green);
  width: 2rem;
  height: 2rem;
}

.highlight-icon-gold i {
  color: var(--gray-900);
}

.highlight-card h4 {
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: var(--gray-600);
  margin: 0;
}

.testimonials {
  padding: 5rem 0;
  background: linear-gradient(to bottom, rgba(108, 138, 43, 0.05), white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: rgba(239, 214, 122, 0.2);
  padding: 0.75rem;
  border-radius: 50%;
}

.quote-icon i {
  color: var(--brand-green);
  width: 1.5rem;
  height: 1.5rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-filled {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-gold);
  fill: var(--brand-gold);
}

.testimonial-text {
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.customer-info img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.customer-info h4 {
  color: var(--gray-900);
  margin: 0;
  font-size: 1rem;
}

.customer-info p {
  color: var(--gray-500);
  margin: 0;
  font-size: 0.875rem;
}

.trust-banner {
  background: linear-gradient(to right, var(--brand-green), #5a7324);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  color: white;
  margin-top: 4rem;
}

.trust-banner h3 {
  color: white;
  margin-bottom: 1rem;
}

.trust-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  color: var(--brand-gold);
  font-weight: 600;
  margin: 0;
  font-family: var(--font-heading);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.25rem 0 0;
}

.contact {
  padding: 5rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: linear-gradient(
    to bottom right,
    rgba(108, 138, 43, 0.05),
    rgba(108, 138, 43, 0.1)
  );
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-gold {
  background: linear-gradient(
    to bottom right,
    rgba(239, 214, 122, 0.2),
    rgba(188, 162, 107, 0.2)
  );
}

.contact-icon {
  background-color: var(--brand-green);
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-gold {
  background-color: var(--brand-gold);
}

.contact-icon i {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.contact-icon-gold i {
  color: var(--gray-900);
}

.contact-text h4 {
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--gray-600);
  margin: 0;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  height: 16rem;
  background-color: var(--gray-200);
}

.contact-form-wrapper {
  background: linear-gradient(to bottom right, rgba(108, 138, 43, 0.05), white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--gray-900);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(108, 138, 43, 0.1);
}

.form-group textarea {
  resize: none;
}

.footer {
  background: linear-gradient(to bottom, var(--brand-green), #5a7324);
  color: white;
  padding: 4rem 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  background-color: white;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon i {
  color: var(--brand-green);
  width: 1.5rem;
  height: 1.5rem;
}

.footer-logo h3 {
  color: white;
  margin: 0;
}

.footer-tagline {
  color: white;
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
}

.footer-column h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links button {
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.footer-links button:hover {
  color: white;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--brand-gold);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.social-links a {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.social-links i {
  color: white;
  width: 1.25rem;
  height: 1.25rem;
}

.footer-license {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
}

.footer-license .license-title {
  color: var(--brand-gold);
  margin: 0;
}

.footer-license .license-number {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

.footer-legal button {
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-legal button:hover {
  color: white;
}

@media (max-width: 768px) {
  .nav-desktop,
  .cta-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .table-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .table-cell {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

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

  .about-badge {
    display: block;
  }

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

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

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
