/* ========== 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: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.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);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-gold:hover {
  background-image: linear-gradient(135deg, #f5a623, #c8102e);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(197, 129, 19, 0.55);
}

.btn-gold:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-whatsapp {
  background-image: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-whatsapp:hover {
  background-image: linear-gradient(135deg, #20ba5a, #0e7569);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:active {
  transform: translateY(-1px) scale(0.98);
}

.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);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-ghost:hover {
  border-color: var(--royal-red);
  color: var(--royal-red);
  background: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.15);
}

.btn-ghost:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline-red {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline-red:hover {
  background: #fff;
  color: var(--royal-red);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-outline-red:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-whatsapp-nav {
  border: 1px solid #25d366;
  color: #fff;
  background: #25d366;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-whatsapp-nav:hover {
  background: #22c35e;
  border-color: #22c35e;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
}

.btn-whatsapp-nav:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-call-nav {
  border: 1px solid #ffd700;
  color: #ffd700;
  background: transparent;
  padding: 0.4rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-call-nav:hover {
  background: linear-gradient(135deg, #ffd700, #f5a623);
  border-color: #ffd700;
  color: #1a1a1a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
}

.btn-call-nav:active {
  transform: translateY(-1px) scale(0.98);
}

.nav-call-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}

.nav-call-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-call-sub {
  font-size: 0.68rem;
  opacity: 0.85;
  font-weight: 500;
}

.nav-call-icon {
  flex-shrink: 0;
}

.btn-premium-whatsapp {
  background-image: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  padding: 0.9rem 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-pill);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: left;
}

.btn-premium-whatsapp:hover {
  background-image: linear-gradient(135deg, #20ba5a, #0e7569);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

.btn-premium-whatsapp:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-premium-whatsapp .cta-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.btn-premium-whatsapp .cta-primary-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-premium-whatsapp .cta-secondary-text {
  font-size: 0.72rem;
  opacity: 0.95;
  font-weight: 500;
  margin-top: 1px;
}

.btn-premium-whatsapp svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-full {
  width: 100%;
}

/* ========== Header / Navbar ==========\ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #c8102e 0%, #a00d25 30%, #600816 65%, #1a1a1a 100%);
  color: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(255, 215, 0, 0.6), rgba(245, 166, 35, 0.3), rgba(255, 215, 0, 0.6)) 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 2px 10px rgba(255, 215, 0, 0.03);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-left: 1rem;
}

.brand-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  transition: all var(--transition-med);
}

@media (max-width: 768px) {
  .brand-logo {
    width: 140px;
  }
}

.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-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  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: 5.25rem 0 auto 0;
    background: linear-gradient(180deg, #c8102e 0%, #600816 70%, #1a1a1a 100%);
    padding: 1.25rem 1.5rem 1.85rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-med), opacity var(--transition-med);
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, rgba(255, 215, 0, 0.6), rgba(245, 166, 35, 0.3), rgba(255, 215, 0, 0.6)) 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.9rem;
  }

  .nav-actions {
    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-content .eyebrow {
  margin-top: 1.25rem;
}

.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 {
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.035);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold-start);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.lead-form-card h2 {
  margin: 0 0 0.4rem;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.form-subtext {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.4;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label,
.captcha-input label {
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea,
.captcha-input input {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  background: #fdfdfb;
  color: var(--charcoal);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover,
.captcha-input input:hover {
  border-color: rgba(0, 0, 0, 0.24);
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.captcha-input input:focus {
  outline: none;
  border-color: var(--gold-end);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 5 3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.captcha-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: flex-end;
}

.captcha-display {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 8px;
  border: 1px dashed rgba(245, 166, 35, 0.4);
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.015), rgba(0, 0, 0, 0.015) 2px, transparent 2px, transparent 10px), linear-gradient(135deg, rgba(255, 215, 0, 0.06), rgba(245, 166, 35, 0.06)), #fdfcf9;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.18em;
  color: #b77c15;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(0, 0, 0, 0.05);
  user-select: none;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.captcha-display::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.05) 50%);
  background-size: 100% 4px;
  pointer-events: none;
}

.captcha-input {
  display: flex;
  flex-direction: column;
}

.lead-form button[type="submit"] {
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  margin-top: 0.5rem;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.25);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lead-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.4);
}

.lead-form button[type="submit"]:active {
  transform: translateY(-0.5px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.form-note {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  color: #666;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.form-note::before {
  content: "🔒";
  font-size: 0.8rem;
  opacity: 0.8;
}

.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);
}

.model-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.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: 2rem;
  margin-top: 3rem;
}

.service-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.18);
  padding: 2.2rem 1.8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 245, 0.98));
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(197, 129, 19, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(197, 129, 19, 0.12);
  border-color: rgba(255, 215, 0, 0.5);
}

.service-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(200, 16, 46, 0.06);
  color: var(--royal-red);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(200, 16, 46, 0.1);
}

.service-icon-container {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(245, 166, 35, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-red);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.service-card-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-end);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.8rem 0;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 1.8rem 0;
}

.service-card-action {
  margin-top: auto;
}

.btn-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: var(--royal-red);
  border: 1px solid rgba(200, 16, 46, 0.2);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-card-cta:hover {
  background: var(--royal-red);
  color: #fff;
  border-color: var(--royal-red);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

.btn-card-cta:active {
  transform: translateY(-1px) scale(0.97);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }
}

@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: 3rem;
  border-radius: var(--radius-card);
  background: radial-gradient(circle at top, #fffdf8 0, #f4ebdd 50%, #f0e0c9 100%);
  padding: 3.5rem 5rem;
  box-shadow: var(--shadow-soft), 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 215, 0, 0.18);
}

.review-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.review-card-inner {
  text-align: center;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.quote-icon {
  color: rgba(200, 16, 46, 0.15);
  margin-bottom: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card-inner .review-rating {
  color: #ffb100;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.review-card-inner .review-text {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.review-author .review-name {
  font-family: "Playfair Display", "Poppins", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.review-author .review-verify {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--royal-red);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.review-controls {
  position: absolute;
  top: 50%;
  left: 1rem;
  right: 1rem;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.review-prev,
.review-next {
  pointer-events: auto;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-prev:hover,
.review-next:hover {
  background: var(--royal-red);
  color: #fff;
  border-color: var(--royal-red);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
  transform: translateY(-3px) scale(1.05);
}

.review-prev:active,
.review-next:active {
  transform: translateY(-1px) scale(0.95);
}

@media (max-width: 768px) {
  .reviews-slider {
    padding: 2.5rem 2rem 3rem;
    margin-top: 2rem;
  }
  
  .review-card {
    padding: 0;
  }
  
  .review-card-inner .review-text {
    font-size: 1rem;
  }
  
  .review-controls {
    position: static;
    transform: none;
    margin-top: 1.5rem;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* ========== 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: radial-gradient(circle at top right, #fffdf0 0%, #fbf8eb 50%, #f5eedc 100%);
  position: relative;
}

.faq-accordion {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(197, 129, 19, 0.02), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(197, 129, 19, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
  border-color: rgba(245, 166, 35, 0.5);
}

.faq-item.open {
  border-color: var(--gold-end);
  box-shadow: 0 16px 35px rgba(197, 129, 19, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  background: #fffdf9;
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.8rem;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  font-family: "Poppins", "Inter", sans-serif;
  transition: color 0.3s ease;
}

.faq-question:focus {
  outline: none;
}

.faq-item.open .faq-question {
  color: #b77c15;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(197, 129, 19, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: var(--gold-end);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Horizontal line */
.faq-toggle::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-toggle::after {
  width: 2px;
  height: 14px;
}

/* Active morph to '-' and highlight active icon using GoldBee accent color */
.faq-item.open .faq-toggle {
  background-color: var(--gold-end);
}

.faq-item.open .faq-toggle::before {
  background-color: #ffffff;
  transform: rotate(180deg);
}

.faq-item.open .faq-toggle::after {
  background-color: #ffffff;
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  padding: 0 1.8rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.open .faq-answer {
  padding-bottom: 1.35rem;
  opacity: 1;
}

/* ========== 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: 56px;
}

.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 {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform var(--transition-fast), filter var(--transition-fast), background var(--transition-fast);
}

.footer-social a.social-fb {
  background: #1877f2;
  color: #fff;
}

.footer-social a.social-fb:hover {
  background: #145dbf;
  transform: translateY(-2px);
}

.footer-social a.social-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.footer-social a.social-ig:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.footer-social a.social-in {
  background: #0a66c2;
  color: #fff;
}

.footer-social a.social-in:hover {
  background: #08529c;
  transform: translateY(-2px);
}

.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.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
}

.floating-btn {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 8px 30px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-med);
  opacity: 0.96;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
}

.floating-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.floating-btn .btn-text {
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.02em;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  opacity: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 12px 40px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.phone-btn {
  background-image: linear-gradient(135deg, #ff9800, #f57c00);
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3), 0 8px 30px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
  background-image: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 8px 30px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

@media (max-width: 640px) {
  .floating-contact {
    right: 1rem;
    bottom: 1rem;
    gap: 0.5rem;
  }

  .floating-btn {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }

  .floating-btn .icon {
    font-size: 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;
  }
}

/* ========== Active link highlighting ========== */
.main-nav a.active {
  color: var(--gold-start) !important;
}

.main-nav a.active::after {
  width: 100% !important;
}

/* ========== Thank You Page Styles ========== */
.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 6rem);
  padding: 2rem 0;
  width: 100%;
  background-image: url('assets/contact-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.thank-you-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.thank-you-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 550px;
  width: 100%;
  border: 1px solid rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.thank-you-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: linear-gradient(90deg, var(--gold-start), var(--gold-end));
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(245, 166, 35, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  color: var(--gold-end);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.checkmark-svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold-end);
  stroke-width: 2.5;
}

.thank-you-title {
  font-family: "Playfair Display", "Poppins", serif;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin: 0 0 1rem;
}

.thank-you-message {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .thank-you-card {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
  }

  .thank-you-title {
    font-size: 1.8rem;
  }

  .thank-you-icon {
    width: 60px;
    height: 60px;
  }

  .checkmark-svg {
    width: 30px;
    height: 30px;
  }
}

/* ========== Sell Gold Page Styles ========== */
.sell-gold-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 280px);
  padding: 4rem 0;
}

.sell-gold-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}