/* ============================================================
   GOLDIVA CRAFT — Master Stylesheet
   Premium Jewelry & Gold Handicrafts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #9A7A2E;
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark2:       #1A1A1A;
  --dark3:       #242424;
  --grey:        #888888;
  --grey-light:  #CCCCCC;
  --white:       #FFFFFF;
  --cream:       #FAF6EE;
  --red:         #E05252;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.25);
  --shadow-md:   0 6px 24px rgba(0,0,0,.35);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.45);
  --glow-gold:   0 0 24px rgba(201,168,76,.4);

  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --nav-h:       80px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { color: var(--grey-light); font-size: .95rem; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.section-heading {
  margin-bottom: 16px;
}
.section-sub {
  max-width: 560px;
  margin: 0 auto 52px;
  color: var(--grey);
  text-align: center;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.55);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-dark {
  background: var(--dark2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.1);
}
.btn-dark:hover { background: var(--dark3); transform: translateY(-2px); }

/* ── Navbar ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,.95);
  border-bottom-color: rgba(201,168,76,.3);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid var(--gold);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text { display: flex; flex-direction: column; }
.logo-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.logo-sub {
  font-size: .65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--grey-light);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10,10,10,.98);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  animation: slideDown .3s ease;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--grey-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(201,168,76,.08); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('images/hero.jpg');
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.88) 0%,
    rgba(10,8,2,.7) 50%,
    rgba(0,0,0,.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 700px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInUp .8s ease .1s both;
}
.hero-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp .8s ease .2s both;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeInUp .8s ease .3s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .8s ease .4s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  animation: fadeInUp .8s ease .5s both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: .75rem; color: var(--grey); letter-spacing: 1px; margin-top: 4px; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
}

/* ── Categories ──────────────────────────────────────────── */
#categories { background: var(--dark); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.08), transparent);
  opacity: 0;
  transition: var(--transition);
}
.cat-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.cat-card h4 { color: var(--white); margin-bottom: 6px; }
.cat-card p { font-size: .8rem; color: var(--grey); }

/* ── Products ────────────────────────────────────────────── */
#products { background: var(--dark2); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,.5); border-color: rgba(201,168,76,.3); }
.product-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.product-img img { transition: transform .6s ease; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: .5px;
}
.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; }
.action-btn {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.action-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.product-info { padding: 20px; }
.product-info h4 { color: var(--white); margin-bottom: 6px; }
.product-info p { font-size: .8rem; margin-bottom: 12px; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}
.product-price .old-price {
  font-size: .8rem;
  color: var(--grey);
  text-decoration: line-through;
  margin-right: 6px;
  font-family: var(--font-sans);
  font-weight: 400;
}
.product-btn {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--black);
  font-size: .8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.product-btn:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(201,168,76,.4); }

/* ── About Preview ───────────────────────────────────────── */
#about-preview { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold-dark));
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-img-wrap img { border-radius: var(--radius-lg); }
.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text { font-size: .7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.about-content .section-tag { margin-top: 0; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 36px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text h4 { font-size: .9rem; color: var(--white); font-family: var(--font-sans); margin-bottom: 4px; }
.feature-text p { font-size: .78rem; color: var(--grey); }

/* ── Banner ──────────────────────────────────────────────── */
.deals-banner {
  position: relative;
  background: var(--dark2);
  overflow: hidden;
  padding: 80px 0;
}
.deals-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.deals-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.deals-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
}
.timer-block {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  min-width: 80px;
}
.timer-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.timer-label { font-size: .65rem; color: var(--grey); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* ── Testimonials ────────────────────────────────────────── */
#testimonials { background: var(--dark2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(201,168,76,.12);
  position: absolute;
  top: 10px;
  right: 24px;
  line-height: 1;
}
.testi-card:hover { border-color: rgba(201,168,76,.25); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 16px; letter-spacing: 3px; }
.testi-text { color: var(--grey-light); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.4);
  flex-shrink: 0;
}
.testi-name { font-size: .9rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: .75rem; color: var(--gold); }

/* ── Services ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.service-card:hover { border-color: rgba(201,168,76,.25); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: .875rem; color: var(--grey); }

/* ── Enquiry / Contact Form ───────────────────────────────── */
.enquiry-section { background: var(--dark2); }
.form-wrap {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg);
  padding: 56px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.form-title {
  text-align: center;
  margin-bottom: 40px;
}
.form-title h2 { margin-bottom: 10px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--grey-light);
  text-transform: uppercase;
}
.form-group label .required { color: var(--gold); }
.form-control {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-size: .9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-control::placeholder { color: rgba(255,255,255,.3); }
.form-control:focus { border-color: var(--gold); background: rgba(201,168,76,.05); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.form-control.error { border-color: var(--red); }
select.form-control option { background: var(--dark2); color: var(--white); }
textarea.form-control { resize: vertical; min-height: 130px; }
.error-msg { font-size: .75rem; color: var(--red); display: none; }
.form-group.has-error .error-msg { display: block; }
.form-group.has-error .form-control { border-color: var(--red); }
.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.consent-box label {
  font-size: .82rem;
  color: var(--grey-light);
  cursor: pointer;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.consent-box a { color: var(--gold); text-decoration: underline; }
.form-submit { text-align: center; margin-top: 32px; }
.form-submit .btn { padding: 16px 48px; font-size: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  animation: fadeInUp .5s ease;
}
.form-success .success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h3 { color: var(--gold); margin-bottom: 12px; }

/* ── Why Us ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.why-item { text-align: center; }
.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-item:hover .why-icon { background: var(--gold); transform: scale(1.1); }
.why-item h4 { color: var(--white); margin-bottom: 8px; }
.why-item p { font-size: .82rem; color: var(--grey); }

/* ── Inner Page Hero ─────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--dark2);
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,.15);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 70%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--grey); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--grey);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: var(--grey); }

/* ── Contact Page Layout ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.info-card:hover { border-color: rgba(201,168,76,.3); }
.info-icon { font-size: 1.6rem; margin-bottom: 12px; }
.info-card h4 { color: var(--white); margin-bottom: 6px; font-size: .95rem; }
.info-card p, .info-card a { font-size: .875rem; color: var(--grey); transition: color .25s; }
.info-card a:hover { color: var(--gold); }

/* ── Policy Pages ────────────────────────────────────────── */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px;
}
.policy-content h2 { color: var(--white); margin: 36px 0 14px; font-size: 1.5rem; }
.policy-content h3 { color: var(--gold); margin: 28px 0 12px; font-size: 1.1rem; }
.policy-content p { color: var(--grey-light); margin-bottom: 14px; }
.policy-content ul { list-style: disc; padding-left: 24px; color: var(--grey-light); margin-bottom: 16px; }
.policy-content ul li { margin-bottom: 8px; font-size: .9rem; }
.policy-last { color: var(--grey) !important; font-size: .82rem !important; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 48px;
}
.footer-brand .logo-brand { font-size: 1.5rem; }
.footer-brand p { font-size: .85rem; color: var(--grey); margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--grey);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }
.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1.5px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: var(--grey); transition: color .25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item p { font-size: .82rem; color: var(--grey); transition: color .25s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  gap: 16px;
}
.footer-bottom p { font-size: .8rem; color: var(--grey); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .78rem; color: var(--grey); transition: color .25s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Divider ─────────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  margin: 16px auto 24px;
  border-radius: 2px;
}

/* ── Floating WhatsApp ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { height: 380px; }
  .about-badge { right: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.5rem; }
  .form-wrap { padding: 32px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .deals-timer { gap: 12px; }
  .timer-block { padding: 12px 16px; min-width: 64px; }
  .timer-num { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .deals-timer { flex-wrap: wrap; }
  .form-wrap { padding: 24px 16px; }
  .testi-grid { grid-template-columns: 1fr; }
}
