/* ========================================================================= */
/* PREMIUM REDESIGN STYLES - THIEN THANH FARM */
/* Modern Agricultural Premium Aesthetic */
/* ========================================================================= */

/* ========================================================================= */
/* 1. HERO SECTION IMPROVEMENTS */
/* ========================================================================= */

/* Softer Gradient Overlay with Photo Blend */
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(10, 35, 66, 0.5) 0%, 
    rgba(10, 35, 66, 0.3) 50%, 
    rgba(246, 198, 91, 0.2) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.15);
}

/* Enhanced Hero Title with Montserrat ExtraBold */
.modern-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900 !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line-3.text-gradient {
  background: linear-gradient(135deg, #F6C65B 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(246, 198, 91, 0.5));
}

/* Enhanced CTA Button - Larger with Smooth Animation */
.cta-btn {
  background: linear-gradient(135deg, #F6C65B 0%, #F0B740 100%);
  color: #0A2342 !important;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(246, 198, 91, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  font-weight: 700;
  animation: ctaEntrance 1s ease-out 0.8s both;
}

@keyframes ctaEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-btn:hover {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a5c 100%);
  color: white !important;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 50px rgba(10, 35, 66, 0.6);
}

.cta-icon {
  width: 50px;
  height: 50px;
  background: rgba(10, 35, 66, 0.2);
  animation: pulse-phone 2s ease-in-out infinite;
  font-size: 1.5rem;
  border-radius: 50%;
}

.cta-btn:hover .cta-icon {
  background: rgba(246, 198, 91, 0.3);
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-hotline {
  font-size: 1.3rem;
  font-weight: 800;
}

@keyframes pulse-phone {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ========================================================================= */
/* 2. TRUST BADGES - REDESIGNED AS HORIZONTAL CARDS */
/* ========================================================================= */

.trust-badges-section {
  padding: 3rem 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, #FAFAF5 100%);
}

.trust-badges-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-badge {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.trust-badge:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(246, 198, 91, 0.3);
  border-color: #F6C65B;
}

.trust-badge .badge-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #F6C65B 0%, #FFD700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: #0A2342;
  box-shadow: 0 10px 30px rgba(246, 198, 91, 0.4);
  transition: all 0.3s ease;
}

.trust-badge:hover .badge-icon {
  transform: scale(1.15) rotate(360deg);
}

.trust-badge .badge-content h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0A2342;
  margin-bottom: 0.75rem;
}

.trust-badge .badge-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .trust-badges-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================================================= */
/* 3. FARM INTRODUCTION - WITH BEIGE BACKGROUND BOX */
/* ========================================================================= */

.about-content-wrapper {
  background: linear-gradient(135deg, #FAFAF5 0%, #FFF8E7 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.1);
  border: 1px solid rgba(246, 198, 91, 0.2);
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(10, 35, 66, 0.2);
  border: 8px solid #F6C65B;
  transition: all 0.3s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(246, 198, 91, 0.4);
}

.about-stats-section {
  margin-top: 3rem;
  padding: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #FAFAF5 0%, #FFF8E7 100%);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(10, 35, 66, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(246, 198, 91, 0.2);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(246, 198, 91, 0.25);
  border-color: #F6C65B;
}

.stat-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0A2342 0%, #1a3a5c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #F6C65B;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(10, 35, 66, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-card-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, #F6C65B 0%, #FFD700 100%);
  color: #0A2342;
}

.stat-card-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0A2342;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin: 0;
}

/* ========================================================================= */
/* 4. PREMIUM BREEDING SELECTION - DISTINCT GRADIENT CARDS */
/* ========================================================================= */

.product-section {
  background: linear-gradient(180deg, #ffffff 0%, #FAFAF5 100%);
}

.product-card {
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Unique Background for Each Card Type */
.product-card:nth-child(1) {
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
}

.product-card:nth-child(2) {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.product-card:nth-child(3) {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0A2342 0%, #F6C65B 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 0 50px rgba(246, 198, 91, 0.5), 0 0 100px rgba(246, 198, 91, 0.2);
  border-color: #F6C65B;
}

.product-card.featured {
  border-color: #F6C65B;
  background: linear-gradient(135deg, #FFF8E7 0%, #FAFAF5 100%);
}

.product-card.featured::before {
  transform: scaleX(1);
}

.product-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #0A2342 0%, #1a3a5c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #F6C65B;
  font-size: 3rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(10, 35, 66, 0.3);
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(246, 198, 91, 0.4);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #F6C65B 0%, #FFD700 100%);
  color: #0A2342;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(246, 198, 91, 0.4);
}

/* ========================================================================= */
/* 4. STANDARD BREEDING PROCESS - HORIZONTAL TIMELINE */
/* ========================================================================= */

.process-section {
  background: linear-gradient(135deg, #FAFAF5 0%, #FFF8E7 50%, #FAFAF5 100%);
}

.process-timeline {
  position: relative;
  padding: 3rem 0;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
}

.timeline-line {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, 
    #0A2342 0%, 
    #F6C65B 50%, 
    #0A2342 100%);
  z-index: 0;
  border-radius: 2px;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Timeline Connector Lines */
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 65px; /* Half of timeline-icon-wrapper height */
  left: 50%;
  width: calc(100% - 130px);
  height: 4px;
  background: linear-gradient(90deg, #F6C65B 0%, #FFD700 50%, #F6C65B 100%);
  z-index: -1;
  box-shadow: 0 2px 8px rgba(246, 198, 91, 0.3);
}

.timeline-step:hover {
  transform: translateY(-10px);
}

.timeline-icon-wrapper {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #FAFAF5 0%, #ffffff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.15);
  border: 5px solid #F6C65B;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-step:hover .timeline-icon-wrapper {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(246, 198, 91, 0.4);
  border-color: #0A2342;
}

.timeline-icon {
  font-size: 3rem;
  color: #0A2342;
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-icon {
  color: #F6C65B;
  transform: rotate(360deg);
}

.timeline-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F6C65B 0%, #FFD700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #0A2342;
  box-shadow: 0 4px 15px rgba(246, 198, 91, 0.5);
}

.timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 0.75rem;
}

.timeline-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  padding: 0 1rem;
}

.timeline-tooltip {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #0A2342;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(10, 35, 66, 0.3);
}

.timeline-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #0A2342 transparent;
}

.timeline-step:hover .timeline-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ========================================================================= */
/* 5. BLOG & NEWS - MAGAZINE-STYLE LAYOUT */
/* ========================================================================= */

.blog-magazine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
}

.blog-card-large {
  grid-row: span 2;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(10, 35, 66, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 35, 66, 0.15);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.blog-card-large .blog-image-wrapper {
  padding-top: 100%;
}

.blog-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #F6C65B 0%, #FFD700 100%);
  color: #0A2342;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-large .blog-title {
  font-size: 1.75rem;
}

.blog-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: #999;
  margin-top: auto;
}

.blog-read-more {
  color: #0A2342;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: #F6C65B;
  gap: 0.75rem;
}

/* ========================================================================= */
/* 6. IMAGE GALLERY - 3x3 GRID WITH LIGHTBOX */
/* ========================================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  padding-top: 75%; /* 4:3 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(10, 35, 66, 0.08);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(10, 35, 66, 0.2);
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(10, 35, 66, 0.85) 0%, 
    rgba(246, 198, 91, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0A2342;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* ========================================================================= */
/* 7. CUSTOMER SUCCESS STORIES - CAROUSEL */
/* ========================================================================= */

.testimonials-section {
  background: linear-gradient(135deg, #FFF8E7 0%, #FAFAF5 50%, #ffffff 100%);
}

.testimonial-carousel {
  position: relative;
  padding: 3rem 0;
}

.testimonial-cards-wrapper {
  display: flex;
  gap: 2rem;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 35, 66, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(246, 198, 91, 0.2);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(10, 35, 66, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #F6C65B;
  box-shadow: 0 4px 15px rgba(246, 198, 91, 0.3);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.85rem;
  color: #666;
}

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

.star {
  color: #F6C65B;
  font-size: 1.2rem;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  position: relative;
  z-index: 1;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: #0A2342;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: #F6C65B;
  color: #0A2342;
  transform: scale(1.1);
}

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

.carousel-dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #F6C65B;
  width: 30px;
  border-radius: 6px;
}

/* ========================================================================= */
/* 8. CONTACT & LOCATION - MODERN FORM */
/* ========================================================================= */

.contact-form-wrapper {
  background: linear-gradient(135deg, #F2F6F9 0%, #ffffff 100%);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0A2342;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: block;
}

.form-control {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  border-color: #F6C65B;
  box-shadow: 0 0 0 4px rgba(246, 198, 91, 0.1);
  outline: none;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a5c 100%);
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(10, 35, 66, 0.3);
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #F6C65B 0%, #FFD700 100%);
  color: #0A2342;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(246, 198, 91, 0.4);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10, 35, 66, 0.2);
  height: 100%;
  min-height: 500px;
  border: 3px solid #F6C65B;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================================================= */
/* 9. FOOTER REDESIGN */
/* ========================================================================= */

footer {
  background: linear-gradient(135deg, #0A2342 0%, #051220 100%);
  color: white;
  padding: 4rem 0 2rem;
  font-size: 1.05rem;
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #F6C65B;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #F6C65B;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
  color: #F6C65B;
  transform: translateX(5px);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-icon {
  width: 45px;
  height: 45px;
  background: rgba(246, 198, 91, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6C65B;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: #F6C65B;
  color: #0A2342;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 25px rgba(246, 198, 91, 0.5);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 198, 91, 0.2);
}

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

.footer-bottom .developer-credit {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-logo-small {
  width: 80px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-logo-small:hover {
  opacity: 1;
}

/* ========================================================================= */
/* 10. RESPONSIVE DESIGN */
/* ========================================================================= */

@media (max-width: 992px) {
  .blog-magazine-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card-large {
    grid-row: span 1;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-container {
    flex-wrap: wrap;
  }
  
  .timeline-line {
    display: none;
  }
  
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

/* ========================================================================= */
/* 10. MOBILE RESPONSIVE OPTIMIZATIONS (≤768px) */
/* Professional Touch-Friendly UX/UI */
/* ========================================================================= */

@media (max-width: 768px) {
  
  /* ===== NAVBAR MOBILE FIXES ===== */
  .enhanced-navbar {
    padding: 0.8rem 0 !important;
  }
  
  /* Background cho navbar khi hamburger mở */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.15);
    z-index: 1040;
  }
  
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(255, 255, 255, 0.98);
  }
  
  /* Giảm kích thước nav-links */
  .navbar-nav .nav-link {
    padding: 0.5rem 0.875rem !important;
    font-size: 0.9rem !important;
    margin: 0.15rem 0;
    background: transparent !important;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:active {
    background: rgba(10, 35, 66, 0.08) !important;
    color: #0A2342 !important;
  }
  
  .navbar-nav .nav-link i {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  
  .navbar-nav .nav-link span {
    font-size: 0.9rem;
  }
  
  .navbar-nav .contact-btn {
    background: rgba(246, 198, 91, 0.1) !important;
  }
  
  .navbar-nav .contact-btn:hover {
    background: rgba(246, 198, 91, 0.2) !important;
  }
  
  /* Reduced logo and heading sizes */
  .brand-icon img {
    height: 40px !important;
  }
  
  .brand-name {
    font-size: 1.1rem !important;
  }
  
  .brand-subtitle {
    font-size: 0.7rem !important;
  }
  
  /* ===== HERO SECTION - MOBILE ===== */
  .hero-section {
    padding-top: 90px;
  }
  
  /* Ẩn hero-badge "Uy tín - Chất lượng - Tận tâm" */
  .hero-badge {
    display: none !important;
  }
  
  /* Softer background overlay for better legibility */
  .hero-gradient-overlay {
    background: linear-gradient(135deg, 
      rgba(10, 35, 66, 0.6) 0%, 
      rgba(10, 35, 66, 0.4) 50%, 
      rgba(246, 198, 91, 0.2) 100%);
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .modern-hero-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
  }
  
  .title-line-3 {
    font-size: 1.75rem !important;
  }
  
  /* Full-width CTA with better touch target */
  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    min-height: 52px;
  }
  
  .cta-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .cta-label {
    font-size: 0.8rem;
  }
  
  .cta-hotline {
    font-size: 1.1rem;
  }
  
  /* ===== Z-INDEX & SPACING FIXES ===== */
  .top-bar {
    z-index: 1060;
  }
  
  .enhanced-navbar {
    z-index: 1050;
  }
  
  .floating-social {
    z-index: 999;
  }
  
  /* Hero content spacing adjustment */
  .hero-main-content {
    padding-top: 0.5rem;
  }
  
  .hero-description {
    margin-top: 1rem;
  }
  
  .modern-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .hero-actions {
    margin-top: 1rem;
  }
  
  /* Scroll indicator */
  .scroll-indicator {
    bottom: 2rem;
    z-index: 10;
  }
  
  .scroll-down {
    font-size: 0.85rem;
  }
  
  .scroll-down i {
    font-size: 1.2rem;
  }
  
  /* ===== TRUST BADGES - MOBILE ===== */
  .trust-badges-section {
    padding: 2rem 0 !important;
  }
  
  .trust-badges-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1rem;
  }
  
  .trust-badge {
    padding: 2rem 1.5rem;
  }
  
  .trust-badge .badge-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .trust-badge .badge-content h6 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .trust-badge .badge-content p {
    font-size: 0.9rem;
  }
  
  /* ===== FARM INTRODUCTION - MOBILE ===== */
  .about-content-wrapper {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .about-image-wrapper {
    margin-bottom: 1.5rem;
  }
  
  .about-image-wrapper img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.15);
  }
  
  /* Statistics Cards */
  .stat-card {
    margin-bottom: 1rem;
    padding: 1.5rem 1rem;
  }
  
  .stat-card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
  }
  
  .stat-card-number {
    font-size: 2rem;
  }
  
  .stat-card-label {
    font-size: 0.9rem;
  }
  
  /* ===== BREED QUALITY SECTION - MOBILE ===== */
  .product-section {
    padding: 2rem 0;
  }
  
  .product-card {
    margin-bottom: 1.5rem;
    padding: 2rem 1.5rem;
  }
  
  /* Alternating light backgrounds */
  .product-card:nth-child(1) {
    background: linear-gradient(135deg, #F0F8F0 0%, #E8F5E9 100%);
  }
  
  .product-card:nth-child(2) {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE0B2 100%);
  }
  
  .product-card:nth-child(3) {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  }
  
  .product-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .product-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  /* Full-width CTA buttons */
  .product-cta .btn {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
  
  /* ===== BREEDING PROCESS - MOBILE ===== */
  .process-section {
    padding: 2rem 0;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 0;
  }
  
  .timeline-step {
    flex: 0 0 100%;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2.5rem;
    text-align: left;
  }
  
  /* Vertical connector line */
  .timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 80px;
    width: 3px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, #F6C65B 0%, #FFD700 100%);
    z-index: 0;
  }
  
  .timeline-step:not(:last-child)::after {
    display: none;
  }
  
  .timeline-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 0 1rem 0;
    border: 4px solid #F6C65B;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .timeline-icon {
    font-size: 2rem;
  }
  
  .timeline-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    top: -8px;
    right: -8px;
  }
  
  .timeline-title {
    font-size: 1.1rem;
    padding-left: 1rem;
  }
  
  .timeline-description {
    padding: 0 0 0 1rem;
    font-size: 0.9rem;
  }
  
  /* ===== BLOG SECTION - MOBILE ===== */
  .blog-magazine-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-card-large {
    grid-row: span 1;
  }
  
  /* Uniform 16:9 aspect ratio */
  .blog-image-wrapper {
    padding-top: 56.25%; /* 16:9 */
  }
  
  .blog-card-large .blog-image-wrapper {
    padding-top: 56.25%; /* 16:9 */
  }
  
  .blog-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-card-large .blog-title {
    font-size: 1.25rem;
  }
  
  /* Limit excerpt to 2 lines */
  .blog-excerpt {
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .blog-read-more {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  /* ===== GALLERY - MOBILE ===== */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .gallery-item {
    padding-top: 75%; /* 4:3 aspect ratio */
    border-radius: 8px;
  }
  
  .gallery-zoom-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* ===== TESTIMONIALS - MOBILE ===== */
  .testimonials-section {
    padding: 2rem 0;
  }
  
  .testimonial-carousel {
    padding: 2rem 0;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    padding: 2rem 1.5rem;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
  
  .testimonial-name {
    font-size: 1rem;
  }
  
  .testimonial-location {
    font-size: 0.8rem;
  }
  
  /* Limit review text to 3 lines */
  .testimonial-text {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .carousel-prev {
    left: -15px;
  }
  
  .carousel-next {
    right: -15px;
  }
  
  /* ===== CONTACT - MOBILE ===== */
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  /* Input height 44px minimum */
  .form-control {
    min-height: 44px;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  
  /* 4px gap between label and field */
  .form-label {
    margin-bottom: 4px;
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  textarea.form-control {
    min-height: 120px;
  }
  
  .contact-submit-btn {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
  }
  
  /* Full-width map with rounded corners */
  .map-wrapper {
    min-height: 300px;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.15);
  }
  
  /* ===== FOOTER - MOBILE ===== */
  footer {
    padding: 3rem 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    margin: 0 0.35rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .developer-credit {
    font-size: 0.8rem;
  }
  
  /* ===== LIGHTBOX - MOBILE ===== */
  .lightbox-content img {
    max-height: 60vh;
  }
  
  .lightbox-caption {
    padding: 1rem 1.5rem;
    margin-top: 1rem;
  }
  
  .lightbox-caption h5 {
    font-size: 1.1rem;
  }
  
  .lightbox-caption p {
    font-size: 0.85rem;
  }
  
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
  
  .lightbox-prev {
    left: 0.5rem;
  }
  
  .lightbox-next {
    right: 0.5rem;
  }
  
  .lightbox-counter {
    top: 1rem;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
  
  /* ===== GENERAL MOBILE SPACING ===== */
  section {
    padding: 2rem 0 !important;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h2.display-4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .divider {
    margin: 1rem auto 1.5rem;
  }
}

/* ===== EXTRA SMALL DEVICES (≤576px) ===== */
@media (max-width: 576px) {
  .modern-hero-title {
    font-size: 1.5rem !important;
  }
  
  .title-line-3 {
    font-size: 1.75rem !important;
  }
  
  .cta-btn {
    padding: 1rem 1.5rem;
  }
  
  .trust-badge {
    padding: 1.5rem 1rem;
  }
  
  .product-card {
    padding: 1.5rem 1rem;
  }
  
  .timeline-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .timeline-icon {
    font-size: 1.75rem;
  }
  
  h2.display-4 {
    font-size: 1.5rem;
  }
}

/* ========================================================================= */
/* FLOATING CALL BUTTON - MOBILE */
/* ========================================================================= */

@media (max-width: 768px) {
  .floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F6C65B 0%, #F0B740 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(246, 198, 91, 0.5);
    z-index: 998;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-call 2.5s ease-in-out infinite;
  }
  
  .floating-call-btn:hover,
  .floating-call-btn:active {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(246, 198, 91, 0.6);
  }
  
  .floating-call-btn i {
    font-size: 1.5rem;
    color: #0A2342;
  }
  
  @keyframes pulse-call {
    0%, 100% {
      box-shadow: 0 6px 20px rgba(246, 198, 91, 0.5);
    }
    50% {
      box-shadow: 0 6px 20px rgba(246, 198, 91, 0.5), 
                  0 0 0 8px rgba(246, 198, 91, 0.2),
                  0 0 0 16px rgba(246, 198, 91, 0.1);
    }
  }
}

/* ========================================================================= */
/* 11. UTILITY CLASSES */
/* ========================================================================= */

.text-navy {
  color: #0A2342 !important;
}

.text-yellow {
  color: #F6C65B !important;
}

.bg-cream {
  background-color: #FAFAF5 !important;
}

.bg-navy {
  background-color: #0A2342 !important;
}

.bg-yellow {
  background-color: #F6C65B !important;
}

.gradient-navy-yellow {
  background: linear-gradient(135deg, #0A2342 0%, #F6C65B 100%);
}

.shadow-premium {
  box-shadow: 0 10px 40px rgba(10, 35, 66, 0.15) !important;
}

/* ========================================================================= */
/* 12. LIGHTBOX MODAL */
/* ========================================================================= */

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1;
}

.lightbox-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  max-width: 800px;
  text-align: center;
}

.lightbox-caption h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 0.5rem;
}

.lightbox-caption p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.lightbox-counter {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A2342;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  color: #0A2342;
  z-index: 3;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #F6C65B;
  transform: scale(1.1);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
  
  .lightbox-prev {
    left: 1rem;
  }
  
  .lightbox-next {
    right: 1rem;
  }
  
  .lightbox-counter {
    top: 1rem;
  }
}
