/* ===== HOME PAGE STYLES ===== */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 15s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.75) 50%,
    rgba(13,27,42,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 18px 0 22px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #e8c97e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: rgba(201,168,76,0.3); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeIn 1s ease 1s both;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-float {
  position: absolute;
  z-index: 1;
  font-size: 2rem;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  opacity: 0.4;
}
.hero-float-1 { top: 20%; left: 8%; animation-delay: 0s; }
.hero-float-2 { top: 30%; right: 8%; animation-delay: 2s; }
.hero-float-3 { bottom: 20%; left: 12%; animation-delay: 4s; font-size: 1.5rem; color: var(--gold); }

/* ── SECTION ── */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-header { margin-bottom: 60px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Product wrapper — holds labels row + card */
.product-wrapper {
  display: flex;
  flex-direction: column;
}

/* Labels row shown above the card */
.card-labels-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  margin-bottom: 10px;
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* .product-badge and .product-lang are now in normal flow above the card */
.product-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.marathi-badge {
  background: linear-gradient(135deg, #b5534e, #7a2e2e);
  color: white;
}

.product-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,27,42,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}
.lang-flag { font-size: 1.1rem; }
.lang-name { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; color: var(--gold-light); }

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 480px;
  background: linear-gradient(145deg, #0d1b2a, #132235);
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CUSTOM CENTER PLAY BUTTON ── */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: pointer;
  z-index: 2;
}
.video-play-overlay.playing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-center-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 0 0 16px rgba(201,168,76,0.18), 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-center-play svg { margin-left: 4px; }
.video-center-play:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 22px rgba(201,168,76,0.12), 0 12px 40px rgba(0,0,0,0.5);
}

/* ── VIDEO MINI CONTROLS ── */
.video-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3;
}
.video-controls.active {
  opacity: 1;
  visibility: visible;
}
.ctrl-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ctrl-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.1);
}


.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, rgba(13,27,42,0.9), rgba(19,34,53,0.95));
}

.play-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(201,168,76,0.1);
  transition: var(--transition);
  cursor: pointer;
}
.play-icon-wrap:hover { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(201,168,76,0.15); }
.marathi-play { background: linear-gradient(135deg, #b5534e, #7a2e2e); box-shadow: 0 0 0 16px rgba(181,83,78,0.1); }
.play-icon { color: var(--navy); font-size: 1.6rem; margin-left: 6px; }

.video-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
}
.video-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 0 20px;
}
.video-hint code {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--gold);
}

.product-info {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.product-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

.product-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.product-features li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--glass-border);
}

/* ── E-COMMERCE PRICE DESIGN ── */
.price-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Main price */
.product-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-currency { font-size: 1.3rem; font-weight: 700; }
.price-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; }
.marathi-price { background: linear-gradient(135deg, #e8827d, #b5534e); -webkit-background-clip: text; background-clip: text; }

/* MRP row: label + strikethrough + discount badge */
.price-mrp-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.price-mrp-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  letter-spacing: 0.5px;
}
.price-original {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-weight: 400;
}

/* Green discount badge — like Flipkart */
.price-discount-badge {
  background: #1a7a1a;
  color: #4cff4c;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.marathi-discount-badge {
  background: #7a1a1a;
  color: #ff8080;
}

/* Coupon/offer tag — dashed border like Amazon offers */
.price-offer-coupon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px dashed rgba(255, 170, 0, 0.65);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: #ffaa00;
  font-weight: 600;
  width: fit-content;
  background: rgba(255, 170, 0, 0.07);
  letter-spacing: 0.3px;
}
.marathi-coupon {
  border-color: rgba(232, 130, 125, 0.6);
  color: #e8827d;
  background: rgba(232, 130, 125, 0.07);
}

/* ── FEATURES ── */
.features-section { position: relative; }
.features-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  animation: float 5s ease-in-out infinite;
}
.feature-card:nth-child(2) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 2s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 1.5s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 2.5s; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

/* ── OTHER SERVICES ── */
.services-row { display: flex; flex-direction: column; gap: 20px; }
.service-link-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.slc-arrow { color: var(--gold); font-size: 1.4rem; opacity: 0.6; transition: var(--transition); }
.service-link-card:hover .slc-arrow { transform: translateX(6px); opacity: 1; }

/* ── CONTACT ── */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
}
.contact-left {
  padding: 52px 44px;
  background: linear-gradient(145deg, rgba(201,168,76,0.08), rgba(13,27,42,0.5));
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.9; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
/* Arrow hint on clickable cards */
a.contact-method::after {
  content: '→';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease, right 0.2s ease;
}
a.contact-method:hover::after {
  opacity: 1;
  right: 12px;
}
a.contact-method:active {
  transform: scale(0.97);
  background: rgba(201,168,76,0.14);
}
.contact-method:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.5); box-shadow: 0 0 0 3px rgba(201,168,76,0.08); }
.cm-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-icon { background: #25d366; }
.call-icon { background: linear-gradient(135deg, #2196f3, #0d47a1); }
.email-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.cm-text { display: flex; flex-direction: column; }
.cm-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.cm-value { font-size: 0.9rem; font-weight: 500; color: var(--gold-light); margin-top: 2px; }
.cm-hint { font-size: 0.65rem; color: var(--text-muted); font-style: italic; margin-top: 3px; opacity: 0.8; }

/* Email Us card — full-width vertical layout */
.contact-method-email {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cm-email-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cm-email-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.cm-email-btn {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  background: rgba(201,168,76,0.06);
  transition: var(--transition);
  white-space: nowrap;
}
.cm-email-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.contact-right {
  padding: 52px 44px;
  background: rgba(255,255,255,0.02);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  resize: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option { background: var(--navy-mid); color: var(--white); }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-light); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Keep product cards side-by-side on tablet */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  /* Stack badges: language on top, Most Popular/Traditional below */
  .card-labels-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--glass-border); padding: 36px 28px; }
  .contact-right { padding: 36px 28px; }
  .video-container { max-height: 340px; }
  /* Other services: keep 2-col, arrows pinned to bottom */
  .services-row { flex-direction: row; gap: 16px; align-items: stretch; }
  .service-link-card { flex: 1; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; padding: 22px 16px; gap: 0; }
  .slc-icon { margin-bottom: 10px; }
  .slc-text { flex: 1; display: flex; flex-direction: column; }
  .slc-arrow { display: block; margin-top: auto; padding-top: 14px; opacity: 0.7; font-size: 1.4rem; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 5% 60px; }
  .hero-stats { gap: 16px; }
  .stat-divider { height: 24px; }
  /* Compact product cards side-by-side */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .video-container { max-height: 260px; aspect-ratio: 9/16; }
  .product-info { padding: 16px; gap: 10px; }
  .product-title { font-size: 1.1rem; }
  .product-desc { font-size: 0.8rem; }
  .product-features { grid-template-columns: 1fr; gap: 4px; }
  .product-features li { font-size: 0.72rem; }
  .price-num { font-size: 1.8rem; }
  .price-currency { font-size: 1.1rem; }
  .product-price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .btn { padding: 8px 12px; font-size: 0.7rem; gap: 4px; }
  /* Compact e-commerce offer on mobile */
  .price-mrp-row { gap: 5px; }
  .price-mrp-label { font-size: 0.65rem; }
  .price-original { font-size: 0.8rem; }
  .price-discount-badge { font-size: 0.65rem; padding: 1px 6px; }
  .price-offer-coupon { font-size: 0.63rem; padding: 3px 8px; }
  /* Features: 2-col on mobile */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 20px 14px; }
  .feature-icon { font-size: 1.8rem; margin-bottom: 8px; }
  .feature-card h3 { font-size: 0.95rem; }
  .feature-card p { font-size: 0.78rem; }
  /* Other services: 2-col on mobile */
  .services-row { flex-direction: row; gap: 12px; }
  .service-link-card { padding: 18px 12px; }
  .slc-icon { font-size: 1.8rem; margin-bottom: 8px; }
  .slc-text h3 { font-size: 1rem; }
  .slc-text p { font-size: 0.78rem; }
  .slc-arrow { font-size: 1.2rem; margin-top: auto; padding-top: 10px; }
  /* Fix long email overflowing on mobile */
  .cm-value { font-size: 0.8rem; word-break: break-all; }
  /* Email Us card — mobile optimized */
  .cm-email-btns { gap: 6px; }
  .cm-email-btn {
    font-size: 0.68rem;
    padding: 5px 10px;
    white-space: normal;
    word-break: break-all;
    flex: 1 1 auto;
    text-align: center;
  }
  .section { padding: 60px 0; }
}
