/* ==========================================================================
   AJWA CAKES — PREMIUM DARK LUXURY DESIGN SYSTEM v2
   ========================================================================== */

/* ─── 1. CUSTOM PROPERTIES ─── */
:root {
  --red: #C40000;
  --red-hover: #E50000;
  --red-dark: #8C0000;
  --gold: #F8C14A;
  --gold-dark: #C9961A;

  --bg-base:    #0D0D0D;
  --bg-surface: #141414;
  --bg-card:    #1A1A1A;
  --bg-raised:  #222222;

  --white: #FFFFFF;
  --text-primary:   #F0EDE8;
  --text-secondary: #A09890;
  --text-muted:     #605850;

  --border: rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm:  0 4px 16px rgba(0,0,0,0.4);
  --shadow-md:  0 12px 40px rgba(0,0,0,0.5);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.6);
  --glow-red:   0 8px 32px rgba(196,0,0,0.4);
  --glow-gold:  0 8px 32px rgba(248,193,74,0.35);

  --ease-out: cubic-bezier(0.25,1,0.5,1);
  --ease-in-out: cubic-bezier(0.45,0,0.55,1);
  --dur: 0.45s;

  --header-h: 110px;
  --container: 1200px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
}

/* ─── 2. RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; border: none; outline: none; }

/* ─── 3. UTILITIES ─── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-secondary); font-size: 0.85rem; }

/* Scroll custom bar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── 4. TYPOGRAPHY ─── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 12px 0 20px;
  color: var(--text-primary);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { margin-bottom: 64px; }

/* ─── 5. BADGE ─── */
.badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(196,0,0,0.12);
  color: var(--red);
}
.badge-red  { background: var(--red); color: var(--white); border-color: var(--red); }
.badge-gold { background: var(--gold); color: #1A1A1A; border-color: var(--gold); }

/* ─── 6. BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--dur) var(--ease-out);
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  min-height: 44px; /* Ensure mobile touch target compliance */
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,0,0,0.25);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}

.btn-secondary {
  background: var(--gold);
  color: #1A1A1A;
  box-shadow: 0 4px 16px rgba(248,193,74,0.2);
}
.btn-secondary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; }
.btn-card  { width: 100%; justify-content: center; padding: 12px; font-size: 0.87rem; }

/* ─── 7. LOADER ─── */
.loader-wrapper {
  position: fixed; inset: 0;
  background: var(--bg-base);
  z-index: 9999;
  display: flex; justify-content: center; align-items: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader-wrapper.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }
.loader-logo { width: 160px; margin: 0 auto 32px; animation: pulse 2s ease-in-out infinite; }
.loader-svg { filter: drop-shadow(0 0 16px rgba(196,0,0,0.6)); }

.loader-bar-container {
  width: 220px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px; margin: 0 auto 18px;
  overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 10px;
  animation: loadBar 2.2s var(--ease-out) forwards;
}
.loader-text {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
@keyframes loadBar { to{ width:100% } }

/* ─── 8. HEADER ─── */
.tamil-top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 12px;
  height: 46px;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
  transition: all var(--dur) var(--ease-out);
  overflow: hidden;
}
.main-header.scrolled .tamil-top-bar {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  opacity: 0;
  pointer-events: none;
}

.main-header {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--header-h);
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  transition: all var(--dur) var(--ease-out);
}
.main-header.scrolled {
  height: 64px;
  background: rgba(13,13,13,0.92);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.header-container {
  max-width: var(--container); margin: 0 auto;
  height: 64px; display: flex;
  justify-content: space-between; align-items: center;
  padding: 0 24px;
}

.logo-link { height: 48px; display: flex; align-items: center; }
.header-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.primary-navigation { display: flex; align-items: center; flex-grow: 1; margin-left: 40px; }
.nav-list { display: flex; align-items: center; gap: 30px; width: 100%; }

.nav-item {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  position: relative; padding: 6px 0;
  transition: color var(--dur) var(--ease-out);
}
.nav-item::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}
.nav-item:hover, .nav-item.active { color: var(--white); }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }

.nav-cta-li { margin-left: auto; }
.nav-cta { padding: 9px 20px; font-size: 0.82rem; }

.mobile-nav-toggle {
  display: none; flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: transparent; cursor: pointer; z-index: 901;
}
.hamburger-bar {
  width: 100%; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav-toggle.open .hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.open .hamburger-bar:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open .hamburger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── 9. HERO SECTION ─── */
section { padding: 110px 0; position: relative; overflow: hidden; }

.hero-section {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg-base);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Particle canvas */
.hero-particles-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}

/* Radial glow bloom */
.hero-overlay-glow {
  position: absolute; top: 20%; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,0,0,0.13) 0%, rgba(248,193,74,0.04) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none; z-index: 1;
}
/* Bottom vignette */
.hero-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--bg-base));
  z-index: 2; pointer-events: none;
}

.hero-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center; gap: 60px;
  width: 100%; position: relative; z-index: 3;
}

.hero-content { max-width: 580px; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.08;
  margin: 16px 0 24px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #FFFFFF 50%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 42px;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* Hero Visual – floating cake */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.floating-element-container { position: relative; max-width: 440px; width: 100%; }

.hero-floating-cake {
  width: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
  animation: floatY 7s ease-in-out infinite;
  position: relative; z-index: 2;
}

.glow-element {
  position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(248,193,74,0.18) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}

.floating-particle {
  position: absolute; border-radius: 50%;
  opacity: 0.65; filter: blur(0.5px);
}
.floating-particle.p1 { width:10px; height:10px; background:var(--gold);  top:12%; left:8%;  animation: fp 9s infinite alternate  ease-in-out; }
.floating-particle.p2 { width:14px; height:14px; background:var(--red);   bottom:18%; right:5%; animation: fp 12s infinite alternate-reverse ease-in-out; }
.floating-particle.p3 { width:7px;  height:7px;  background:var(--white); bottom:8%; left:12%;  animation: fp 7s  infinite alternate  ease-in-out; }

@keyframes floatY { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-22px) rotate(1.5deg)} }
@keyframes fp { from{transform:translate(0,0)} to{transform:translate(20px,-30px)} }

/* Fade-in animations */
.fade-in-up { opacity: 0; transform: translateY(24px); animation: fadeInUp 0.9s var(--ease-out) 0.4s forwards; }
.hero-title.fade-in-up    { animation-delay: 0.5s; }
.hero-subtitle.fade-in-up { animation-delay: 0.65s; }
.hero-actions.fade-in-up  { animation-delay: 0.8s; }
.hero-visual.fade-in      { opacity: 0; animation: fadeIn 1.2s var(--ease-out) 0.6s forwards; }
@keyframes fadeInUp { to{ opacity:1; transform:translateY(0) } }
@keyframes fadeIn   { to{ opacity:1 } }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-indicator a { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mouse-icon {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 20px; position: relative;
}
.wheel {
  width: 4px; height: 8px;
  background: var(--red); border-radius: 2px;
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
.scroll-text { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
@keyframes scrollWheel { 0%{top:7px;opacity:1} 100%{top:24px;opacity:0} }

/* ─── 10. ABOUT SECTION ─── */
.about-section { background: var(--bg-surface); }

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

.image-wrapper-glow {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-main-image {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.8s var(--ease-out);
}
.image-wrapper-glow:hover .about-main-image { transform: scale(1.04); }

.experience-badge {
  position: absolute; bottom: 28px; right: 28px;
  background: var(--red);
  padding: 22px 28px; border-radius: var(--radius-md);
  box-shadow: var(--glow-red);
  text-align: center; color: var(--white);
  display: flex; flex-direction: column; line-height: 1;
}
.badge-number { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

.about-content { display: flex; flex-direction: column; align-items: flex-start; }
.about-content .section-desc { margin: 0 0 40px; text-align: left; max-width: 100%; }

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; width: 100%;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--dur) var(--ease-out);
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,0,0,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 700;
  color: var(--red); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }

/* Timeline */
.about-timeline {
  margin-top: 100px;
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.timeline-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 56px;
}

.timeline-container {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.timeline-progress-bar {
  position: absolute; top: 35px; left: 12%; right: 12%;
  height: 2px; background: var(--border); z-index: 0;
}
.timeline-step {
  position: relative; z-index: 1; text-align: center;
  transition: opacity var(--dur) var(--ease-out);
  cursor: pointer;
}

.has-js .timeline-step {
  opacity: 0.45;
}
.has-js .timeline-step:hover {
  opacity: 0.8;
}
.has-js .timeline-step.active {
  opacity: 1;
}

.timeline-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border);
  color: var(--text-muted);
  display: flex; justify-content: center; align-items: center;
  margin: 0 auto 20px;
  transition: all var(--dur) var(--ease-out);
}
.timeline-icon svg { width: 26px; height: 26px; }

.timeline-step.active .timeline-icon {
  background: var(--red); border-color: var(--red);
  color: var(--white); box-shadow: var(--glow-red);
}

.has-js .timeline-step.active .timeline-icon {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.timeline-indicator {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  box-shadow: var(--glow-red);
  z-index: 0;
  display: none;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.has-js .timeline-indicator {
  display: block;
}

.timeline-content h4 {
  font-family: var(--font-head); font-size: 1.4rem; color: var(--red); margin-bottom: 8px;
  transition: all var(--dur) var(--ease-out);
}
.timeline-content p  {
  font-size: 0.88rem; color: var(--text-secondary); padding: 0 8px;
  transition: all var(--dur) var(--ease-out);
}
.has-js .timeline-step.active .timeline-content p {
  color: var(--text-primary);
}

/* ─── 11. PRODUCTS SECTION ─── */
.products-section { background: var(--bg-base); }

.product-filters {
  display: flex; justify-content: center;
  gap: 12px; margin-top: 40px; flex-wrap: wrap;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px; font-size: 0.88rem; font-weight: 600;
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 50px; cursor: pointer;
  transition: all 0.25s var(--ease-out);
  min-height: 44px; /* Touch target standard */
}
.filter-btn:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.filter-btn.active {
  background: var(--red); color: var(--white);
  border-color: var(--red); box-shadow: var(--glow-red);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px; margin-top: 60px;
}

/* 3D card */
.product-card-3d { perspective: 1400px; }
.product-card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%; display: flex; flex-direction: column;
  transform-style: preserve-3d;
  transition: transform 0.12s linear, box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.product-card-3d:hover .product-card-inner {
  box-shadow: var(--shadow-lg);
  border-color: rgba(248,193,74,0.18);
}

.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #1A1A1A;
  padding: 4px 12px; font-size: 0.68rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  border-radius: 4px; z-index: 5;
}

.product-image-container {
  height: 240px; overflow: hidden; position: relative;
  background: #111;
}
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card-3d:hover .product-img { transform: scale(1.09); }

/* Admin-managed image placeholder */
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  color: var(--text-muted);
  position: relative;
  transition: background 0.3s ease;
}
.product-img-placeholder.has-image {
  background: none;
}
.product-img-placeholder.has-image > .placeholder-icon,
.product-img-placeholder.has-image > span { display: none; }

.product-img-placeholder > img.uploaded-preview {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: none;
}
.product-img-placeholder.has-image > img.uploaded-preview { display: block; }

.placeholder-icon {
  width: 40px; height: 40px;
  opacity: 0.25;
}
.product-img-placeholder > span {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 1.5px; opacity: 0.3; font-weight: 600;
}

/* Admin-only upload button (hidden from public) */
.admin-upload-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 0.78rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.5px;
  transition: background 0.2s ease;
  margin-top: 6px;
  z-index: 5; position: relative;
}
.admin-upload-btn:hover { background: var(--red-hover); }
.admin-upload-btn svg { width: 14px; height: 14px; }

.product-info {
  padding: 28px; display: flex; flex-direction: column; flex-grow: 1;
}
.product-flavor {
  font-size: 0.75rem; text-transform: uppercase;
  color: var(--gold); font-weight: 700; letter-spacing: 1.8px; margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-head); font-size: 1.55rem;
  font-weight: 700; margin-bottom: 12px; color: var(--text-primary);
}
.product-text {
  font-size: 0.88rem; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 24px; flex-grow: 1;
}
.product-meta { display: flex; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.meta-tag {
  font-size: 0.72rem; font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 4px;
  display: flex; align-items: center; gap: 6px;
}
.meta-tag svg { width: 12px; height: 12px; color: var(--gold); }

/* ─── 12. WHY CHOOSE AJWA ─── */
.why-choose-section { background: var(--bg-surface); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  transition: all var(--dur) var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196,0,0,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.feature-icon-wrapper {
  width: 58px; height: 58px; border-radius: 12px;
  background: rgba(196,0,0,0.1); color: var(--red);
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 24px;
  transition: all var(--dur) var(--ease-out);
}
.feature-icon-wrapper svg { width: 26px; height: 26px; }
.feature-card:hover .feature-icon-wrapper {
  background: var(--red); color: var(--white);
  box-shadow: var(--glow-red); transform: rotate(6deg);
}
.feature-card h3 {
  font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 700; margin-bottom: 12px; color: var(--text-primary);
}
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ─── 13. QUALITY PROCESS ─── */
.process-section { background: var(--bg-base); }

.journey-stepper {
  display: flex; justify-content: space-between;
  position: relative;
  max-width: 760px; margin: 0 auto 56px;
  padding: 0 20px;
}
.stepper-progress {
  position: absolute; top: 20px; left: 50px; right: 50px;
  height: 3px; background: var(--border); z-index: 1;
}
.stepper-progress::after {
  content: ''; position: absolute; top: 0; left: 0; height: 100%;
  width: var(--progress-width, 0%);
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 0.6s var(--ease-out);
}

.step-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-raised);
  border: 2px solid var(--border-light);
  color: var(--text-secondary);
  display: flex; justify-content: center; align-items: center;
  font-weight: 700; font-size: 0.88rem;
  cursor: pointer; position: relative; z-index: 2;
  transition: all var(--dur) var(--ease-out);
  flex-shrink: 0;
}
.step-dot.active {
  background: var(--gold); border-color: var(--gold);
  color: #1A1A1A; box-shadow: var(--glow-gold);
}
.step-dot.completed {
  background: var(--red); border-color: var(--red);
  color: var(--white); box-shadow: var(--glow-red);
}
.step-label {
  position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; white-space: nowrap;
  color: var(--text-muted); letter-spacing: 1px;
}
.step-dot.active .step-label   { color: var(--gold); }
.step-dot.completed .step-label { color: var(--red); }

.journey-display { position: relative; min-height: 440px; }
.journey-card {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), visibility 0.5s;
  z-index: 1;
}
.journey-card.active { opacity: 1; visibility: visible; transform: translateY(0); z-index: 2; }

.journey-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.journey-image { border-radius: var(--radius-md); overflow: hidden; height: 320px; }
.journey-image.aspect-3-2 { height: auto; aspect-ratio: 3 / 2; }
.journey-image img { width: 100%; height: 100%; object-fit: cover; }

.step-badge {
  font-size: 0.72rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2.5px; margin-bottom: 10px; display: block;
}
.journey-info h3 {
  font-family: var(--font-head); font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--text-primary); margin-bottom: 18px;
}
.journey-info > p {
  font-size: 0.93rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 28px;
}
.journey-list { display: flex; flex-direction: column; gap: 12px; }
.journey-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-primary);
}
.check-icon { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Mobile: show all cards stacked */
@media (max-width: 768px) {
  .journey-stepper { display: none; }
  .journey-display { min-height: auto; }
  .journey-card {
    position: static; opacity: 1; visibility: visible;
    transform: none; margin-bottom: 24px;
  }
}

/* ─── 14. TASTE EXPERIENCE ─── */
.experience-section { background: var(--bg-surface); }

.moments-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 20px; margin-top: 56px;
}
.moment-card:nth-child(1) { grid-column: 1/2; grid-row: 1/3; }
.moment-card:nth-child(2) { grid-column: 2/3; grid-row: 1/2; }
.moment-card:nth-child(3) { grid-column: 3/4; grid-row: 1/2; }
.moment-card:nth-child(4) { grid-column: 2/4; grid-row: 2/3; }
.moment-card:nth-child(5) { display: none; } /* 4-card layout */

.moment-card {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.moment-img-wrapper { width: 100%; height: 100%; }
.moment-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.moment-card:hover .moment-img-wrapper img { transform: scale(1.06); }

.moment-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; color: var(--white);
  transition: all var(--dur) var(--ease-out);
}
.moment-tag {
  font-size: 0.68rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 6px;
}
.moment-overlay h3 { font-family: var(--font-head); font-size: 1.45rem; margin-bottom: 6px; }
.moment-overlay p {
  font-size: 0.84rem; color: rgba(255,255,255,0.75);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s var(--ease-out), opacity 0.4s ease;
}
.moment-card:hover .moment-overlay p { max-height: 80px; opacity: 1; }

/* ─── 15. DISTRIBUTOR SECTION ─── */
.distributor-section { background: var(--bg-base); }
.distributor-glow-top {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 280px;
  background: radial-gradient(circle, rgba(196,0,0,0.08) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none;
}

.distributor-wrapper {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: start;
}
.distributor-content .section-title { margin-top: 12px; }
.distributor-text { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.7; }

.partner-benefits { display: flex; flex-direction: column; gap: 28px; margin-bottom: 44px; }
.benefit-item { display: flex; gap: 20px; }
.benefit-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 10px; background: rgba(248,193,74,0.1);
  color: var(--gold); display: flex; justify-content: center; align-items: center;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-item h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.benefit-item p  { font-size: 0.87rem; color: var(--text-secondary); }

/* Glassmorphism info card */
.glass-info-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: border-color var(--dur), transform var(--dur);
}

.glass-info-card:hover {
  border-color: rgba(248, 193, 74, 0.25);
  transform: translateY(-4px);
}

.info-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-card-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  color: var(--white);
  margin-bottom: 10px;
}

.info-card-subquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.4;
  border-left: 2px solid var(--red);
  padding-left: 14px;
  margin: 6px 0 0 0;
}

.info-card-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.info-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.info-feature-item:hover {
  background: rgba(196, 0, 0, 0.05);
  border-color: rgba(196, 0, 0, 0.2);
}

.info-feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  flex-shrink: 0;
}

.info-feature-icon svg {
  width: 18px;
  height: 18px;
}

.info-feature-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

.info-card-quote-box {
  background: linear-gradient(135deg, rgba(196, 0, 0, 0.08) 0%, rgba(248, 193, 74, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: auto;
}

.info-card-quote-box blockquote {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  margin: 0;
  animation: quote-glow 4s ease-in-out infinite;
}

.info-card-quote-box blockquote::before {
  content: '“';
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
  color: var(--red);
  font-weight: 700;
}

.info-card-quote-box blockquote::after {
  content: '”';
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: -0.35em;
  margin-left: 2px;
  color: var(--red);
  font-weight: 700;
}

@keyframes quote-glow {
  0%, 100% { text-shadow: 0 0 4px rgba(248, 193, 74, 0); }
  50% { text-shadow: 0 0 10px rgba(248, 193, 74, 0.35); }
}

@media (max-width: 576px) {
  .info-card-features {
    grid-template-columns: 1fr;
  }
}

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-muted);
}
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Shared form field styles */
.form-group input,
.form-group select,
.form-group textarea,
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

/* ─── 16. CUSTOMER FEEDBACK & REVIEWS ─── */
.feedback-section { background: var(--bg-surface); }

.feedback-form-panel {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.feedback-form-panel label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.feedback-form-panel label .required { color: var(--red); }
.feedback-form-panel label .optional { color: var(--text-muted); font-size: 0.72rem; }

.feedback-form-panel input,
.feedback-form-panel textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.feedback-form-panel input:focus,
.feedback-form-panel textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,0,0,0.15);
  outline: none;
  background: rgba(255,255,255,0.02);
}

/* Star Rating Selector */
.star-rating-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.star-selector-icon {
  width: 28px;
  height: 28px;
  color: var(--border-light);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), color 0.2s;
}
.star-selector-icon:hover { transform: scale(1.2); }
.star-selector-icon.active { color: var(--gold); fill: var(--gold); }

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,0,0,0.25);
  box-shadow: var(--shadow-sm);
}
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.review-card-author h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.review-card-author p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 2px 0 0 0;
}
.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: var(--gold);
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

/* Form Status Message */
.form-status {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-status.success {
  background: rgba(40,167,69,0.1);
  border: 1px solid rgba(40,167,69,0.2);
  color: #28a745;
  display: block !important;
}
.form-status.error {
  background: rgba(220,53,69,0.1);
  border: 1px solid rgba(220,53,69,0.2);
  color: #dc3545;
  display: block !important;
}



/* ─── 17. CONTACT SECTION ─── */
.contact-section { background: var(--bg-base); }

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

.contact-info-panel { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px;
  transition: border-color var(--dur);
}
.info-card:hover { border-color: rgba(196,0,0,0.25); }

.info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(196,0,0,0.1); color: var(--red);
  display: flex; justify-content: center; align-items: center; flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }

.info-details h4 {
  font-size: 0.75rem; text-transform: uppercase;
  color: var(--text-muted); font-weight: 700; letter-spacing: 0.8px; margin-bottom: 5px;
}
.info-highlight { font-size: 1.1rem; font-weight: 700; color: var(--red); }
.info-details address { font-style: normal; font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }
.info-link { font-size: 0.97rem; font-weight: 600; color: var(--text-primary); }
.info-link:hover { color: var(--red); }

.whatsapp-btn-large {
  display: flex; align-items: center; gap: 16px;
  background: #25D366; color: var(--white);
  padding: 16px 22px; border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(37,211,102,0.2);
  transition: all var(--dur) var(--ease-out);
}
.whatsapp-btn-large:hover {
  background: #1EBC5A; transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.35);
}
.whatsapp-btn-large svg { width: 28px; height: 28px; }
.whatsapp-btn-large span { font-weight: 700; display: block; }
.whatsapp-btn-large small { font-size: 0.74rem; opacity: 0.85; }

/* Contact Details Card Styling */
.contact-details-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  transition: border-color var(--dur), transform var(--dur);
}

.contact-details-card:hover {
  border-color: rgba(196, 0, 0, 0.25);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(196, 0, 0, 0.1);
  color: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-card-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-card-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-method-block {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  transition: background var(--dur), border-color var(--dur);
}

.contact-method-block:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-light);
}

.whatsapp-block:hover {
  background: rgba(37, 211, 102, 0.03);
  border-color: rgba(37, 211, 102, 0.2);
}

.phone-block:hover {
  background: rgba(248, 193, 74, 0.03);
  border-color: rgba(248, 193, 74, 0.25);
}

.method-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.whatsapp-chat-icon {
  color: #25D366;
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}

.phone-call-icon {
  color: var(--gold);
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}

.hours-icon {
  color: var(--red);
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}

.method-meta h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.method-meta p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.5;
}

.whatsapp-btn-large.font-bold {
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  text-decoration: none;
}

.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 8px 0;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--border);
}

.contact-divider span {
  padding: 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.phone-number-link {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
  word-break: break-all;
}

.phone-number-link:hover {
  color: var(--white);
  text-shadow: var(--glow-gold);
}

.hours-days {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-time {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red-hover);
}

.contact-footer-quote {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  width: 100%;
}

.contact-footer-quote blockquote {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  position: relative;
}

/* Google Map */
.map-container {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  margin-top: 60px;
}
.map-container iframe { display: block; }

/* ─── 18. FOOTER ─── */
.main-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

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

.footer-logo { height: 56px; width: auto; margin-bottom: 20px; }
.footer-tagline {
  font-family: var(--font-head); font-style: italic;
  color: var(--gold); font-size: 1.1rem; margin-bottom: 12px;
}
.footer-desc { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-card); color: var(--text-secondary);
  border: 1px solid var(--border);
  display: flex; justify-content: center; align-items: center;
  transition: all 0.3s var(--ease-out);
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover {
  background: var(--red); color: var(--white);
  border-color: var(--red); box-shadow: var(--glow-red);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-primary); margin-bottom: 24px;
  position: relative;
}
.footer-links-col h4::after {
  content: ''; position: absolute;
  bottom: -8px; left: 0;
  width: 28px; height: 2px; background: var(--red);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.2s, padding-left 0.2s; }
.footer-links-col a:hover { color: var(--red); padding-left: 6px; }

.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.87rem; color: var(--text-secondary);
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 36px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--red); }

/* ─── 19. SCROLL REVEAL ANIMATIONS ─── */
.scroll-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.scroll-reveal.left  { transform: translateX(-40px); }
.scroll-reveal.right { transform: translateX(40px); }
.scroll-reveal.active { opacity: 1; transform: translate(0,0); }

/* Staggered delay for feature/product grids */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.25s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(7) { transition-delay: 0.35s; }

/* Dual-image hover swap interaction */
.product-image-container img.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.product-image-container img.product-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.product-card-3d:hover .product-image-container img.product-img {
  opacity: 0;
  transform: scale(1.09);
}
.product-card-3d:hover .product-image-container img.product-img-hover {
  opacity: 1;
  transform: scale(1.09);
}

/* Premium Packaging Section */
.packaging-section {
  background: var(--bg-surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.packaging-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.packaging-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.packaging-image-wrapper:hover img {
  transform: scale(1.04);
}
.packaging-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Product Story Section */
.story-section {
  background: var(--bg-base);
  padding: 100px 0;
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.story-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.story-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.story-image-wrapper:hover img {
  transform: scale(1.04);
}
.story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Manufacturing Excellence Section */
.excellence-section {
  background: var(--bg-surface);
  padding: 100px 0;
}
.excellence-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.excellence-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.excellence-img-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.excellence-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.excellence-img-card:hover img {
  transform: scale(1.05);
}
.excellence-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-base);
  padding: 100px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.gallery-overlay p {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ─── 20. RESPONSIVE ─── */
/* ─── 20. RESPONSIVE MEDIA QUERIES ─── */

/* Large screens: 1441px and above */
@media (min-width: 1441px) {
  .container {
    max-width: var(--container);
  }
}

/* Laptop and below: <= 1440px */
@media (max-width: 1440px) {
  .hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
  }
}

/* Small Laptop / Tablet Landscape: <= 1200px */
@media (max-width: 1200px) {
  /* Prevent desktop nav layout break */
  .nav-list {
    gap: 20px;
  }
  .primary-navigation {
    margin-left: 20px;
  }
}

/* Tablets and below: <= 1024px */
@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }
  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  }

  /* Tablet/Mobile Hamburger Nav Layout Activation */
  .mobile-nav-toggle {
    display: flex;
  }
  .primary-navigation {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: var(--bg-surface);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out), height 0.4s var(--ease-out);
    z-index: 800;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    flex-grow: 0;
    margin-left: 0;
  }
  .main-header.scrolled .primary-navigation {
    top: 64px;
    height: calc(100vh - 64px);
  }
  .primary-navigation.open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    gap: 24px;
    width: 100%;
  }
  .nav-item {
    font-size: 1.15rem;
    width: 100%;
    display: block;
  }
  .nav-item::after {
    bottom: -2px;
  }
  .nav-cta-li {
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  /* Grid Conversions for Tablets */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-content {
    align-items: center;
    text-align: center;
  }
  .about-content .section-desc {
    text-align: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .journey-image {
    height: 260px;
  }

  .distributor-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .glass-info-card {
    margin-top: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info-panel {
    order: 2;
  }
  .contact-details-card {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .timeline-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .timeline-progress-bar {
    display: none;
  }
  
  .packaging-grid, .story-grid, .excellence-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-content, .packaging-content, .excellence-content {
    text-align: center;
    align-items: center;
  }

  .moments-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 260px);
  }
  .moment-card:nth-child(1),
  .moment-card:nth-child(2),
  .moment-card:nth-child(3),
  .moment-card:nth-child(4) {
    grid-column: auto; grid-row: auto;
  }
}

/* Large Phones and below: <= 767px */
@media (max-width: 767px) {
  section {
    padding: 72px 0;
  }
  .section-title {
    font-size: 1.9rem;
  }

  /* Single Column Stacking for mobile */
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 50px auto 0;
  }

  .timeline-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .about-main-image {
    height: clamp(260px, 40vh, 360px);
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Lock Quality Process slider on mobile to stacked view */
  .journey-stepper {
    display: none;
  }
  .journey-display {
    min-height: auto;
  }
  .journey-card,
  .journey-card.active {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin-bottom: 24px;
    display: block !important;
  }
  .journey-image {
    height: 200px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .excellence-images {
    grid-template-columns: 1fr;
  }
  .excellence-img-card img {
    height: 180px;
  }

  .moments-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .moment-card { height: 260px; }
  .moment-card:nth-child(5) { display: block; }
  .testimonial-card { flex: 0 0 calc(100% - 24px); }
}

/* Medium Phones and below: <= 576px */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat-card {
    padding: 18px;
  }
  .info-card-features {
    grid-template-columns: 1fr;
  }
}

/* Mobile Phones: <= 480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .product-filters {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  /* Compact spacing for panels to fit small viewports */
  .glass-info-card,
  .feedback-form-panel,
  .contact-details-card,
  .contact-form-panel {
    padding: 28px 20px;
  }

  .info-card {
    padding: 16px;
  }

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

/* Tiny Mobile Phones: <= 320px */
@media (max-width: 320px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .tamil-top-bar {
    font-size: 0.75rem;
  }
}

/* ─── 21. STEP 01 IMAGE CUSTOM STYLES ─── */
.step-01-grid {
  grid-template-columns: 45fr 55fr !important;
  align-items: center !important; /* Keep the text vertically centered with the image */
}

.step-01-image {
  height: 380px !important; /* Increased height from 320px */
  background-color: #080808 !important; /* Subtle dark background so empty space blends */
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid var(--border) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6) !important;
}

.step-01-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 768px) {
  .step-01-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .step-01-image {
    height: 320px !important; /* Adjust height on tablet */
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .step-01-image {
    height: 280px !important; /* Adjust height on mobile */
  }
}

/* ─── 22. STEP 02 IMAGE CUSTOM STYLES ─── */
.step-02-image {
  background-color: #0d0d0d !important; /* Subtle dark background so empty space blends */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid var(--border) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6) !important;
}

.step-02-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* ─── 23. STEP 03 IMAGE CUSTOM STYLES ─── */
.step-03-image {
  background-color: #0d0d0d !important; /* Subtle dark background so empty space blends */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid var(--border) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6) !important;
}

.step-03-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* ─── 24. STEP 04 IMAGE CUSTOM STYLES ─── */
.step-04-image {
  background-color: #0d0d0d !important; /* Subtle dark background so empty space blends */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid var(--border) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6) !important;
}

.step-04-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* ─── 25. STEP 05 IMAGE CUSTOM STYLES ─── */
.step-05-image {
  background-color: #0d0d0d !important; /* Subtle dark background so empty space blends */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid var(--border) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6) !important;
}

.step-05-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
