/* ============================================================
   Shree Shree Laxminarayan Jewellery — Main Stylesheet
   Theme: Deep Maroon + Rich Gold + Cream (Luxury Traditional)
   ============================================================ */

/* --- Variables --- */
:root {
  --maroon:      #7B1C2E;
  --maroon-dark: #56121F;
  --maroon-light:#9E2D43;
  --gold:        #C9960C;
  --gold-light:  #E8B84B;
  --gold-pale:   #F5E6B2;
  --cream:       #FDF8EF;
  --cream-dark:  #F0E6D0;
  --white:       #FFFFFF;
  --text-dark:   #2A1A0E;
  --text-mid:    #5A3E2B;
  --text-light:  #8B6F55;
  --shadow:      0 4px 24px rgba(123,28,46,0.12);
  --shadow-lg:   0 12px 48px rgba(123,28,46,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-sans:    'Nunito Sans', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-inner i { margin-right: 5px; color: var(--gold-light); }
.topbar-sep { opacity: 0.4; }
.topbar-right { margin-left: auto; display: flex; gap: 14px; }
.topbar-right a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: var(--transition);
}
.topbar-right a:hover { color: var(--gold-light); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(123,28,46,0.10);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(123,28,46,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo a { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(123,28,46,0.3);
  flex-shrink: 0;
}
.logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--maroon-dark);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
}

/* Navigation */
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  display: block;
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--maroon);
  background: var(--cream);
}
.main-nav ul li a i { font-size: 10px; margin-left: 4px; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 0;
  border-bottom: 1px solid var(--cream-dark);
}
.dropdown li:last-child a { border-bottom: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO / BANNER SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--maroon-dark);
  min-height: 500px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, #4A0E1A 100%);
}
.hero-slide.active { opacity: 1; position: relative; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,150,12,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hero-title span { color: var(--gold-light); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  font-style: italic;
}
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,150,12,0.4);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold-light);
  margin-left: 12px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dots span.active { background: var(--gold-light); width: 24px; border-radius: 4px; }

/* ============================================================
   RATES TICKER
   ============================================================ */
.rates-ticker {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-dark));
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: stretch;
}
.ticker-label {
  background: var(--gold);
  color: var(--maroon-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 12px 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ticker-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerMove 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  flex-shrink: 0;
}
.ticker-item .metal-name { color: var(--gold-light); font-weight: 600; }
.ticker-item .metal-rate { color: var(--white); }
.ticker-item .metal-sep { color: rgba(255,255,255,0.3); }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 70px 0; }
.section-alt { background: var(--cream-dark); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-badge::before,
.section-badge::after { content: '—  '; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 600;
  color: var(--maroon-dark);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-light);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   RATES SECTION
   ============================================================ */
.rates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.rates-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.rates-card-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.rates-gold .rates-card-header { background: linear-gradient(135deg, #7B1C2E, #9E2D43); }
.rates-silver .rates-card-header { background: linear-gradient(135deg, #3A3A3A, #606060); }
.rates-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold-light);
}
.rates-card-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.rates-card-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
}
.rates-table { width: 100%; border-collapse: collapse; }
.rates-table th, .rates-table td {
  padding: 13px 22px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 14px;
  border-bottom: 1px solid var(--cream-dark);
}
.rates-table th {
  background: var(--cream);
  font-weight: 600;
  color: var(--text-mid);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:hover td { background: var(--cream); }
.rate-value { font-weight: 700; color: var(--maroon); font-size: 16px; }
.rate-date { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-light); font-style: italic; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.cat-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--cream), var(--gold-pale));
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--maroon);
  transition: var(--transition);
}
.cat-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--gold-light);
}
.cat-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--cream);
}
.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--maroon-dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-info { padding: 18px 18px 20px; }
.product-cat {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
}
.product-meta span i { margin-right: 4px; color: var(--gold); }
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--maroon);
}
.product-price-note {
  font-size: 11px;
  color: var(--text-light);
  font-family: var(--font-sans);
  margin-top: 2px;
}
.product-enquire {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.product-enquire:hover {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold-pale);
  position: absolute;
  top: 16px;
  left: 20px;
}
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 14px; }
.testi-msg {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.testi-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--maroon-dark); }
.testi-city { font-size: 13px; color: var(--text-light); font-family: var(--font-sans); }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); }
.why-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--gold-light);
}
.why-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--maroon-dark);
  margin-bottom: 8px;
}
.why-desc { font-size: 14px; color: var(--text-light); font-family: var(--font-sans); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--maroon-dark);
  color: var(--white);
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}
.about-img-badge .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-img-badge .lbl { font-size: 12px; font-family: var(--font-sans); color: rgba(255,255,255,0.75); }
.about-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--maroon-dark);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.about-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-mid);
}
.about-feature i { color: var(--gold); font-size: 16px; flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--maroon-dark);
  margin-bottom: 4px;
}
.contact-info-text p {
  font-size: 14px;
  color: var(--text-mid);
  font-family: var(--font-sans);
  line-height: 1.6;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,150,12,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert { padding: 12px 18px; border-radius: var(--radius); font-family: var(--font-sans); font-size: 14px; margin-bottom: 16px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--maroon-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo i { color: var(--gold-light); font-size: 20px; }
.footer-tagline {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  font-family: var(--font-body);
  line-height: 1.6;
}
.footer-cert {
  font-size: 12px;
  color: var(--gold-light);
  font-family: var(--font-sans);
}
.footer-cert i { margin-right: 4px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,150,12,0.3);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a i { font-size: 10px; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover, .footer-social a.social-wa:hover { background: var(--gold); color: var(--maroon-dark); }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waPulse 2s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-style: italic; font-size: 16px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-4 { animation-delay: 0.4s; opacity: 0; }

/* Gold shimmer on titles */
.shimmer-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .rates-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 80px 20px 20px;
    flex-direction: column;
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li a { padding: 14px 10px; border-bottom: 1px solid var(--cream-dark); font-size: 16px; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border-top: none; padding-left: 16px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .hero-content { padding: 50px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
