/* ═══════════════════════════════════════════════════════
   SHREE JI — ANAMORPHIC LANDING PAGE
   Design System & Full Styles
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables (Design Tokens) ── */
:root {
  /* Brand Colors */
  --blue-deep: #0a1e5c;
  --blue-primary: #1a3a7a;
  --blue-accent: #2850a4;
  --blue-light: #4a8fe7;
  --gold-primary: #c89b3c;
  --gold-light: #e8c86e;
  --gold-dark: #8b6914;
  --red-primary: #d4213d;
  --red-dark: #a01029;
  --cream: #fff8e7;
  --white: #ffffff;
  --dark: #0a0a0f;

  /* Gradients */
  --gradient-royal: linear-gradient(135deg, #0a1e5c 0%, #1a3a7a 50%, #2850a4 100%);
  --gradient-gold: linear-gradient(135deg, #8b6914 0%, #c89b3c 40%, #e8c86e 60%, #c89b3c 100%);
  --gradient-hero-bg: radial-gradient(ellipse at 50% 30%, #1a3a7a 0%, #0a1440 40%, #060a20 100%);
  --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(232,200,110,0.3) 50%, transparent 100%);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);

  /* Shadows */
  --shadow-glow-gold: 0 0 60px rgba(200,155,60,0.3), 0 0 120px rgba(200,155,60,0.1);
  --shadow-box: 0 25px 80px rgba(0,0,0,0.5), 0 10px 30px rgba(0,0,0,0.3);
  --shadow-product: 0 20px 60px rgba(0,0,0,0.4);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

/* ════════════════════════════════════════════════
   PRELOADER
   ════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  margin-bottom: 2rem;
}

.preloader-brand {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
}

.preloader-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold-primary);
  opacity: 0;
  transform: translateY(20px);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(200,155,60,0.15);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 3px;
}

/* ════════════════════════════════════════════════
   PARTICLES CANVAS
   ════════════════════════════════════════════════ */
.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero-bg);
  overflow: hidden;
  padding: 2rem;
}

/* Background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,155,60,0.08);
}

.bg-circle-1 {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  animation: circleFloat 20s ease-in-out infinite;
}

.bg-circle-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  animation: circleFloat 15s ease-in-out infinite reverse;
}

.bg-circle-3 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: circleFloat 25s ease-in-out infinite;
}

@keyframes circleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* Brand logo */
.hero-brand {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
}

.hero-brand-hindi {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-brand-english {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.hero-brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: rgba(232,200,110,0.6);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ════════════════════════════════════════════════
   ★ ANAMORPHIC 3D BOX ★
   The core illusion — a recessed 3D "stage"
   ════════════════════════════════════════════════ */
.anamorphic-container {
  position: relative;
  z-index: 5;
  width: clamp(340px, 70vw, 800px);
  height: clamp(280px, 45vw, 500px);
  perspective: 1200px;
  margin: 0 auto;
}

.anamorphic-box {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  border-radius: 24px;
  overflow: visible;
}

/* Box walls — create visible 3D depth */
.box-wall {
  position: absolute;
  background: linear-gradient(135deg, #1a3a7a, #0f2560);
}

.box-wall-back {
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
}

.box-wall-top {
  top: -30px; left: 0; right: 0;
  height: 30px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, #2850a4, #1a3a7a);
  transform-origin: bottom;
  transform: rotateX(45deg);
  z-index: 2;
}

.box-wall-bottom {
  bottom: -30px; left: 0; right: 0;
  height: 30px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(0deg, #0f1a3d, #1a3a7a);
  transform-origin: top;
  transform: rotateX(-45deg);
  z-index: 2;
}

.box-wall-left {
  top: -15px; left: -30px; bottom: -15px;
  width: 30px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(90deg, #162d6a, #1a3a7a);
  transform-origin: right;
  transform: rotateY(-45deg);
  z-index: 2;
}

.box-wall-right {
  top: -15px; right: -30px; bottom: -15px;
  width: 30px;
  border-radius: 0 16px 16px 0;
  background: linear-gradient(-90deg, #162d6a, #1a3a7a);
  transform-origin: left;
  transform: rotateY(45deg);
  z-index: 2;
}

/* Shadow / glow on the box */
.anamorphic-box::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--shadow-box), 0 0 100px rgba(26,58,122,0.4);
  z-index: 0;
  pointer-events: none;
}

/* Product scene inside the box */
.product-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
}

.product-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: brightness(0.9) saturate(1.2);
}

/* ── Curtains ── */
.curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 10;
  background: linear-gradient(180deg,
    #8b1a1a 0%,
    #b22222 10%,
    #a01515 30%,
    #8b1a1a 50%,
    #a01515 70%,
    #b22222 90%,
    #8b1a1a 100%
  );
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
}

.curtain::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 30px;
  background: repeating-linear-gradient(180deg,
    transparent 0px,
    rgba(0,0,0,0.1) 20px,
    transparent 40px
  );
}

.curtain-left {
  left: 0;
  border-radius: 24px 0 0 24px;
  transform-origin: left;
}

.curtain-left::before { right: 0; }

.curtain-right {
  right: 0;
  border-radius: 0 24px 24px 0;
  transform-origin: right;
}

.curtain-right::before { left: 0; }

/* ── Breakout Product (pops OUT of box) ── */
.breakout-product {
  position: absolute;
  z-index: 20;
  width: 55%;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%) translateZ(60px) scale(0);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  opacity: 0;
  pointer-events: none;
}

.breakout-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: productFloat 4s ease-in-out infinite;
  animation-play-state: paused;
}

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

/* ── Floating Gulab Jamuns ── */
.floating-jamuns {
  position: absolute;
  inset: 0;
  z-index: 15;
  pointer-events: none;
}

.jamun {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4874e, #8b4513, #5a2d0e);
  box-shadow: 
    inset -4px -4px 8px rgba(0,0,0,0.4),
    inset 4px 4px 8px rgba(255,200,130,0.3),
    0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: scale(0);
}

.jamun::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 8px;
  width: 12px;
  height: 8px;
  background: rgba(255,220,160,0.35);
  border-radius: 50%;
  transform: rotate(-30deg);
}

/* Small green cardamom on top */
.jamun::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 8px;
  background: #4a7c3f;
  border-radius: 50% 50% 30% 30%;
  transform: translateX(-50%) rotate(15deg);
}

.jamun-1 { top: 10%; left: -5%; width: 45px; height: 45px; }
.jamun-2 { top: -10%; left: 60%; width: 35px; height: 35px; }
.jamun-3 { top: 30%; right: -8%; width: 50px; height: 50px; }
.jamun-4 { bottom: 5%; left: 15%; width: 30px; height: 30px; }
.jamun-5 { bottom: -5%; right: 20%; width: 38px; height: 38px; }

/* ── Hero Product Name ── */
.hero-product-name {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 2.5rem;
}

.hero-product-name h1 {
  font-family: var(--font-display);
  line-height: 1.05;
}

.hero-product-name .line {
  display: block;
  overflow: hidden;
}

.hero-product-name .line-inner {
  display: block;
  transform: translateY(110%);
}

.hero-product-name .line-1 .line-inner {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.15em;
}

.hero-product-name .line-2 .line-inner {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-product-name .line-3 .line-inner {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  font-style: italic;
}

/* ── Hero Tagline ── */
.hero-tagline {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0;
}

.tagline-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.tagline-line {
  display: block;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  margin: 0.8rem auto 0;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  opacity: 0;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(232,200,110,0.4);
  border-radius: 13px;
  margin: 0 auto 0.5rem;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(232,200,110,0.5);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   SHOWCASE SECTION
   ════════════════════════════════════════════════ */
.showcase-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #060a20 0%, #0a1440 50%, #0f1a3d 100%);
  overflow: hidden;
  padding: var(--section-padding) 2rem;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid rgba(200,155,60,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
}

.showcase-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
}

.showcase-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary, .btn-secondary {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(200,155,60,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,155,60,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(200,155,60,0.3);
}

.btn-secondary:hover {
  background: rgba(200,155,60,0.1);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

/* Product tilt card */
.showcase-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
}

.product-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.2) 0%, transparent 70%);
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}

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

.showcase-product-img {
  position: relative;
  z-index: 2;
  max-width: 350px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.product-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
  filter: blur(10px);
}

/* ════════════════════════════════════════════════
   FEATURES SECTION
   ════════════════════════════════════════════════ */
.features-section {
  position: relative;
  padding: var(--section-padding) 2rem;
  background: linear-gradient(180deg, #0f1a3d 0%, #0a1440 100%);
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,155,60,0.3), transparent);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,58,122,0.3) 0%, rgba(10,20,64,0.5) 100%);
  border: 1px solid rgba(200,155,60,0.1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(40px);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,155,60,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(200,155,60,0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--gold-primary);
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════
   BRAND STORY SECTION
   ════════════════════════════════════════════════ */
.story-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding) 2rem;
  background: var(--gradient-hero-bg);
  overflow: hidden;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.story-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid rgba(200,155,60,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.story-year {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

.year-counter {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.story-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  max-width: 550px;
  opacity: 0;
  transform: translateY(20px);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: rgba(26,58,122,0.2);
  border: 1px solid rgba(200,155,60,0.1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* Golden rings visual */
.story-visual {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.golden-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(200,155,60,0.3);
  animation: ringRotate 10s linear infinite;
}

.ring-1 {
  width: 250px; height: 250px;
  border-color: rgba(200,155,60,0.2);
  animation-duration: 12s;
}

.ring-2 {
  width: 180px; height: 180px;
  border-color: rgba(200,155,60,0.35);
  animation-duration: 8s;
  animation-direction: reverse;
}

.ring-3 {
  width: 100px; height: 100px;
  border-color: rgba(200,155,60,0.5);
  animation-duration: 6s;
  background: radial-gradient(circle, rgba(200,155,60,0.1) 0%, transparent 70%);
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ════════════════════════════════════════════════
   CTA / FOOTER SECTION
   ════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: var(--section-padding) 2rem 3rem;
  background: linear-gradient(180deg, #060a20 0%, var(--dark) 100%);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,155,60,0.4), transparent);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-line {
  display: block;
  color: var(--cream);
  opacity: 0;
  transform: translateY(30px);
}

.cta-line-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
}

.btn-cta-primary, .btn-cta-secondary {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.05em;
}

.btn-cta-primary {
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: 0 4px 30px rgba(200,155,60,0.35);
}

.btn-cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(200,155,60,0.5);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(200,155,60,0.35);
}

.btn-cta-secondary:hover {
  background: rgba(200,155,60,0.08);
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

/* Footer */
.cta-footer {
  padding-top: 3rem;
  border-top: 1px solid rgba(200,155,60,0.1);
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-hindi {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-english {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(232,200,110,0.5);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(200,155,60,0.2);
  color: var(--gold-primary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(200,155,60,0.15);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════════
   SHIMMER EFFECTS
   ════════════════════════════════════════════════ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .showcase-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .showcase-desc { margin: 0 auto 2rem; }
  .showcase-cta { justify-content: center; }
  .showcase-product { margin-top: 2rem; }
  
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .story-container {
    grid-template-columns: 1fr;
  }
  .story-visual {
    display: none;
  }
}

@media (max-width: 640px) {
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .story-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .anamorphic-container {
    width: 95vw;
    height: 60vw;
  }

  .box-wall-top, .box-wall-bottom {
    height: 20px;
  }
  .box-wall-top { top: -20px; }
  .box-wall-bottom { bottom: -20px; }
  
  .box-wall-left, .box-wall-right {
    width: 20px;
  }
  .box-wall-left { left: -20px; }
  .box-wall-right { right: -20px; }
}

/* ════════════════════════════════════════════════
   CUSTOM SCROLLBAR
   ════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-primary), var(--gold-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-accent), var(--gold-primary));
}
