:root {
  --cream: #fdf6ec;
  --deep: #1a1a2e;
  --amber: #e8a820;
  --amber-light: #f5c842;
  --rust: #c0501a;
  --sage: #4a7c59;
  --card-bg: #ffffff;
  --text-muted: #6b6b6b;
  --border: #e8ddd0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: var(--deep);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-brand {
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  color: var(--amber);
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 700;
}

.nav-brand span {
  color: #fff;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amber);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(
    135deg,
    var(--deep) 0%,
    #16213e 60%,
    #0f3460 100%
  );
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(232, 168, 32, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(192, 80, 26, 0.1) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: 10%;
  pointer-events: none;
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 168, 32, 0.15);
  border: 1px solid rgba(232, 168, 32, 0.4);
  color: var(--amber-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
  position: relative;
}

.hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.btn-hero {
  background: linear-gradient(135deg, var(--amber), var(--rust));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 32, 0.4);
  color: #fff;
}

.btn-outline-hero {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  margin-left: 14px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-hero:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  color: var(--amber);
  font-weight: 900;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* floating circles */
.hero-visual {
  position: relative;
}

.circle-big {
  width: 380px;
  height: 380px;
  background: linear-gradient(
    135deg,
    rgba(232, 168, 32, 0.2),
    rgba(192, 80, 26, 0.1)
  );
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  animation: float 6s ease-in-out infinite;
}

.circle-inner {
  width: 250px;
  height: 250px;
  background: linear-gradient(
    135deg,
    rgba(232, 168, 32, 0.3),
    rgba(192, 80, 26, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(232, 168, 32, 0.12);
  color: var(--amber);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Jost", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep);
  margin-bottom: 14px;
  font-weight: 700;
}

.section-title span {
  color: var(--amber);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--rust));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── CATEGORIES STRIP ── */
.categories {
  background: var(--deep);
  padding: 20px 0;
  overflow: hidden;
}

.cat-strip {
  display: flex;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.cat-item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cat-dot {
  color: var(--amber);
  font-size: 1rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── PRODUCTS ── */
#products {
  padding: 100px 0;
}

.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 26, 46, 0.12);
}

.product-img-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-new {
  background: rgba(74, 124, 89, 0.12);
  color: var(--sage);
}

.badge-hot {
  background: rgba(192, 80, 26, 0.12);
  color: var(--rust);
}

.badge-top {
  background: rgba(232, 168, 32, 0.12);
  color: #b07d0a;
}

.product-body {
  padding: 20px;
  flex: 1;
}

.product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 6px;
}

.product-name {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  color: var(--deep);
  margin-bottom: 6px;
  font-weight: 600;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep);
}

.btn-enquire {
  background: linear-gradient(135deg, var(--amber), var(--rust));
  color: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-enquire:hover {
  transform: scale(1.05);
}

/* ── WHY US ── */
#why {
  padding: 80px 0;
  background: var(--deep);
}

#why .section-title {
  color: #fff;
}

#why .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

.why-card:hover {
  background: rgba(232, 168, 32, 0.06);
  border-color: rgba(232, 168, 32, 0.2);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(232, 168, 32, 0.2),
    rgba(192, 80, 26, 0.1)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.why-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ── CONTACT ── */
#contact {
  padding: 100px 0;
}

.contact-wrap {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(26, 26, 46, 0.08);
  border: 1px solid var(--border);
}

.contact-info {
  background: linear-gradient(145deg, var(--deep) 0%, #16213e 100%);
  padding: 56px 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 168, 32, 0.15) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.contact-info-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-info-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 44px;
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  background: rgba(232, 168, 32, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}

.info-value {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.gstin-box {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
}

.gstin-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.gstin-val {
  font-size: 0.9rem;
  color: var(--amber-light);
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-form {
  padding: 56px 44px;
}

.contact-form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--deep);
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label-custom {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--deep);
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
 font-family: "Jost", sans-serif;
  font-size: 0.92rem;
  color: var(--deep);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 168, 32, 0.1);
  background: #fff;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--amber), var(--rust));
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 32, 0.35);
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  padding: 40px 0;
  text-align: center;
}

.footer-brand {
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* product bg colors */
.bg-p1 {
  background: linear-gradient(135deg, #fff8e8, #fff0cc);
}

.bg-p2 {
  background: linear-gradient(135deg, #e8f5ec, #d4edda);
}

.bg-p3 {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}

.bg-p4 {
  background: linear-gradient(135deg, #fef0e8, #fddccc);
}

.bg-p5 {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.bg-p6 {
  background: linear-gradient(135deg, #fff1f5, #ffe4ec);
}

.bg-p7 {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.bg-p8 {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 24px;
  }

  .contact-info,
  .contact-form {
    padding: 36px 24px;
  }

  .circle-big {
    width: 280px;
    height: 280px;
  }

  .circle-inner {
    width: 180px;
    height: 180px;
    font-size: 3rem;
  }
}
