/* ============================================
   AGROBARNS VENTURES - Main Stylesheet
   ============================================ */

:root {
  --green-900: #0f5132;
  --green-800: #145c3a;
  --green-700: #198754;
  --green-600: #20c997;
  --green-100: #d1e7dd;
  --green-50: #f0fdf4;
  --gold: #c9a96e;
  --gold-light: #fdf6e3;
  --gold-dark: #a8844a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #6b7280;
  --gray-500: #9ca3af;
  --gray-300: #e5e7eb;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-700);
  background: var(--gray-50);
  overflow-x: hidden;
  line-height: 1.6;
}

.serif {
  font-family: 'Playfair Display', serif;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 180px;
  height: auto;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--gray-300);
  border-radius: 3px;
  margin-top: 32px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--green-700), var(--gold));
  border-radius: 3px;
  animation: loaderFill 1.8s ease-in-out forwards;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.8; }
}

@keyframes loaderFill {
  0% { width: 0; }
  70% { width: 70%; }
  100% { width: 100%; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 3px solid var(--green-700);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green-700);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   SECTION TRANSITIONS
   ============================================ */
section {
  position: relative;
}

.section-transition {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  fill: var(--white);
  pointer-events: none;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.3s ease;
  cursor: pointer;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-700);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-700);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gray-700);
}

.mobile-menu {
  display: none;
  padding: 0 0 20px;
}

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

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-300);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--green-700), var(--gold));
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 100px 0;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 81, 50, 0.95) 0%, rgba(15, 81, 50, 0.75) 50%, rgba(25, 135, 84, 0.7) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(253, 224, 71, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}

.hero-title span {
  color: #fde047;
  text-shadow: 0 0 30px rgba(253, 224, 71, 0.3);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
  text-shadow: 0 1px 20px rgba(0,0,0,0.1);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fde047;
  color: var(--green-900);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #facc15;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(253, 224, 71, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fde047;
  text-shadow: 0 0 20px rgba(253, 224, 71, 0.2);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.hero-scripture {
  position: absolute;
  bottom: 80px;
  right: 60px;
  max-width: 340px;
  display: none;
}

@media (min-width: 640px) {
  .hero-scripture {
    display: block;
  }
}

@media (max-width: 639px) {
  .hero-scripture {
    position: static;
    display: block;
    max-width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-scripture {
    bottom: 30px;
    right: 30px;
    max-width: 300px;
  }
}

.scripture-card {
  background: linear-gradient(135deg, var(--gold-light) 0%, #f5e6c8 100%);
  border: 2px solid var(--gold);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), inset 0 0 40px rgba(201, 169, 110, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scripture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl), inset 0 0 50px rgba(201, 169, 110, 0.2);
}

.scripture-card::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4);
}

.scripture-quote {
  font-size: 3.5rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.8;
  margin-bottom: 8px;
  display: block;
  text-align: center;
}

.scripture-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #6b4f22;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}

.scripture-reference {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--gold);
  text-align: center;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================
   BOTTOM SCRIPTURE BANNER
   ============================================ */
.scripture-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.scripture-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 10px 0;
}

@media (min-width: 768px) {
  .scripture-wrapper {
    flex-direction: row;
    gap: 60px;
  }
  
  .scripture-divider {
    width: 2px;
    height: auto;
    min-height: 200px;
    margin: 0;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
  }
  
  .scripture-wrapper > .scripture-card {
    flex: 1;
    max-width: 500px;
  }
}

.scripture-banner .scripture-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 110, 0.3);
  backdrop-filter: blur(10px);
}

.scripture-banner .scripture-text {
  color: rgba(255,255,255,0.95);
  font-size: 1.35rem;
}

.scripture-banner .scripture-quote {
  color: var(--gold);
}

.scripture-banner .scripture-reference {
  color: var(--gold-light);
  font-size: 1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(25,135,84,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(32,201,151,0.04) 0%, transparent 50%);
}

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

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

.about-image-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-border {
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  z-index: -1;
}

.about-badge-top {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--green-700);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}

.about-badge-bottom {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.star-icon {
  width: 48px;
  height: 48px;
  background: #fde047;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
}

.feature-text h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-50), var(--white));
}

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

.service-card-link {
  text-decoration: none;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-link:hover {
  text-decoration: none;
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.service-card-link:hover .service-card-bg {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card-link:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.service-card-link:hover .service-icon-wrap {
  background: var(--gold);
  color: var(--green-900);
  border-color: var(--gold);
  transform: scale(1.05);
}

.service-card-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.service-card-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  max-width: 100%;
}

.service-card-link:hover .service-card {
  border-color: transparent;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 50%, var(--green-50) 100%);
}

.floating-leaf {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

.filter-tab {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
}

.filter-tab:hover {
  border-color: var(--green-700);
  color: var(--green-700);
  transform: translateY(-2px);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(25, 135, 84, 0.3);
}

.segment-header {
  text-align: center;
  margin-bottom: 40px;
}

.segment-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.segment-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
}

.segment-header p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 8px;
}

.segment-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-300), transparent);
  margin: 60px 0;
}

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

.product-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 800px;
  margin: 0 auto;
}

.product-grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.badge-bestseller {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #78350f;
}

.badge-organic {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
}

.badge-new {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
}

.badge-premium {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}

.quick-view {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  border: none;
  color: var(--gray-700);
}

.product-card:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.quick-view:hover {
  background: var(--green-700);
  color: var(--white);
}

.product-info {
  padding: 20px 24px;
}

.product-category {
  font-size: 0.65rem;
  color: var(--green-700);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-300);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
}

.product-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-500);
}

.order-btn {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.order-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
}

/* ============================================
   PAYMENT SECTION
   ============================================ */
.payment {
  padding: 100px 0;
  background: var(--gray-50);
}

.payment-card {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 81, 50, 0.3);
}

.payment-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.payment-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

.payment-bank {
  font-weight: 600;
}

.payment-secure {
  text-align: right;
}

.payment-details {
  position: relative;
  z-index: 1;
}

.payment-field {
  margin-bottom: 20px;
}

.payment-field-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.payment-field-value {
  font-size: 1rem;
  font-weight: 600;
}

.payment-field-value.large {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.payment-account-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  margin-top: 24px;
}

.account-number {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: 'Courier New', monospace;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-800);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.copy-btn:hover {
  background: #fde047;
  transform: scale(1.03);
}

.payment-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

.payment-note strong {
  color: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 3rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
}

.contact-item-label {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.contact-item-value {
  font-weight: 600;
  color: var(--gray-900);
}

.contact-item-value a:hover {
  color: var(--green-700);
}

.contact-form {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-md);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.15);
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.form-select:focus {
  border-color: var(--green-700);
}

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

.submit-btn {
  width: 100%;
  background: var(--green-700);
  color: var(--white);
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(25, 135, 84, 0.25);
}

/* ============================================
   SCRIPTURE BANNER
   ============================================ */
.scripture-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  position: relative;
  overflow: hidden;
}

.scripture-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.scripture-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .scripture-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}

.scripture-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 10px 0;
}

@media (min-width: 900px) {
  .scripture-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    margin: 0 20px;
  }
}

.scripture-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), inset 0 0 60px rgba(201, 169, 110, 0.05);
  position: relative;
  max-width: 520px;
  width: 100%;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
}

.scripture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), inset 0 0 80px rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
}

.scripture-quote {
  font-size: 4rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}

.scripture-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.scripture-reference {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* ============================================
   TYPOGRAPHY IMPROVEMENTS
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

.serif {
  letter-spacing: -0.01em;
}

.section-title {
  font-size: 2.75rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
}

/* ============================================
   MICRO-INTERACTIONS
   ============================================ */

/* Tilt effect for cards */
.tilt-card {
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Smooth image zoom enhancement */
.product-image {
  overflow: hidden;
  will-change: transform;
}

.product-image img {
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.12);
}

/* Service card icon enhancement */
.service-icon-wrap {
  will-change: transform, background, color;
}

/* Button interaction enhancement */
.order-btn, .submit-btn, .copy-btn, .nav-cta {
  position: relative;
  overflow: hidden;
}

.order-btn:active, .submit-btn:active, .nav-cta:active {
  transform: scale(0.96);
}

/* Social icon enhancement */
.social-icon {
  will-change: transform, background;
}

/* ============================================
   PARALLAX / SECTION TRANSITIONS
   ============================================ */
.parallax-bg {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

/* Smooth section enter */
.section-enter {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-enter.entered {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0a3d24;
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.7);
}

.social-icon:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 28px;
  }
  .hero {
    padding: 60px 0;
    min-height: auto;
  }
  .stat-number {
    font-size: 1.3rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .about-image-wrap img {
    height: 220px;
  }
  .payment-card {
    padding: 20px;
  }
  .account-number {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }
  .payment-account-box {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }
  .copy-btn {
    width: 100%;
    justify-content: center;
  }
  .product-image {
    height: 200px;
  }
  .contact-form {
    padding: 20px;
  }
  .logo-img {
    height: 40px;
  }
  .footer-grid {
    gap: 24px;
  }
  .filter-tab {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
  .product-info {
    padding: 16px 18px;
  }
}

/* Tablets & small screens */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-stats {
    gap: 24px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-grid.cols-2,
  .product-grid.cols-4 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid > div:first-child {
    order: -1;
  }
  .payment-card {
    padding: 24px;
  }
  .account-number {
    font-size: 1.25rem;
  }
  .payment-account-box {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .contact-form {
    padding: 24px;
  }
  .about-image-wrap img {
    height: 280px;
  }
  .about-badge-bottom {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: -40px;
    margin-left: 12px;
    margin-right: 12px;
  }
  .hero-scripture {
    display: none;
  }
  .hero {
    min-height: 70vh;
    padding: 80px 0;
  }
  .segment-header h4 {
    font-size: 1.3rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }
  .nav-inner {
    height: 64px;
  }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 3rem;
  }
  .about-grid {
    gap: 40px;
  }
}

/* Large screens */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-content {
    max-width: 800px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
