/* ========== Root & Base ==========\ */
:root {
  --gold-start: #ffd700;
  --gold-end: #f5a623;
  --royal-red: #c8102e;
  --bg-cream: #f7f3e9;
  --charcoal: #1a1a1a;
  --text-body: #3a3a3a;
  --border-soft: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.09);
  --radius-card: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:#fffdf5;
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3.25rem 0;
  }
}

/* ========== Page Display System ==========\ */
.page {
  background-image: url('assets/contact-bg.png');
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
  min-height: 100vh;
  width: 100%;
}

.page.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: pageEnter 0.4s ease;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#pageContent {
  min-height: calc(100vh - 200px);
}

/* ========== Buttons ==========\ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-gold {
  background-image: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #3b2500;
  box-shadow: 0 14px 30px rgba(197, 129, 19, 0.45);
}

.btn-gold:hover {
  background-image: linear-gradient(135deg, #f5a623, #c8102e);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(155, 23, 41, 0.45);
}

.btn-ghost {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--royal-red);
  color: var(--royal-red);
  background: #fff;
}

.btn-outline-red {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn-outline-red:hover {
  background: #fff;
  color: var(--royal-red);
}

.btn-full {
  width: 100%;
}

/* ========== Header / Navbar ==========\ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 26, 26, 0.95);
  color: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-family: "Playfair Display", "Poppins", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.7rem;
  opacity: 0.7;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  transition: width var(--transition-fast);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 4.25rem 0 auto 0;
    background: rgba(26, 26, 26, 0.98);
    padding: 1.25rem 1.5rem 1.85rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-med), opacity var(--transition-med);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.9rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ========== Hero Section ==========\ */
.hero-section {
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: stretch;
}

.hero-content {
  padding-right: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(200, 16, 46, 0.16);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--royal-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title {
  margin: 1.4rem 0 0.7rem;
  font-family: "Playfair Display", "Poppins", serif;
  font-size: 2.8rem;
  line-height: 1.18;
  color: var(--charcoal);
}

.shine-text {
  display: inline-block;
  background-image: linear-gradient(120deg, #d39b23, #ffd700, #f7e9a8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.shine-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -70%;
  }
  100% {
    left: 130%;
  }
}

.hero-subtitle {
  max-width: 480px;
  font-size: 0.98rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1.3rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-bottom: 1.2rem;
}

.metric {
  min-width: 115px;
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.75;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.gold-ticker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
}

.ticker-label {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background-image: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #3b2500;
  font-weight: 600;
}

.ticker-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

/* Hero model + company info row — full width, each half = 50% of page */
.hero-model-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 360px;
}

.hero-model-half {
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.06), rgba(245, 166, 35, 0.03));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-right: none;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hero-model-half .model-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent);
}

.hero-info-half {
  display: flex;
  align-items: stretch;
}

.hero-info-half .company-info-card {
  width: 100%;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-left: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem;
}

.hero-info-half .company-info-card::before {
  border-radius: 0;
}

@media (max-width: 768px) {
  .hero-model-info-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-model-half {
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: none;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    min-height: 240px;
  }

  .hero-model-half .model-placeholder {
    min-height: 240px;
  }

  .hero-info-half .company-info-card {
    border-left: 1px solid rgba(255, 215, 0, 0.15);
    border-top: none;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    padding: 1.8rem 1.5rem;
  }
}

.model-section {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.lead-form-card,
.model-card {
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.model-card {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-card.large {
  min-height: 350px;
}

.lead-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  opacity: 0.7;
}

.lead-form-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  color: var(--charcoal);
}

.form-subtext {
  margin: 0 0 1.2rem;
  font-size: 0.88rem;
  opacity: 0.8;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-start);
  background: #fff;
}

.captcha-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem;
  align-items: flex-end;
  margin-bottom: 0.85rem;
}

.captcha-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(245, 166, 35, 0.05));
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "Courier New", monospace;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}

.captcha-input {
  display: flex;
  flex-direction: column;
}

.captcha-input label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.captcha-input input {
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
}

.form-note {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  opacity: 0.7;
  line-height: 1.4;
}

.form-message {
  margin-top: 0.8rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(244, 67, 54, 0.1);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.model-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.model-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.9rem;
  text-align: center;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.03), transparent);
}

.company-info-card {
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(245, 166, 35, 0.04));
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.company-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: linear-gradient(90deg, var(--gold-start), var(--gold-end));
}

.company-info-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
}

.company-info-card p {
  margin: 0.6rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}

.company-info-card p:first-of-type {
  margin-top: 0;
}

.highlight-gold {
  color: inherit;
  font-weight: 600;
  background-image: linear-gradient(120deg, #d39b23, #ffd700, #f7e9a8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-side {
    grid-template-rows: auto auto;
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* ========== Section Headers ==========\ */
.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  margin: 0.8rem 0 0.6rem;
  font-family: "Playfair Display", "Poppins", serif;
  font-size: 2rem;
  color: var(--charcoal);
}

.section-header p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ========== Gold Rate Section ==========\ */
.gold-rate-section {
  background: #ffffff;
}

.gold-rate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.gold-rate-widget {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-card);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.gold-rate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gold-rate-header span {
  font-weight: 600;
  color: var(--charcoal);
}

.last-updated {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 400;
}

.gold-rate-table {
  width: 100%;
  border-collapse: collapse;
}

.gold-rate-table thead {
  background: rgba(255, 215, 0, 0.05);
}

.gold-rate-table th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.gold-rate-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 0.9rem;
}

.gold-rate-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.02);
}

.gold-rate-table .rate {
  font-weight: 600;
  color: var(--royal-red);
}

/* ========== Old Gold Price Section ==========\ */
.old-gold-section {
  background-image: url('assets/old-gold-price-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.old-gold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.old-gold-widget {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-card);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.old-gold-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.old-gold-info p {
  margin: 0.5rem 0;
}

.old-gold-benefits {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), rgba(245, 166, 35, 0.04));
  border-radius: var(--radius-card);
  padding: 1.8rem;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.old-gold-benefits h3 {
  margin: 0 0 1.2rem;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #3b2500;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: bold;
}

.benefit-text {
  line-height: 1.5;
}

@media (max-width: 900px) {
  .old-gold-grid {
    grid-template-columns: 1fr;
  }

  .gold-rate-table {
    font-size: 0.85rem;
  }

  .gold-rate-table th,
  .gold-rate-table td {
    padding: 0.7rem 0.8rem;
  }
}

/* ========== Services Section ==========\ */
.services-section {
  background-image: url('assets/service.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.service-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
  -webkit-mask-image: linear-gradient(180deg, black, transparent);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  border-color: transparent;
  background: rgba(255, 255, 255, 0.98);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========== Testing Section ==========\ */
.testing-section {
  background: #ffffff;
}

.testing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.testing-content {
  order: 2;
}

.testing-illustration {
  border-radius: 20px;
  background: conic-gradient(from 140deg, #fdf7e7, #f4d48f, #e9a93a, #f4d48f, #fdf7e7);
  padding: 1px;
  order: 1;
}

.testing-illustration span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background: radial-gradient(circle at top left, #ffffff 0, #f9f2e4 60%, #f0e0c5 100%);
  min-height: 220px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
}

.testing-content h2 {
  margin: 0.8rem 0 0.6rem;
  font-family: "Playfair Display", "Poppins", serif;
  font-size: 1.6rem;
  color: var(--charcoal);
}

.testing-content p {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.content-list li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.content-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-start);
  font-weight: bold;
}

@media (max-width: 900px) {
  .testing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testing-content {
    order: 1;
  }

  .testing-illustration {
    order: 2;
  }
}

/* ========== How It Works Section ==========\ */
.how-it-works-section {
  background: linear-gradient(
    135deg,
    #E6C17A 0%,
    #F5E6C8 50%,
    #FFF7E6 100%
  );
  background-size: cover;
  background-position: center;
}


.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.how-it-works-image {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.step-card {
  text-align: left;
  padding: 1.5rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: transform var(--transition-med), box-shadow var(--transition-med), background var(--transition-med);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.98);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 999px;
  background-image: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #3b2500;
  font-size: 1.4rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--charcoal);
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .how-it-works-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .step-card {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .how-it-works-grid {
    gap: 1.5rem;
  }

  .step-card {
    padding: 1.2rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .step-card h3 {
    font-size: 0.95rem;
  }

  .step-card p {
    font-size: 0.85rem;
  }
}

/* ========== Reviews / Slider ==========\ */
.reviews-section {
  background-image: url('assets/reviews-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.reviews-slider {
  margin-top: 2.1rem;
  border-radius: var(--radius-card);
  background: radial-gradient(circle at top, #fffdf8 0, #f4ebdd 50%, #f0e0c9 100%);
  padding: 1.5rem 1.5rem 1.7rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding-right: 2rem;
}

.review-text {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.review-rating {
  color: #e1a800;
}

.review-controls {
  position: absolute;
  inset: 50% 0 auto 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.review-prev,
.review-next {
  pointer-events: auto;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  border: none;
  background: #f0e0c9(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.review-prev:hover,
.review-next:hover {
  background: #f0e0c9;
  transform: translateY(-1px);
}

/* ========== Location ==========\ */
.location-section {
  background: #fcf6ed;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: stretch;
}

.location-info h2 {
  margin: 0.8rem 0 0.6rem;
  font-family: "Playfair Display", "Poppins", serif;
  font-size: 1.6rem;
  color: var(--charcoal);
}

.location-info p {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
}

.location-map iframe {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========== FAQ ==========\ */
.faq-section {
  background: #ffffff;
}

.faq-accordion {
  max-width: 780px;
  margin: 2rem auto 0;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
}

.faq-toggle {
  font-size: 1.1rem;
  margin-left: 0.6rem;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  padding: 0 1rem;
  font-size: 0.86rem;
  transition: height var(--transition-med), padding-bottom var(--transition-med);
}

.faq-item.open .faq-answer {
  padding-bottom: 0.75rem;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* ========== Contact ==========\ */
.contact-section {
  
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-content h2 {
  margin: 0.8rem 0 0.6rem;
  font-family: "Playfair Display", "Poppins", serif;
  font-size: 1.6rem;
  color: var(--charcoal);
}

.contact-content p {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
}

.contact-form-card {
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.5rem 1.6rem;
}

.contact-form .form-group {
  margin-bottom: 0.8rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========== Footer ==========\ */
.site-footer {
  background: #151515;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 1.8rem;
}

.footer-brand .brand-logo {
  height: 32px;
}

.footer-column h3 {
  margin-top: 0;
  font-size: 0.98rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: inherit;
  opacity: 0.8;
  cursor: pointer;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  margin-right: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0 1.2rem;
  font-size: 0.78rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== Floating Contact Buttons ==========\ */
.floating-contact {
  position: fixed;
  right: 1.4rem;
  bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 60;
}

.floating-btn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  opacity: 0.96;
}

.floating-btn .icon {
  font-size: 1.3rem;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 1;
}

.phone-btn {
  background-image: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
}

.whatsapp-btn {
  background-image: linear-gradient(135deg, #0bbf4a, #048c37);
  color: #fff;
}

@media (max-width: 640px) {
  .floating-contact {
    right: 0.9rem;
    bottom: 1.1rem;
  }

  .floating-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .floating-btn .icon {
    font-size: 1.1rem;
  }
}

/* ========== Home Gold Rate Section ==========\ */
.home-gold-rate-section {
  background: radial-gradient(circle at top left, #fffdf5 0, var(--bg-cream) 55%, #f1e6cf 100%);
  scroll-margin-top: 5rem;
}

/* Check Gold Rate smooth scroll */
.check-gold-rate-btn {
  scroll-behavior: smooth;
}

/* ========== How It Works – Two Column Layout ==========\ */
.hiw-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hiw-steps .step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.hiw-steps .step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.11);
}

.hiw-steps .step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.step-text h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  color: var(--charcoal);
  font-weight: 600;
}

.step-text p {
  margin: 0;
  font-size: 0.87rem;
  opacity: 0.8;
  line-height: 1.55;
}

/* Model image placeholder (How It Works) */
.hiw-model-col {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.hiw-model-placeholder {
  width: 100%;
  min-height: 380px;
  border-radius: var(--radius-card);
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.08), rgba(245, 166, 35, 0.04));
  border: 2px dashed rgba(255, 215, 0, 0.4);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 2rem;
}

.hiw-model-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.hiw-model-label {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hiw-two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .hiw-model-col {
    order: -1; /* Image appears above steps on mobile */
  }

  .hiw-model-placeholder {
    min-height: 220px;
  }
}

/* ========== Scroll Reveal Animations ==========\ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive Tweaks ==========\ */
@media (max-width: 768px) {
  .nav-container {
    height: 4rem;
  }

  .hero-section {
    padding-top: 3.4rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .captcha-row {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .captcha-row {
    grid-template-columns: 90px 1fr;
    gap: 0.5rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .main-nav ul {
    gap: 0.6rem;
  }

  .main-nav a {
    font-size: 0.85rem;
  }
}


/* ===== Lead Form Success State ===== */
.hidden {
  display: none !important;
}

.lead-form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lead-form-success .success-icon {
  font-size: 3rem;
  line-height: 1;
}

.lead-form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #b8960c;
  margin: 0;
}

.lead-form-success p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Gold Announcement Ticker Bar ===== */
.gold-announcement-bar {
  width: 100%;
  background: #C8102E;
  color: #fff;
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
  position: relative;
  z-index: 1100;
  border-bottom: 1px solid rgba(255,215,0,0.25);
}

.ticker-label-badge {
  flex-shrink: 0;
  background: #a00c23;
  color: #FFD700;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-right: 2px solid rgba(255,215,0,0.4);
  text-transform: uppercase;
}

.ticker-track-wrapper {
  flex: 1;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.ticker-scroll-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
  animation: tickerScroll 35s linear infinite;
  will-change: transform;
}

.ticker-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  padding: 0 18px;
  white-space: nowrap;
}

.ticker-item strong {
  color: #FFD700;
  font-weight: 700;
}

.ticker-highlight {
  color: #FFD700 !important;
  font-weight: 600;
}

.ticker-highlight strong {
  color: #fff !important;
}

.ticker-dot {
  color: rgba(255,215,0,0.6);
  font-size: 0.5rem;
  padding: 0 2px;
  flex-shrink: 0;
}

.ticker-spacer {
  display: inline-block;
  width: 60px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .gold-announcement-bar {
    height: 32px;
  }
  .ticker-label-badge {
    font-size: 0.6rem;
    padding: 0 8px;
  }
  .ticker-item {
    font-size: 0.72rem;
    padding: 0 12px;
  }
  .ticker-scroll-track {
    animation-duration: 25s;
  }
}
