/* ============================================
   SHREE GOLD PALACE — COMPLETE STYLESHEET
   Brand: Forest Green + Warm Gold + Ivory White
   Aesthetic: Trustworthy, Family-Friendly, Modern
   ============================================ */

:root {
  --green: #2E7D52;
  --green-light: #4CAF50;
  --green-pale: #E8F5E9;
  --green-deep: #1B5E20;
  --gold: #C8922A;
  --gold-light: #E8B84B;
  --gold-pale: #FFF8E7;
  --ivory: #FAFAF7;
  --ivory-dark: #F5F0E8;
  --white: #FFFFFF;
  --text-dark: #1A2E1A;
  --text-body: #3D5A3E;
  --text-muted: #6B8F6C;
  --border: rgba(46,125,82,0.15);
  --border-gold: rgba(200,146,42,0.2);
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* TOPBAR */
.topbar {
  background: var(--green-deep);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  justify-content: center;
}
.tb-divider { opacity: 0.3; }
.tb-offer { color: var(--gold-light); font-weight: 600; }

/* NAV */
.nav {
  background: var(--white);
  border-bottom: 2px solid var(--green-pale);
  position: sticky;
  top: 33px;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(46,125,82,0.08);
  transition: all 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(46,125,82,0.15); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.sgp-logo-text { display: flex; flex-direction: column; }
.sgp-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}
.sgp-tag {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--green); }
.nav-cta-sgp {
  background: var(--green) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; }

/* HERO */
.hero {
  background: var(--white);
  min-height: calc(100vh - 101px);
  display: flex;
  align-items: center;
}
.hero-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-badge {
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ht-1 { display: block; color: var(--text-dark); }
.ht-2 { display: block; color: var(--green); }
.ht-3 { display: block; color: var(--gold); font-style: italic; }
.hero-body { color: var(--text-body); font-size: 1rem; margin-bottom: 32px; max-width: 440px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(46,125,82,0.3);
}
.cta-main:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(46,125,82,0.35); }
.cta-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--green);
  transition: all 0.3s;
}
.cta-secondary:hover { background: var(--green-pale); }
.cta-outline-sgp {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--green);
  transition: all 0.3s;
}
.cta-outline-sgp:hover { background: var(--green-pale); }

.hero-numbers { display: flex; align-items: center; gap: 24px; }
.hero-num { text-align: center; }
.hn-val { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green); }
.hn-lbl { display: block; font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.hn-sep { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual-wrap { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.visual-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}
.ring-1 { width: 380px; height: 380px; animation: spin-ring 20s linear infinite; }
.ring-2 { width: 280px; height: 280px; border-color: var(--border-gold); animation: spin-ring 15s linear infinite reverse; }
@keyframes spin-ring { to { transform: rotate(360deg); } }
.hero-jewelry-svg { position: relative; z-index: 2; width: 300px; animation: float-up 5s ease-in-out infinite; }
@keyframes float-up { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }

.today-rate-card {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border-gold);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(200,146,42,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}
.tr-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; }
.tr-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1.2; }
.tr-value small { font-size: 0.9rem; }
.tr-sub { font-size: 10px; color: var(--green); font-weight: 600; }

/* TRUST STRIP */
.trust-strip {
  background: var(--green);
  padding: 0;
  overflow: hidden;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  flex: 1;
}
.ti-icon { font-size: 1.4rem; }
.trust-item strong { display: block; color: white; font-size: 0.85rem; font-weight: 600; line-height: 1.2; }
.trust-item span { color: rgba(255,255,255,0.7); font-size: 0.75rem; }
.trust-divider { width: 1px; background: rgba(255,255,255,0.2); margin: 12px 16px; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* SECTION HEADERS */
.sgp-section-header { text-align: center; margin-bottom: 48px; }
.sgp-eyebrow {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.sgp-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.sgp-title span { color: var(--green); }
.sgp-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.sgp-link:hover { color: var(--green-deep); }

/* ABOUT */
.about-sgp { padding: 100px 0; background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content .sgp-eyebrow { margin-bottom: 12px; }
.about-content .sgp-title { text-align: left; margin-bottom: 20px; }
.about-content p { color: var(--text-body); margin-bottom: 16px; line-height: 1.75; }
.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.af-item { display: flex; align-items: flex-start; gap: 14px; }
.af-icon { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.af-text strong { display: block; color: var(--text-dark); font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.af-text p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

.about-visual-sgp { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.av-main { width: 100%; max-width: 280px; }
.av-badges { display: flex; gap: 12px; }
.av-badge {
  background: white;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  flex: 1;
}
.av-badge span { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--green); }
.av-badge small { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.av-badge-green { border-color: var(--green); }
.av-badge-green span { color: var(--green-deep); }

/* PRODUCTS */
.products { padding: 100px 0; background: var(--white); }
.product-tabs { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.ptab {
  padding: 9px 22px;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.ptab:hover { border-color: var(--green); color: var(--green); }
.ptab.active { background: var(--green); border-color: var(--green); color: white; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card-wide { grid-column: span 2; }
.product-card {
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover { border-color: var(--green); box-shadow: 0 12px 40px rgba(46,125,82,0.1); transform: translateY(-4px); }
.pc-visual {
  padding: 32px;
  display: flex;
  justify-content: center;
  background: var(--white);
}
.pc-visual svg { max-width: 180px; width: 100%; }
.bridal-v-wide svg { max-width: 280px; }
.gold-v { background: linear-gradient(135deg, #FFF8E7, white); }
.diamond-v { background: linear-gradient(135deg, #E8F5E9, white); }
.silver-v { background: linear-gradient(135deg, #F5F5F5, white); }
.bridal-v-wide { background: linear-gradient(135deg, #FFF8E7, #E8F5E9); }

.pc-info { padding: 18px 22px 24px; }
.pc-cat {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.pc-cat-diamond { background: rgba(46,125,82,0.1); color: var(--green-deep); }
.pc-cat-silver { background: #F5F5F5; color: #616161; }
.pc-info h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-dark); margin-bottom: 8px; font-weight: 700; }
.pc-info p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; }
.pc-price-row { display: flex; align-items: center; justify-content: space-between; }
.pc-price { font-family: var(--font-display); color: var(--gold); font-size: 1rem; font-weight: 700; }
.pc-cta {
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}
.pc-cta:hover { background: var(--green-deep); }

/* OFFERS */
.offers { padding: 100px 0; background: var(--ivory-dark); }
.offers-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
.offer-card {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border-radius: 16px;
  padding: 36px;
  color: white;
}
.offer-card-main h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin: 12px 0 16px; line-height: 1.2; }
.offer-card-main p { opacity: 0.88; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.offer-card-main p strong { color: var(--gold-light); }
.oc-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.oc-details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.oc-details span { font-size: 0.85rem; opacity: 0.9; }
.offer-card-main .cta-main { background: var(--gold); color: var(--text-dark); }

.offers-small { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.offer-card-small {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: all 0.3s;
}
.offer-card-small:hover { border-color: var(--green); transform: translateY(-3px); }
.ocs-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.offer-card-small h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.offer-card-small p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* TESTIMONIALS */
.testimonials-sgp { padding: 100px 0; background: var(--white); }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard {
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
}
.tcard:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(46,125,82,0.08); }
.tcard-featured {
  background: var(--green-pale);
  border-color: var(--green);
}
.tc-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.tcard p { color: var(--text-body); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.88rem; color: var(--text-dark); font-weight: 600; }
.tc-author small { font-size: 0.75rem; color: var(--text-muted); }

/* CONTACT */
.contact-sgp { padding: 100px 0; background: var(--ivory); }
.contact-grid-sgp { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cg-left .sgp-eyebrow { display: block; margin-bottom: 12px; }
.cg-left .sgp-title { text-align: left; margin-bottom: 16px; }
.cg-left > p { color: var(--text-body); margin-bottom: 32px; }
.sgp-contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.sci-item { display: flex; gap: 14px; align-items: flex-start; }
.sci-item > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.sci-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.sci-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.sgp-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.map-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  padding: 0 0 20px;
}
.map-card svg { display: block; }

/* FOOTER */
.footer-sgp {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.fg-brand .sgp-name { color: var(--gold-light); }
.fg-brand .sgp-tag { color: rgba(255,255,255,0.5); }
.fg-brand > p { font-size: 0.88rem; margin-top: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); }
.fg-social { display: flex; gap: 12px; margin-top: 20px; }
.fs-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s;
}
.fs-link:hover { color: var(--gold-light); }
.fg-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.fg-col ul { list-style: none; }
.fg-col li { margin-bottom: 10px; }
.fg-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.fg-col a:hover { color: white; }
.footer-bottom-sgp {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-sgp p { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* WHATSAPP */
.wa-float-sgp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: all 0.3s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float-sgp:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)}
  50%{box-shadow:0 4px 30px rgba(37,211,102,0.6),0 0 0 8px rgba(37,211,102,0.1)}
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .topbar-inner { font-size: 11px; gap: 10px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-split { grid-template-columns: 1fr; padding: 40px 24px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual-sgp { order: -1; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card-wide { grid-column: span 2; }
  .offers-grid { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .contact-grid-sgp { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-inner { flex-wrap: wrap; justify-content: center; }
  .trust-divider { display: none; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: span 1; }
  .offers-small { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .hero-ctas, .sgp-ctas { flex-direction: column; }
  .cta-main, .cta-secondary, .cta-outline-sgp { text-align: center; justify-content: center; }
  .footer-bottom-sgp { flex-direction: column; }
}
