/* ============================================
   MT5 Food & Beverage - Main Stylesheet
   www.mt5foodandbeverage.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark: #1a6b2f;
  --green-mid: #28a745;
  --green-bright: #4cde72;
  --blue-dark: #0d2c6e;
  --blue-mid: #1a4db8;
  --gold: #f5c518;
  --white: #ffffff;
  --off-white: #f4f9f4;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --card-bg: #ffffff;
  --shadow: 0 10px 40px rgba(0,0,0,0.10);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #e8f5e9; }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 10px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(40,167,69,0.15);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar.scrolled {
  height: 62px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

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

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img { height: 40px; }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--blue-dark), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-brand-tagline {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-mid);
  position: relative;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 15px rgba(40,167,69,0.35);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40,167,69,0.5) !important;
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #0d2c6e 0%, #1a4db8 35%, #1a6b2f 70%, #28a745 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-bg-shapes .shape-1 {
  width: 600px; height: 600px;
  background: var(--green-bright);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -80px; left: -80px;
  animation: float2 10s ease-in-out infinite;
}

.hero-bg-shapes .shape-3 {
  width: 200px; height: 200px;
  background: var(--white);
  top: 40%; left: 40%;
  animation: float1 6s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  animation: rise linear infinite;
}

@keyframes rise {
  0% { bottom: -60px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { bottom: 110%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
  width: 100%;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease 0.1s both;
}

.hero-title .accent {
  display: block;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 440px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(76,222,114,0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(76,222,114,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInDown 0.8s ease 0.4s both;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--green-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.9s ease 0.2s both;
}

.hero-glow {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(76,222,114,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-bottle {
  position: relative;
  z-index: 1;
  width: 320px;
  max-width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  animation: bottleFloat 4s ease-in-out infinite;
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

.hero-rings {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
  animation: spin 20s linear infinite;
}

.hero-rings::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(76,222,114,0.12);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
section { padding: 100px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(40,167,69,0.08);
  border: 1px solid rgba(40,167,69,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(40,167,69,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.feature-card {
  background: var(--off-white);
  border: 1px solid rgba(40,167,69,0.12);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(40,167,69,0.05);
  border-color: rgba(40,167,69,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.feature-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-text {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

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

.about-img-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  position: relative;
}

.about-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-card:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon { font-size: 2rem; }

.badge-text .badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  line-height: 1;
}

.badge-text .badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(40,167,69,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,77,184,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid #e5e7eb;
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
  background: rgba(40,167,69,0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(40,167,69,0.35);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  display: none;
}

.product-card.visible { display: flex; flex-direction: column; }

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 60%);
}

.product-category-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
}

.badge-jeera { background: linear-gradient(135deg, #78350f, #d97706); }
.badge-orange { background: linear-gradient(135deg, #c2410c, #f97316); }
.badge-cola { background: linear-gradient(135deg, #3b0764, #7c3aed); }
.badge-lemon { background: linear-gradient(135deg, #365314, #84cc16); }

.product-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-flavor {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

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

.product-sizes {
  display: flex;
  gap: 6px;
}

.size-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(40,167,69,0.1);
  border: 1px solid rgba(40,167,69,0.2);
  padding: 3px 10px;
  border-radius: 50px;
}

.product-btn {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.product-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(40,167,69,0.4);
}

/* ============================================
   FLAGSHIP PRODUCT
   ============================================ */
.flagship {
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue-mid) 40%, var(--green-dark) 80%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.flagship-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 60% 50%, rgba(76,222,114,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.flagship-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.flagship-text { color: var(--white); }

.flagship-logo {
  width: 220px;
  margin-bottom: 28px;
  /* filter: brightness(0) invert(1); */
  opacity: 0.9;
}

.flagship-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}

.flagship-headline .accent {
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.flagship-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.flagship-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.perk-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.flagship-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.flagship-bottle-wrap {
  position: relative;
}

.flagship-bottle-wrap img {
  width: 340px;
  max-width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
  animation: bottleFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.flagship-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(76,222,114,0.4) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease infinite;
}

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

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

.contact-info { }

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 1px solid rgba(40,167,69,0.1);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(40,167,69,0.05);
  border-color: rgba(40,167,69,0.25);
  transform: translateX(6px);
}

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-value {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.qr-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(40,167,69,0.15);
  text-align: center;
  max-width: 320px;
  transition: var(--transition);
}

.qr-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.qr-card img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto 16px;
}

.qr-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.qr-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.qr-domain {
  font-weight: 800;
  color: var(--green-mid);
  font-size: 0.9rem;
  margin-top: 4px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  /* filter: brightness(0) invert(1); */
  opacity: 0.85;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  text-decoration: none;
}

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

.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: var(--green-bright);
  font-weight: 700;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(40,167,69,0.45);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(40,167,69,0.55);
}

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

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

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

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

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

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

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(13, 44, 110, 0.97);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 3px;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--green-bright); }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { gap: 40px; }
  .about-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 5%;
  }

  .hero-text { order: 2; }
  .hero-image-wrap { order: 1; }

  .hero-subtitle { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-bottle { width: 220px; }
  .hero-glow { width: 260px; height: 260px; }
  .hero-rings { width: 300px; height: 300px; }

  .about-grid,
  .flagship-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features { grid-template-columns: 1fr; }

  .about-img-card img { height: 320px; }

  .flagship-logo { width: 160px; }
  .flagship-bottle-wrap img { width: 240px; }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; max-width: 280px; }
  .hero-stats { gap: 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .category-tabs { justify-content: center; }
}
