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

:root {
  --primary:    #D97706;
  --secondary:  #B91C1C;
  --bg:         #FFF7ED;
  --accent:     #4D7C0F;
  --text:       #3F2A1D;
  --light:      #FFFBF5;
  --card-bg:    #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Noto Sans Gujarati', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Utility ── */
.guj { font-family: 'Noto Sans Gujarati', sans-serif; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.0rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-sub {
  text-align: center;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ── Navbar ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255,247,237,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(217,119,6,0.15);
  animation: slideDown 0.6s ease forwards;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.logo {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none;
}
.logo-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 3px 12px rgba(217,119,6,0.4);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 3px 12px rgba(217,119,6,0.4); }
  50%      { box-shadow: 0 3px 22px rgba(217,119,6,0.75); }
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block; font-size: 1.1rem; color: var(--secondary); font-weight: 800;
}
.logo-text span {
  font-size: 15px; color: var(--primary); font-weight: 500; letter-spacing: 0.04em;
}

nav ul { list-style: none; display: flex; gap: 1.8rem; }
nav ul a {
  text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem;
  position: relative; padding-bottom: 2px; transition: color 0.3s;
}
nav ul a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width 0.3s;
}
nav ul a:hover { color: var(--primary); }
nav ul a:hover::after { width: 100%; }

/* ── Hamburger (mobile only) ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  border-radius: 8px; transition: background 0.2s;
}
.hamburger:hover { background: rgba(217,119,6,0.1); }
.hamburger span {
  display: block; height: 2.5px; border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hide mobile-only nav elements on desktop ── */
.nav-menu-header { display: none; }

/* ── Nav overlay ── */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.open { opacity: 1; }

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

  #nav-menu {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; right: 0;
    width: 260px; height: 100vh;
    background: #FFF7ED;
    box-shadow: -4px 0 32px rgba(0,0,0,0.18);
    padding: 0 0 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 99;
  }
  #nav-menu.open { transform: translateX(0); }

  .nav-menu-header {
    display: flex !important; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.4rem;
    border-bottom: 2px solid rgba(217,119,6,0.15);
    background: linear-gradient(135deg, rgba(217,119,6,0.08), rgba(245,158,11,0.05));
  }
  .nav-menu-title {
    font-size: 1.05rem; font-weight: 800; color: var(--text);
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  .nav-menu-close {
    display: flex; align-items: center; gap: 0.3rem;
    background: rgba(217,119,6,0.12); border: 1px solid rgba(217,119,6,0.3);
    color: var(--primary); border-radius: 50px;
    padding: 0.3rem 0.8rem; font-size: 0.82rem; font-weight: 700;
    cursor: pointer; transition: background 0.2s, transform 0.2s;
  }
  .nav-menu-close:hover { background: rgba(217,119,6,0.22); transform: scale(1.04); }

  #nav-menu li { border-bottom: 1px solid rgba(217,119,6,0.12); }
  #nav-menu li:last-child { border-bottom: none; }
  #nav-menu a {
    display: block; padding: 1rem 1.4rem;
    font-size: 1.05rem; font-weight: 600; color: var(--text);
  }
  #nav-menu a:hover { color: var(--primary); background: rgba(217,119,6,0.05); }
  #nav-menu a::after { display: none; }
}

/* ── Hero ── */
.hero {
  /* min-height: 100vh; */
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 5% 3rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #FDEFD4 0%, var(--bg) 70%);
}
.hero-bg-circle {
  position: absolute; border-radius: 50%;
  background: rgba(217,119,6,0.07);
  animation: floatCircle 8s ease-in-out infinite alternate;
}
.hero-bg-circle:nth-child(1) { width: 500px; height: 500px; top: -120px; right: -100px; }
.hero-bg-circle:nth-child(2) { width: 320px; height: 320px; bottom: -80px; left: -60px; animation-delay: 2s; }
@keyframes floatCircle {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-20px); }
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-block;
  background: rgba(217,119,6,0.12);
  color: var(--primary);
  border: 1px solid rgba(217,119,6,0.35);
  border-radius: 50px; padding: 0.35rem 1rem;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text);
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero h1 span { color: var(--primary); }
.hero-guj {
  font-family: 'Noto Sans Gujarati', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--secondary);
  font-weight: 600;
  margin: 0.5rem 0 1.2rem;
  animation: fadeInUp 0.7s ease 0.5s both;
}
.hero p {
  font-size: 1.05rem; color: #6B4C36; line-height: 1.8;
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease 0.6s both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.75s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #F59E0B);
  color: #fff; border: none; padding: 0.85rem 2.2rem;
  border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 20px rgba(217,119,6,0.38);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(217,119,6,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--secondary); border: 2px solid var(--secondary);
  padding: 0.85rem 2.2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: var(--secondary); color: #fff;
  transform: translateY(-3px);
}

.hero-emojis {
  margin-top: 2rem;
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.9s both;
}
.emoji-chip {
  background: var(--card-bg);
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: 50px; padding: 0.45rem 1rem;
  font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  animation: floatChip 3s ease-in-out infinite alternate;
}
.emoji-chip:nth-child(2) { animation-delay: 0.5s; }
.emoji-chip:nth-child(3) { animation-delay: 1s; }
.emoji-chip:nth-child(4) { animation-delay: 1.5s; }
@keyframes floatChip {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Products ── */
.products {
  padding: 2rem 5%;
  background: var(--light);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 1420px; margin: 0 auto;
}
.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 0;
  border: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  text-align: center;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0; transform: translateY(40px);
  animation: none;
  position: relative;
  display: flex; flex-direction: column;
}
.card-btns {
  display: flex; gap: 0.5rem; padding: 0 1rem 1rem;
  margin-top: auto;
}
.card-btn-call, .card-btn-wa {
  flex: 1; padding: 0.40rem 0.4rem;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  text-decoration: none; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-btn-call {
  background: linear-gradient(135deg, var(--primary), #F59E0B);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217,119,6,0.35);
}
.card-btn-call:hover { transform: translateY(-2px); box-shadow: 0 7px 18px rgba(217,119,6,0.5); }
.card-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.card-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 7px 18px rgba(37,211,102,0.45); }
.product-card.visible {
  animation: fadeInUp 0.55s ease forwards;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(217,119,6,0.25);
}

/* ── Image wrapper for zoom effect ── */
.product-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%); */
  pointer-events: none;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.08);
}

/* ── Tag badge on image ── */
.product-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border-radius: 50px;
  padding: 0.25rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(217,119,6,0.45);
  z-index: 2;
}

/* ── Text area ── */
.product-info {
  padding: 1rem 1.2rem 0.6rem;
  border-top: 3px solid #f59e0b;
  background: linear-gradient(to bottom, rgba(245,158,11,0.05), transparent);
}
.product-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.card-btns a{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
}
.product-name-guj {
  font-family: 'Noto Sans Gujarati', sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* ── Emoji icon cards (no image) ── */
.product-icon {
  font-size: 3.2rem;
  display: block;
  padding: 1.6rem 0 0.4rem;
  animation: wiggle 4s ease-in-out infinite;
}
.product-card .product-info .product-tag {
  position: static;
  display: inline-block;
  margin-top: 0.75rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border-radius: 50px;
  padding: 0.25rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(217,119,6,0.35);
}

@keyframes wiggle {
  0%,90%,100% { transform: rotate(0deg); }
  92% { transform: rotate(-8deg); }
  96% { transform: rotate(8deg); }
}

/* ── About ── */
.about {
  padding: 2rem 5%;
  background: linear-gradient(135deg, #3F2A1D 0%, #5C3D26 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D97706' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 640px) { .about-inner { grid-template-columns: 1fr; text-align: center; } }

.about-badge {
  display: inline-block;
  background: rgba(217,119,6,0.25); color: var(--primary);
  border: 1px solid rgba(217,119,6,0.4);
  border-radius: 50px; padding: 0.3rem 0.9rem;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem;
}
.about h2 { font-size: clamp(1.7rem, 3.5vw, 1.8rem); font-weight: 800; margin-bottom: 1rem; }
.about h2 span { color: var(--primary); }
.about p { line-height: 1.9; color: rgba(255,255,255,0.85); margin-bottom: 1rem; font-size: 0.97rem; }
.about-guj {
  font-family: 'Noto Sans Gujarati', sans-serif;
  font-size: 1rem; color: rgba(255,255,255,0.7);
}
.about-inner p:last-child {
    margin-bottom: 0;
}
.highlight-name {
  background: linear-gradient(135deg, rgba(217,119,6,0.22), rgba(245,158,11,0.18));
  color: #F59E0B;
  font-weight: 700;
  padding: 0.05em 0.45em;
  border-radius: 6px;
  border-bottom: 2px solid rgba(245,158,11,0.5);
}

.about-stats {
  display: flex; flex-direction: column; gap: 1.4rem;
}
.stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(217,119,6,0.25);
  border-radius: 16px; padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background 0.3s;
}
.stat-box:hover { background: rgba(217,119,6,0.12); }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.stat-label strong { display: block; color: #fff; font-size: 1rem; }

/* ── Features ── */
.features { padding: 2rem 5%; background: var(--bg); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: var(--card-bg);
  border-radius: 18px; padding: 2rem 1.5rem; text-align: center;
  border: 1px solid rgba(217,119,6,0.1);
  box-shadow: 0 3px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(217,119,6,0.16); }
.feature-icon { font-size: 2.5rem; margin-bottom: 0.9rem; display: block; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.87rem; color: #7A5C48; line-height: 1.7; }

/* ── Contact ── */
.contact { padding: 2rem 5%; background: var(--light); text-align: center; }
.contact-box {
  max-width: 560px; margin: 0 auto;
  background: var(--card-bg);
  border-radius: 24px; padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(217,119,6,0.12);
  border: 1px solid rgba(217,119,6,0.15);
}
.contact-box p { color: #6B4C36; font-size: 0.97rem; margin-bottom: 1.5rem; line-height: 1.8; }
.contact-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-link {
  background: linear-gradient(135deg, var(--primary), #F59E0B);
  color: #fff; text-decoration: none;
  padding: 0.75rem 1.8rem; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(217,119,6,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.contact-link:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(217,119,6,0.5); }

/* ── Footer ── */
footer {
  background: #2C1A0E;
  color: rgba(255,255,255,0.65);
  text-align: center; padding: 1.8rem 5%;
  font-size: 0.85rem; line-height: 2;
}
footer strong { color: var(--primary); }

/* ── Scroll animations ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
