/* ==================== GLOBAL STYLES ==================== */
/* Poppins font from local fonts folder */
/* @font-face {
  font-family: 'poppins';
  src: url('../fonts/Poppins/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-Regular.woff') format('woff');
  font-display: swap;
} */

/* CSS Variables for consistent theming */
:root {
  --primary-color: #011c09;
  --primary-dark: #218d45;
  --primary-light: #e9fbee;
  --secondary-color: #ffc107;
  --text-dark: #333;
  --text-light: #fff;
  --text-muted: #6c757d;
  --transition-base: 0.3s ease;
  --glass-bg: rgba(255, 255, 255, 0.116);
  --glass-border: rgba(255, 255, 255, 0.25);
}

/* Reset default margin & padding + set main font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

/* Body styling */
body {
  min-height: 100vh;
  position: relative;
  color: var(--text-dark);
  line-height: 1.6;

  /* Untuk Firefox */
  scrollbar-width: none;
  
  /* Untuk IE dan Edge */
  -ms-overflow-style: none;
}

/* Sembunyikan scrollbar untuk browser WebKit */
body::-webkit-scrollbar {
  display: none;
}


/* ==================== REUSABLE COMPONENTS ==================== */
/* Glassmorphism Effect */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* Background with overlay */
.with-bg-image {
  position: relative;
  overflow: hidden;
  background-image: url('../img/background1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.with-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Floating animation */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating-animation {
  animation: floating 3s ease-in-out infinite;
  will-change: transform;
}

/* Hover effects */
.hover-scale {
  transition: transform var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-shadow {
  transition: all var(--transition-base);
}

.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Card styles */
.card-hover-effect {
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-hover-effect:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-3px);
}

/* ==================== NAVBAR SECTION ==================== */
.navbar {
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1030; /* z-index Bootstrap untuk fixed-top */
  transition: all var(--transition-base);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.navbar.scrolled {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
  height: 40px;
  transition: all var(--transition-base);
}

.navbar.scrolled .navbar-brand img {
  height: 35px;
}

/* Desktop menu */
.desktopnav li a {
  color: #eaf6ff;
  font-size: 1.1rem;
  padding: 8px 18px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  z-index: 1;
  overflow: hidden;
}

.navbar.scrolled .desktopnav li a {
  color: var(--text-light);
}

.desktopnav li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 24px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 8px;
  backdrop-filter: blur(0px);
  pointer-events: none;
}

.desktopnav li a::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 120%;
  height: 220%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.15) 100%);
  opacity: 0;
  transform: skewX(-20deg) translateX(-100%);
  transition: opacity 0.3s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-radius: 12px;
  z-index: 2;
}

.desktopnav li a:hover,
.desktopnav li a:focus {
  color: #047200;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 4px 24px 0 rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .desktopnav li a:hover,
.navbar.scrolled .desktopnav li a:focus {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.20);
}

.desktopnav li a:hover::before,
.desktopnav li a:focus::before {
  opacity: 1;
  backdrop-filter: blur(8px);
}

.desktopnav li a:hover::after,
.desktopnav li a:focus::after {
  opacity: 1;
  transform: skewX(-20deg) translateX(100%);
}

/* Hamburger menu */
#nav-icon3 {
  width: 35px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1002;
  transition: all var(--transition-base);
}

.navbar.scrolled #nav-icon3 span {
  background: var(--text-light);
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--text-light);
  border-radius: 9px;
  left: 0;
  transition: 0.25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 13px;
}

#nav-icon3 span:nth-child(4) {
  top: 26px;
}

#nav-icon3.open span:nth-child(1),
#nav-icon3.open span:nth-child(4) {
  top: 13px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile popup menu */
.popup-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--glass-bg);
  border-top: 1px solid #ddd;
  z-index: 1001;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.popup-menu.show {
  display: block;
  max-height: 500px;
}

.navbar.scrolled .popup-menu {
  background: rgba(0, 0, 0, 0.667);
}

.popup-menu a {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: right 0.3s ease;
  z-index: -1;
}

.popup-menu a:hover::before {
  right: 0;
}

.popup-menu a:hover {
  color: var(--text-light);
  font-size: 1.08rem;
  font-weight: 600;
  transform: scale(1.06);
}

/*============== DROPDWON MENU ===================*/
.dropdown-menu {
  padding: 0.5rem 0;
  background: rgba(0, 0, 0, 0.347) !important;
  box-shadow: none;
  border: none;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
}

.dropdown-item i {
  font-size: 1rem;
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
  transition: color 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(25, 135, 84, 0.08);
  color: var(--primary-dark);
}

.dropdown-item:hover i,
.dropdown-item:focus i {
  color: var(--primary-dark);
}

/* Untuk mobile menu */
.popup-menu a i {
  margin-right: 0.5rem;
}

/* Style khusus untuk tombol login */
.navbar .login-btn {
  background-color: #ffc107;
  /* Warna kuning */
  color: #000 !important;
  border-radius: 50px;
  padding: 8px 20px !important;
  margin-left: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .login-btn:hover {
  background-color: #e0a800 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar .login-btn i {
  color: #000;
}

/* Style saat navbar scrolled */
.navbar.scrolled .login-btn {
  background-color: #ffc107;
  color: #000 !important;
}

.navbar.scrolled .login-btn:hover {
  background-color: #e0a800 !important;
}

/* Style untuk mobile menu */
.popup-menu .login-btn {
  background-color: transparent;
  color: #fff !important;
  margin: 10px 20px;
  text-align: center;
  border: 2px solid #ffc107;
  border-radius: 50px;
}

.popup-menu .login-btn:hover {
  background-color: #ffc107 !important;
  color: #000 !important;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vigaza-hero {
  color: white;
  position: relative;
  overflow: hidden;
}

.vigaza-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content h1 {
  font-weight: 800;
  background: linear-gradient(to right, #fff, #c8f3d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.hero-content .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.hero-highlights {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.hero-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.hero-image-container {
  position: relative;
  transition: transform var(--transition-base);
}

.hero-image-container:hover {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background-color: #198754;
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  display: flex;
  align-items: center;
}

/* ==================== STATS SECTION ==================== */
.stats-container {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
  position: relative;
  padding: 20px 15px;
  flex: 1;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  animation: countUp 0.6s ease-out forwards;
}

@keyframes countUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.stat-number::after {
  content: "+";
  position: absolute;
  right: -15px;
  top: 5px;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.stat-item:nth-child(3) .stat-number::after {
  display: none;
}

.stat-item:hover .stat-number::after {
  opacity: 0.7;
}

.stat-decimal {
  font-size: 1rem;
  opacity: 0.7;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.stat-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.1rem;
  opacity: 0.5;
  transition: all var(--transition-base);
}

.stat-item:hover .stat-icon {
  opacity: 0.9;
  transform: scale(1.1);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==================== MAIN CONTENT ==================== */
.bggw {
  background-color: rgb(235, 235, 235);
}

/* ==================== WHY QUAIL EGGS SECTION ==================== */
.why-quail-eggs-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.1), transparent 70%);
  z-index: 0;
}

.feature-card {
  background-color: #fff;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(25, 135, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-inline: auto;
}

/* ==================== TELUR AYAM AREA ==================== */
.telur_ayam_area {
  padding: 120px 0;
  position: relative;
}

.bg-gradient {
  background: radial-gradient(circle at top left, #ffc10730, transparent 70%);
}

.comparison-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.comparison-box {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 2rem;
  z-index: 1;
}

.border-end-lg {
  border-right: 2px solid;
}

.border-start-lg {
  border-left: 2px solid;
}

.egg-image-wrapper {
  z-index: 2;
}

.egg-image-center {
  height: 150px;
  width: auto;
}

.nutrisi-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.nutrisi-item:hover {
  background-color: rgba(255, 193, 7, 0.1);
}

.nutrisi-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.nutrisi-item p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.nutrisi-item h4 {
  margin: 0;
  font-weight: 700;
  color: var(--secondary-color);
}

/* ==================== FOUNDER SECTION ==================== */
.founder-content {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.8) !important;
}

.founder-info {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.founder-info:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-3px);
}

.hover-rotate {
  transition: transform 0.5s ease;
}

.hover-rotate:hover {
  transform: rotate(15deg);
}

/* Social media founder - remove underline and add hover effects */
.founder-info .social-links a {
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
}

.founder-info .social-links a:hover {
  transform: scale(1.2);
}

.founder-info .social-links a:hover .bi-instagram {
  color: #e1306c !important;
}

.founder-info .social-links a:hover .bi-linkedin {
  color: #0077b5 !important;
}

.founder-info .social-links a:hover .bi-twitter-x {
  color: #000000 !important;
}

.floating-animation-delay {
  animation: floating 6s ease-in-out 1s infinite;
}

/* ==================== FAQ SECTION ==================== */
.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 0.95rem;
  color: #555;
}

.accordion-item {
  transition: all var(--transition-base);
}

/* ==================== CUSTOMER REVIEWS ==================== */
.review-marquee-wrapper {
  padding: 1rem 0;
}

.review-marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
  padding: 0.5rem 0;
}

.review-card {
  min-width: 320px;
  max-width: 320px;
  height: 180px;
  flex: 0 0 auto;
  border-radius: 12px;
  border: none;
  background: white;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.review-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card p {
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

.review-marquee.paused .marquee-track {
  animation-play-state: paused;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
  z-index: 2;
}

.gradient-overlay.end-0 {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==================== OUR TEAM ==================== */
.team-card {
  border-radius: 12px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.text-gray {
  color: var(--text-muted) !important;
}

/* Team social icons styles */
.team-card .social-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.team-card .social-icons a {
  text-decoration: none !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
}

.team-card .social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Platform-specific hover colors */
.team-card .social-icons a:hover .bi-facebook {
  color: #1877f2 !important;
}

.team-card .social-icons a:hover .bi-instagram {
  color: #e1306c !important;
}

.team-card .social-icons a:hover .bi-youtube {
  color: #ff0000 !important;
}

.team-card .social-icons a:hover .bi-linkedin {
  color: #0077b5 !important;
}

.team-card .social-icons a:hover .bi-twitter-x {
  color: #000000 !important;
}

/* Icon animation */
.team-card .social-icons a i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.team-card .social-icons a:hover i {
  transform: scale(1.2);
}

/* ==================== CONTACT & MAP ==================== */
.contact-map-section {
  background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
}

.contact-info li:hover .icon-wrapper {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.social-icon,
.ecom-icon {
  width: 44px;
  height: 44px;
  background: #f1f3f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.social-icon:hover,
.ecom-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Social icon colors */
.facebook:hover {
  background: #1877f2;
  color: #fff !important;
}

.instagram:hover {
  background: #e1306c;
  color: #fff !important;
}

.tiktok:hover {
  background: #000;
  color: #fff !important;
}

.youtube:hover {
  background: #ff0000;
  color: #fff !important;
}

.linktree:hover {
  background: #39e09b;
  color: #fff !important;
}

/* Marketplace icons */
.shopee:hover {
  background: #ffffff;
}

.tokopedia:hover {
  background: #42b549;
}

.lazada:hover {
  background: #0f146d;
}

.ecom-icon img {
  filter: grayscale(100%) contrast(0.6);
  transition: all var(--transition-base);
}

.ecom-icon:hover img {
  filter: none;
  transform: scale(1.1);
}

.map-container {
  position: relative;
  height: 450px;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 20%);
}

/* Remove underline from email and WhatsApp links */
.contact-info a[href^="mailto:"],
.contact-info a[href^="https://wa.me"],
.contact-info a[href^="tel:"] {
  text-decoration: none !important;
  transition: color 0.3s, font-size 0.3s;
}

/* Email & WhatsApp text green on hover, slightly larger */
.contact-info a[href^="mailto"]:hover,
.contact-info a[href^="https://wa.me"]:hover {
  color: var(--primary-dark) !important;
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(135deg, #000000, #013a13);
  font-size: 0.9rem;
}

.footer h6 {
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.footer-links li a,
.footer-contact a {
  transition: all var(--transition-base);
}

.footer-links li a:hover,
.footer-contact a:hover,
.hover-success:hover {
  color: #fff !important;
  padding-left: 6px;
}

.social-icons .social-circle {
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  transition: all var(--transition-base);
  text-decoration: none !important;
}

.social-circle > i,
.social-circle > svg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1;
}

.social-circle:hover {
  background: #fff !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  text-decoration: none !important;
}

.social-circle:hover .bi-facebook {
  color: #1877f2 !important;
  transform: scale(1.2);
}

.social-circle:hover .bi-instagram {
  color: #e1306c !important;
  transform: scale(1.2);
}

.social-circle:hover .bi-youtube {
  color: #ff0000 !important;
  transform: scale(1.2);
}

.social-circle:hover .bi-tiktok {
  color: #000000 !important;
  transform: scale(1.2);
}

.newsletter-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  display: flex;
  animation: bounce 2s infinite;
}

.back-to-top:hover {
  background: var(--secondary-color) !important;
}

.back-to-top:hover i {
  color: #111;
  transform: translateY(-3px);
}

.back-to-top i {
  transition: all 0.3s ease;
  will-change: transform;
}

/* Bouncing Animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-8px);
  }

  40% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-4px);
  }

  80% {
    transform: translateY(0);
  }
}

/* Smooth fade-in transition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (min-width: 992px) {
  #nav-icon3 {
    display: none;
  }

  .popup-menu {
    display: none !important;
  }

  .navbar-nav {
    display: flex !important;
    gap: 15px;
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .telur_ayam_area {
    padding: 80px 0;
  }

  .comparison-wrapper {
    flex-direction: column;
  }

  .egg-image-wrapper {
    position: static !important;
    transform: none !important;
    margin: 2rem auto;
    display: block !important;
  }

  .egg-image-center {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .vigaza-hero {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-highlights {
    text-align: left;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-cta .btn:last-child {
    margin-bottom: 0;
  }

  .stats-container {
    padding: 15px !important;
  }

  .stat-item {
    padding: 15px 10px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
    margin: 10px 0;
  }

  .founder-content {
    padding: 2rem !important;
  }

  h2.display-4 {
    font-size: 2.2rem;
  }

  .founder-info {
    flex-direction: column;
    text-align: center;
  }

  .founder-info>div:not(:first-child) {
    margin-top: 1rem;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .back-to-top {
    animation: none !important;
  }

  .floating-animation,
  .floating-animation-delay {
    animation: none !important;
  }
}


/* ===== DASHBOARD & MODAL FIXES ===== */
.dashboard-content {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding-top: 120px; /* Jarak dari atas agar tidak tertutup navbar */
    padding-bottom: 4rem;
}

/* Perbaikan untuk z-index modal agar di atas navbar */
/* Ini hanya diperlukan jika Anda TIDAK menggunakan solusi struktural 
   dengan memindahkan modal ke luar <main> */
.modal {
  z-index: 1060 !important;
}

.modal-backdrop {
  z-index: 1059 !important;
}