/* =========================================================
   UDHAYAM EXPORTS & IMPORTS — Enhanced Stylesheet
   With rich animations and smooth interactions
   ========================================================= */

:root {
  --maroon: #8B0000;
  --maroon-dark: #5a0000;
  --maroon-deep: #3d0000;
  --maroon-light: #b22222;
  --red-accent: #c41e1e;
  --gold: #d4a373;
  --gray-silver: #a8a8a8;
  --gray-dark: #4a4a4a;
  --gray-light: #f4f4f4;
  --cream: #fdf8f3;
  --white: #ffffff;
  --black: #1a1a1a;
  --shadow: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 50px rgba(139,0,0,0.2);
  --shadow-hover: 0 16px 40px rgba(139,0,0,0.3);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--maroon), var(--maroon-dark));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--maroon-dark); }

/* ============ KEYFRAME ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(139,0,0,0.6); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(139,0,0,0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wave {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(-20px) rotate(2deg); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(139,0,0,0.3); }
  50% { box-shadow: 0 0 40px rgba(139,0,0,0.6); }
}
@keyframes bgPan {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll-reveal classes — toggled by JS */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s var(--transition);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.9s var(--transition); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.9s var(--transition); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-zoom { opacity: 0; transform: scale(0.85); transition: all 0.9s var(--transition); }
.reveal-zoom.active { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ============ TOP BAR ============ */
.top-bar {
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon), var(--maroon-deep));
  background-size: 200% auto;
  animation: bgPan 8s linear infinite;
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a { color: var(--white); text-decoration: none; margin-right: 18px; transition: color 0.3s; }
.top-bar a:hover { color: var(--gold); }
.top-bar a i { margin-right: 6px; }
.top-bar .socials a {
  margin-right: 6px;
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: all 0.3s var(--transition-bounce);
}
.top-bar .socials a:hover { background: var(--gold); color: var(--maroon-deep); transform: translateY(-3px) rotate(360deg); }

/* ============ HEADER / NAV ============ */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s var(--transition);
}
.header.scrolled {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  padding: 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; transition: transform 0.3s; }
.logo-wrap:hover { transform: scale(1.03); }
.logo-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(139,0,0,0.4);
  transition: all 0.4s var(--transition-bounce);
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
}
.logo-wrap:hover .logo-mark { transform: rotate(-8deg); box-shadow: 0 6px 22px rgba(139,0,0,0.55); }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .main {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: 1px;
}
.logo-text .sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  color: var(--black);
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--maroon);
}
.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
  border-radius: 3px;
  transition: all 0.4s var(--transition);
  transform: translateX(-50%);
}
.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 70%;
}

.hamburger {
  display: none;
  background: var(--maroon);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.hamburger:hover { background: var(--maroon-dark); transform: rotate(90deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 50%, var(--maroon-dark) 100%);
  background-size: 200% 200%;
  animation: bgPan 15s ease-in-out infinite;
  color: white;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(196,30,30,0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168,168,168,0.15), transparent 50%);
  pointer-events: none;
}
/* Floating decoration circles */
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.hero-shape-1 { width: 200px; height: 200px; left: 5%; bottom: 10%; animation: float 6s ease-in-out infinite; }
.hero-shape-2 { width: 100px; height: 100px; right: 15%; top: 15%; animation: float 5s ease-in-out infinite 1s; }
.hero-shape-3 { width: 60px; height: 60px; left: 40%; top: 25%; animation: float 7s ease-in-out infinite 2s; }

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border-left: 3px solid var(--gold);
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s var(--transition) both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 800;
  animation: fadeInUp 0.9s var(--transition) 0.2s both;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  font-style: italic;
  background: linear-gradient(90deg, var(--gold), #f4e0c0, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0;
  animation: shimmer 3s linear infinite;
}
.hero p {
  font-size: 1.18rem;
  max-width: 660px;
  margin-bottom: 36px;
  opacity: 0.95;
  animation: fadeInUp 1s var(--transition) 0.4s both;
}
.hero-buttons { animation: fadeInUp 1.1s var(--transition) 0.6s both; }

.btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--white);
  color: var(--maroon);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 3px;
  transition: all 0.4s var(--transition);
  border: 2px solid var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maroon);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition);
  z-index: -1;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.btn.btn-outline {
  background: transparent;
  color: var(--white);
  margin-left: 12px;
}
.btn.btn-outline::before { background: var(--white); }
.btn.btn-outline:hover { color: var(--maroon); }

/* ============ MARQUEE BANNER ============ */
.marquee-banner {
  background: var(--maroon-deep);
  color: white;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  white-space: nowrap;
}
.marquee-item i { color: var(--gold); }
.marquee-banner:hover .marquee-track { animation-play-state: paused; }

/* ============ SECTION GENERAL ============ */
section { padding: 90px 0; position: relative; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--maroon);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  padding: 0 30px;
}
.section-title .eyebrow::before,
.section-title .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--maroon));
}
.section-title .eyebrow::before { left: 0; transform: scaleX(-1); }
.section-title .eyebrow::after { right: 0; }
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-title h2 span {
  color: var(--maroon);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.section-title h2 span::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), transparent);
  border-radius: 2px;
}
.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-dark);
  font-size: 1.05rem;
}

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s var(--transition);
  position: relative;
  cursor: pointer;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(139,0,0,0.95));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-hover);
}
.feature-card:hover::before { opacity: 1; }
.feature-card .img-wrap {
  height: 230px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
}
.feature-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.feature-card:hover .img-wrap img { transform: scale(1.18) rotate(2deg); }
.feature-card .body {
  padding: 24px;
  position: relative;
  z-index: 3;
  transition: color 0.4s;
}
.feature-card:hover .body { color: white; }
.feature-card:hover .body h3,
.feature-card:hover .body p,
.feature-card:hover .body a { color: white; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: var(--maroon);
  transition: color 0.4s;
}
.feature-card p { font-size: 0.93rem; color: var(--gray-dark); margin-bottom: 14px; transition: color 0.4s; }
.feature-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.feature-card a i { transition: transform 0.3s; }
.feature-card:hover a i { transform: translateX(6px); }

/* ============ STATS COUNTER ============ */
.stats-section {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 30m-2 0a2 2 0 1 1 4 0 2 2 0 1 1-4 0' fill='%23ffffff' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--gold);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.4s var(--transition-bounce);
}
.stat-item:hover .stat-icon {
  transform: rotateY(360deg);
  background: var(--gold);
  color: var(--maroon-deep);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  margin-top: 8px;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ============ ABOUT SECTION ============ */
.about-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,0,0,0.06), transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--transition);
}
.about-img-wrap:hover { transform: scale(1.02); }
.about-img-wrap img { width: 100%; height: auto; display: block; transition: transform 0.8s; }
.about-img-wrap:hover img { transform: scale(1.08); }
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  pointer-events: none;
  border-radius: 6px;
}
.about-img-badge {
  position: absolute;
  bottom: 30px; left: 30px;
  background: rgba(139,0,0,0.95);
  color: white;
  padding: 18px 24px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.about-img-badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
  color: var(--gold);
}
.about-img-badge span {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--maroon);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  color: var(--gray-dark);
  margin-bottom: 16px;
  font-size: 1rem;
}
.feature-list {
  list-style: none;
  margin: 20px 0;
}
.feature-list li {
  padding-left: 36px;
  position: relative;
  margin-bottom: 12px;
  color: var(--gray-dark);
}
.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 2px;
  width: 24px; height: 24px;
  background: var(--maroon);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ============ PRODUCTS GRID ============ */
.products-section { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-mini {
  text-align: center;
  padding: 36px 22px;
  border-radius: 12px;
  background: var(--cream);
  transition: all 0.5s var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.product-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  z-index: 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--transition);
}
.product-mini > * { position: relative; z-index: 1; }
.product-mini:hover::before { transform: translateY(0); }
.product-mini:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-mini:hover h4 { color: white; }
.product-mini:hover p { color: rgba(255,255,255,0.92); }
.product-mini:hover .icon-circle {
  background: white;
  color: var(--maroon);
  transform: rotateY(360deg);
}
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--maroon);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  transition: all 0.6s var(--transition-bounce);
  box-shadow: 0 6px 18px rgba(139,0,0,0.3);
}
.product-mini h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--maroon);
  margin-bottom: 10px;
  transition: color 0.4s;
}
.product-mini p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  transition: color 0.4s;
}

/* ============ DETAILED PRODUCTS PAGE ============ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.product-detail:last-child { border-bottom: none; margin-bottom: 0; }
.product-detail.reverse .product-img { order: 2; }
.product-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.5s var(--transition);
  background: linear-gradient(135deg, var(--cream), #f8efe3);
  min-height: 400px;
}
.product-img:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.product-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--transition);
}
.product-img:hover img { transform: scale(1.07); }
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.2));
  pointer-events: none;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--maroon);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.product-info .accent-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
  margin-bottom: 22px;
  border-radius: 2px;
}
.product-info p {
  margin-bottom: 16px;
  color: var(--gray-dark);
  line-height: 1.75;
}
.product-info .varieties-title {
  font-weight: 600;
  color: var(--maroon-dark);
  margin-top: 18px;
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tag-list span {
  background: var(--cream);
  border: 1px solid var(--maroon);
  color: var(--maroon);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--transition);
  cursor: default;
}
.tag-list span:hover {
  background: var(--maroon);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(139,0,0,0.3);
}

/* ============ PAGE BANNER ============ */
.page-banner {
  background:
    linear-gradient(135deg, rgba(61,0,0,0.92), rgba(139,0,0,0.85)),
    url('https://images.pexels.com/photos/1340116/pexels-photo-1340116.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
  color: white;
  padding: 130px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,163,115,0.1), transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite 2s;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s var(--transition) both;
  position: relative;
  z-index: 1;
}
.page-banner .breadcrumb {
  font-size: 14px;
  opacity: 0.92;
  letter-spacing: 1px;
  animation: fadeInUp 1s var(--transition) 0.2s both;
  position: relative;
  z-index: 1;
}
.page-banner .breadcrumb a { color: var(--gold); text-decoration: none; }
.page-banner .breadcrumb a:hover { color: white; }

/* ============ VISION/MISSION ============ */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}
.vm-card {
  background: white;
  padding: 45px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--maroon);
  position: relative;
  transition: all 0.4s var(--transition);
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(139,0,0,0.05), transparent 70%);
  border-radius: 50%;
}
.vm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.vm-card .vm-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: all 0.4s var(--transition-bounce);
  box-shadow: 0 6px 16px rgba(139,0,0,0.3);
}
.vm-card:hover .vm-icon { transform: rotate(360deg) scale(1.1); }
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--maroon);
  margin-bottom: 14px;
}
.vm-card ul { list-style: none; }
.vm-card ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--gray-dark);
}
.vm-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 2px;
  color: var(--maroon);
}

/* ============ VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.value-card {
  text-align: center;
  padding: 45px 30px;
  background: var(--cream);
  border-radius: 12px;
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--transition);
  z-index: 0;
}
.value-card > * { position: relative; z-index: 1; transition: color 0.4s; }
.value-card:hover::before { transform: scaleY(1); }
.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.value-card:hover h4 { color: white; }
.value-card:hover p { color: rgba(255,255,255,0.9); }
.value-card:hover .value-icon { background: white; color: var(--maroon); transform: rotateY(360deg); }
.value-card .value-icon {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 22px;
  transition: all 0.6s var(--transition-bounce);
  box-shadow: 0 8px 22px rgba(139,0,0,0.3);
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: 14px;
}
.value-card p { color: var(--gray-dark); font-size: 0.96rem; }

/* ============ PROCESS ============ */
.process-section {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: white;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 10%; left: 5%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,163,115,0.15), transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}
.process-section .section-title h2 { color: white; }
.process-section .section-title h2 span { color: var(--gold); -webkit-text-stroke: 0; background: none; }
.process-section .section-title .eyebrow { color: var(--gold); }
.process-section .section-title .eyebrow::before,
.process-section .section-title .eyebrow::after { background: linear-gradient(90deg, transparent, var(--gold)); }
.process-section .section-title p { color: rgba(255,255,255,0.85); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s var(--transition);
}
.process-step:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}
.process-step .step-num {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--gold), #f4e0c0);
  color: var(--maroon-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  font-weight: 800;
  font-family: var(--font-display);
  margin: 0 auto 22px;
  box-shadow: 0 8px 20px rgba(212,163,115,0.4);
  transition: all 0.5s var(--transition-bounce);
}
.process-step:hover .step-num { transform: rotateY(360deg) scale(1.1); }
.process-step h4 { font-size: 1.25rem; margin-bottom: 12px; font-family: var(--font-display); color: var(--gold); }
.process-step p { font-size: 0.93rem; opacity: 0.9; }

/* ============ POLICY PAGE ============ */
.policy-content { max-width: 1000px; margin: 0 auto; }
.policy-block {
  background: white;
  padding: 36px 40px;
  border-left: 5px solid var(--maroon);
  border-radius: 8px;
  margin-bottom: 26px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.policy-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(139,0,0,0.06), transparent 70%);
  border-radius: 50%;
}
.policy-block:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 28px rgba(139,0,0,0.12);
  border-left-width: 8px;
}
.policy-block h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.5rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.policy-block h3 i {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.policy-block ul { padding-left: 22px; }
.policy-block li {
  margin-bottom: 8px;
  color: var(--gray-dark);
  line-height: 1.7;
}
.policy-block .sub-head {
  font-weight: 600;
  color: var(--maroon-dark);
  margin-top: 18px;
  margin-bottom: 8px;
  display: block;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info {
  padding: 50px 45px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 12px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,163,115,0.15), transparent 70%);
  border-radius: 50%;
}
.contact-info h3 {
  font-family: var(--font-display);
  color: white;
  font-size: 2rem;
  margin-bottom: 28px;
  position: relative;
}
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 26px;
  align-items: flex-start;
  position: relative;
  transition: all 0.3s;
}
.contact-item:hover { transform: translateX(8px); }
.contact-item .ci-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.4s var(--transition-bounce);
}
.contact-item:hover .ci-icon { background: var(--gold); color: var(--maroon-deep); transform: rotate(360deg); }
.contact-item .ci-text strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.contact-item .ci-text a,
.contact-item .ci-text span {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.3s;
}
.contact-item .ci-text a:hover { color: var(--gold); }

.contact-form-wrap {
  padding: 50px 45px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 2rem;
  margin-bottom: 10px;
}
.contact-form-wrap > p { color: var(--gray-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; position: relative; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--maroon-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--maroon);
  background: white;
  box-shadow: 0 0 0 4px rgba(139,0,0,0.08);
}
.form-btn {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: white;
  border: none;
  padding: 16px 42px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(139,0,0,0.35);
}
.form-btn i { margin-left: 8px; transition: transform 0.3s; }
.form-btn:hover i { transform: translateX(4px); }

.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 450px; border: 0; display: block; filter: grayscale(20%); transition: filter 0.4s; }
.map-section iframe:hover { filter: grayscale(0); }

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(135deg, var(--maroon-deep), #2a0000);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,163,115,0.06), transparent 70%);
  border-radius: 50%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.footer-col p, .footer-col li {
  font-size: 0.93rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
.footer-col ul { list-style: none; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-col ul a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  color: var(--gold);
  font-size: 12px;
  transition: transform 0.3s;
  display: inline-block;
}
.footer-col ul a:hover::before { transform: translateX(4px); }
.footer-logo .main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.footer-logo .sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.social-icons { display: flex; gap: 12px; margin-top: 18px; }
.social-icons a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--transition-bounce);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-icons a:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  transform: translateY(-4px) rotate(360deg);
  padding-left: 0;
}
.social-icons a::before { display: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.footer-bottom .heart { color: var(--red-accent); animation: pulse 1.5s ease-in-out infinite; display: inline-block; }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(139,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--transition);
  z-index: 999;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(139,0,0,0.5); }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  z-index: 999;
  animation: glow 2s ease-in-out infinite;
  transition: all 0.4s var(--transition-bounce);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(15deg); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .vision-mission, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail, .product-detail.reverse { grid-template-columns: 1fr; gap: 30px; }
  .product-detail.reverse .product-img { order: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { width: 100%; padding: 14px 16px; }
  .feature-grid, .products-grid, .process-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar a { display: block; margin: 2px 8px; }
  section { padding: 60px 0; }
  .marquee-item { font-size: 1.1rem; padding: 0 24px; }
  .btn.btn-outline { margin-left: 0; margin-top: 12px; }
  .contact-info, .contact-form-wrap { padding: 30px 24px; }
}
