/* ==========================================================================
   STEFANO SIMONE JEWELERS & ART GALLERY - HYBRID RED & GOLD BRAND SYSTEM
   ========================================================================== */

:root {
  /* Hybrid Palette: Light Sandstone Gallery Base */
  --bg-sandstone: #FAF8F5;
  --bg-sandstone-alt: #F4EFE6;
  --card-light: #FFFFFF;
  --card-light-border: rgba(0, 0, 0, 0.08);
  --card-light-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  
  /* Signature Storefront Red (Awnings & Door at 1261 Paterson Plank Rd) */
  --brand-red: #C8102E;
  --brand-red-hover: #A60D25;
  --brand-red-light: rgba(200, 16, 46, 0.08);
  --brand-red-border: rgba(200, 16, 46, 0.25);
  
  /* Fine Jewelry & Precious Metals Champagne Gold */
  --gold-metallic: #D4AF37;
  --gold-dark: #B89228;
  --gold-light: #F7F1E1;
  --gold-glow: rgba(212, 175, 55, 0.2);

  /* Cash for Gold Dark Trading Theme Section */
  --bg-dark-trading: #141416;
  --card-dark-trading: #1D1E22;
  --card-dark-trading-alt: #25262B;
  --card-dark-border: rgba(255, 255, 255, 0.12);

  /* Typography Colors */
  --text-dark: #1A1A1A;
  --text-dark-muted: #5A5E66;
  --text-white: #FFFFFF;
  --text-gray: #A0A0A0;
  --text-muted: #888888;
  
  /* Typography Families */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Design Tokens */
  --radius-card: 24px;
  --radius-pill: 100px;
  --radius-sm: 12px;

  /* Animation Easing */
  --ease-out-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-sandstone);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SCROLL STORYTELLING REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-smooth), transform 0.7s var(--ease-out-smooth);
  will-change: opacity, transform;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* PHASE 2: LUXURY AMBIENT SPOTLIGHT GLOW */
.luxury-card {
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(550px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.luxury-card:hover::before {
  opacity: 1;
}

/* PHASE 2: AMBIENT GOLD DUST PARTICLES */
.ambient-dust-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.dust-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-metallic);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(1px);
  box-shadow: 0 0 10px var(--gold-metallic);
  animation: floatDust 12s ease-in-out infinite alternate;
}

.dust-particle.p1 { top: 15%; left: 8%; animation-duration: 14s; }
.dust-particle.p2 { top: 65%; right: 12%; animation-duration: 10s; animation-delay: 2s; }
.dust-particle.p3 { top: 38%; left: 82%; animation-duration: 16s; animation-delay: 1s; }

@keyframes floatDust {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-25px) translateX(18px) scale(1.4); opacity: 0.5; }
  100% { transform: translateY(12px) translateX(-12px) scale(0.9); opacity: 0.2; }
}

/* UTILITY CLASSES */
.container-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 2rem 0;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-margin-top: 100px;
}

.section-sandstone-alt {
  background-color: var(--bg-sandstone-alt);
}

/* Section-specific backgrounds for visual rhythm alternation */
.category-section {
  background-color: var(--bg-sandstone);
}

.process-section {
  background-color: var(--bg-sandstone-alt);
}

.trust-section {
  background-color: var(--bg-sandstone);
}

.trust-section .content-card {
  padding: 2.25rem 2.5rem;
}

.trust-section .section-heading {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.trust-section .section-lead {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.65rem;
}

.craftsman-bio {
  margin-bottom: 1.25rem;
}

.craftsman-bio-text,
.craftsman-bio p,
.story-lead,
.story-sub {
  color: var(--text-dark-muted);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.craftsman-bio-text:last-child,
.craftsman-bio p:last-child,
.story-sub:last-child {
  margin-bottom: 0;
}

.trust-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  margin-top: 1.1rem;
}

.about-visual-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-badge {
  position: absolute;
  bottom: -12px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
  transition: transform 0.3s ease;
}

.about-badge:hover {
  transform: translateY(-2px);
}

.about-badge .gold-icon {
  font-size: 1.25rem;
  color: var(--gold-metallic);
}

.about-badge strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.about-badge span {
  font-size: 0.72rem;
  color: var(--text-dark-muted);
  font-weight: 500;
}

.master-jeweler-img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
}

.reviews-section {
  background-color: var(--bg-sandstone-alt);
}

.faq-section {
  background-color: var(--bg-sandstone);
  min-height: auto;
  padding: 2rem 0;
}

.faq-section .section-header-center {
  margin-bottom: 1.25rem;
}

.faq-section .section-heading {
  font-size: 1.65rem;
  margin-bottom: 0.2rem;
}

.faq-section .section-lead {
  font-size: 0.9rem;
}

.location-section {
  background-color: var(--bg-sandstone-alt);
  min-height: auto;
  padding: 2rem 0;
}

.location-section .content-card {
  padding: 1.5rem 2rem;
}

.location-section .section-heading {
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.location-section .section-lead {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.location-section .contact-details-list {
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.location-section .contact-detail-item {
  font-size: 0.85rem;
}

.location-section .mt-1-5 {
  margin-top: 0.75rem !important;
}

.contact-section {
  background-color: var(--bg-sandstone);
  min-height: auto;
  padding: 2rem 0;
}

/* VISIT US — HORIZONTAL SHOWROOM & VIP APPOINTMENT SECTION */
.visit-us-section {
  background-color: var(--bg-sandstone-alt);
  min-height: auto;
  padding: 3rem 0 4rem;
}


/* Appointment CTA Banner */
.visit-appointment-banner {
  background: linear-gradient(135deg, #1A1B1F 0%, #121315 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-card);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  margin-top: 1.5rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.appointment-banner-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(200, 16, 46, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.appointment-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.appointment-banner-text {
  flex: 1;
}

.appointment-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-metallic);
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.appointment-banner-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.appointment-banner-desc {
  font-size: 0.92rem;
  color: #C0C0C6;
  line-height: 1.5;
  max-width: 640px;
}

.appointment-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-pill-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.25s var(--ease-out-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-pill-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold-metallic);
  color: var(--text-white);
  transform: translateY(-2px);
}

.mr-2 {
  margin-right: 0.5rem;
}

/* Serving Area Pills Bar */
.visit-area-pills-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.visit-area-pill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

/* Compact Showroom Map Container */
.visit-map-container {
  background: var(--card-light);
  border: 1px solid var(--card-light-border);
  border-radius: var(--radius-card);
  padding: 0.85rem 1rem 1rem;
  box-shadow: var(--card-light-shadow);
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}

.visit-map-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.2rem 0.25rem 0.6rem;
  border-bottom: 1px solid var(--card-light-border);
  margin-bottom: 0.75rem;
}

.map-top-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-dark);
}

.map-top-title i {
  color: var(--brand-red);
  font-size: 0.95rem;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-red);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.map-directions-btn:hover {
  color: var(--brand-red-hover);
  transform: translateY(-1px);
}

.map-responsive-frame-wide {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: calc(var(--radius-card) - 10px);
  overflow: hidden;
}

.map-responsive-frame-wide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Appointment Modal Styling */
.appointment-modal-content {
  background: linear-gradient(135deg, #1C1D21 0%, #141416 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-card);
  max-width: 580px;
  width: 95%;
  max-height: 95vh;
  overflow-y: auto;
  padding: 2.25rem;
  color: var(--text-white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
  scrollbar-width: none; /* Firefox */
}

.appointment-modal-content::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.appointment-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.appointment-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-metallic);
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.appointment-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-gray);
  width: auto;
  height: auto;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.appointment-close-btn:hover {
  color: var(--text-white);
}

.appointment-modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.appointment-modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.appointment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.appointment-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.appointment-form .form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #D4D4D8;
}

.appointment-form .form-input-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.appointment-form .form-input-dark:focus {
  outline: none;
  border-color: var(--gold-metallic);
  background: rgba(255, 255, 255, 0.1);
}

.appointment-form select.form-input-dark option {
  background: #1D1E22;
  color: #FFFFFF;
}

.appointment-form input[type="date"].form-input-dark {
  color-scheme: dark;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.time-slot-chip {
  display: block;
  cursor: pointer;
  user-select: none;
}

.time-slot-chip input[type="radio"] {
  display: none;
}

.time-slot-chip span {
  display: block;
  text-align: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm, 6px);
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.time-slot-chip span small {
  font-size: 0.65rem;
  opacity: 0.7;
}

.time-slot-chip input[type="radio"]:checked + span {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
  font-weight: 600;
}

.time-slot-chip:hover span {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.time-slot-chip.vip-chip span {
  border-color: rgba(212, 175, 55, 0.4);
}

.appointment-form-footer {
  margin-top: 1.25rem;
}

.appointment-security-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.btn-step-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: none;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 0.75rem;
  padding: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.btn-step-action:hover {
  color: var(--brand-red-hover);
  transform: translateX(3px);
}

/* Responsiveness for Visit Us & Modals */
@media (max-width: 960px) {
  .appointment-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .appointment-banner-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }
  .appointment-banner-actions .btn-pill-primary,
  .appointment-banner-actions .btn-pill-secondary {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .appointment-form .form-row {
    grid-template-columns: 1fr;
  }
  .appointment-modal-content {
    padding: 1.5rem 1.25rem;
  }
  .visit-map-top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-responsive-frame-wide {
    height: 180px;
  }
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1-5 { margin-bottom: 1rem !important; }
.mt-1-5 { margin-top: 1rem !important; }
.font-sans { font-family: var(--font-sans); }

/* Language Switch */
.lang-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.5rem;
}
@media (max-width: 960px) {
  .lang-switch-wrapper {
    margin-right: 1rem;
  }
}
.lang-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  transition: color 0.2s;
}
.lang-lbl.active {
  color: var(--gold-dark);
}
.lang-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  margin-bottom: 0;
}
.lang-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.lang-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.1);
  transition: .4s;
  border-radius: 20px;
}
.lang-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 1px;
  bottom: 1px;
  background-color: var(--text-dark-muted);
  transition: .4s;
  border-radius: 50%;
}
.lang-switch input:checked + .lang-slider {
  background-color: var(--gold-glow);
  border-color: rgba(212, 175, 55, 0.4);
}
.lang-switch input:checked + .lang-slider:before {
  transform: translateX(16px);
  background-color: var(--gold-dark);
}

/* Hide Google Translate top frame if it appears */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
  display: none !important;
}
body {
  top: 0px !important;
}
#goog-gt-tt {
  display: none !important;
  top: 0px !important; 
}
.goog-tooltip skiptranslate {
  display: none !important;
  top: 0px !important; 
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-heading {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 0.98rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-header-center .section-lead {
  margin: 0 auto;
  max-width: 800px;
}

.content-card {
  background: var(--card-light);
  border: 1px solid var(--card-light-border);
  border-radius: var(--radius-card);
  padding: 1.75rem 2.25rem;
  box-shadow: var(--card-light-shadow);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
}

/* BUTTONS */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: var(--text-white);
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.25s var(--ease-out-smooth), background 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(200, 16, 46, 0.25);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.magnetic-btn {
  will-change: transform;
}

.btn-pill-primary:hover {
  background: var(--brand-red-hover);
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.45), 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-pill-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-pill-primary:hover .arrow-circle {
  transform: translateX(3px);
}

.btn-link-secondary {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  /* Icon always appears after text – no special left/right overrides needed */
}

.btn-link-secondary i {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.btn-link-secondary:hover {
  color: var(--brand-red);
  transform: translateY(-1px);
}

.btn-link-secondary:hover i {
  transform: translateX(2px);
}

.btn-block {
  width: 100%;
}

.btn-cta-group {
  margin-top: 2rem;
}

/* FLOATING HEADER PILL */
.floating-header-wrapper {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  transition: transform 0.3s ease;
}

.floating-header {
  width: 100%;
  max-width: 1140px;
  background: rgba(250, 248, 245, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.floating-header.scrolled {
  background: rgba(250, 248, 245, 0.85);
  border-color: rgba(200, 16, 46, 0.2);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

.nav-brand-img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  display: block;
  transition: transform 0.25s ease;
}

.nav-brand:hover .nav-brand-img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  position: relative;
  padding: 0.2rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-red);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--brand-red);
  border-radius: 50%;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand-red);
  color: var(--text-white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.nav-cta-btn:hover {
  background: var(--brand-red-hover);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.2rem;
}

/* HERO SECTION */
.hero-section {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: var(--card-light);
  border: 1px solid var(--card-light-border);
  border-radius: var(--radius-card);
  padding: 3rem 2.75rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.location-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  background: var(--brand-red-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  border: 1px solid var(--brand-red-border);
}

.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-light-border);
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-check {
  color: var(--brand-red);
}

.stars-gold {
  color: var(--gold-metallic);
}

.hero-visual-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 3px solid #FFFFFF;
  background: #FFFFFF;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  max-height: 480px;
  border-radius: 17px;
  transition: transform 0.5s var(--ease-out-smooth);
}

.hero-visual-frame:hover .hero-img {
  transform: scale(1.02);
}

.payout-badge-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(20, 20, 22, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-glow);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.badge-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-metallic);
}

.badge-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* 2-COLUMN SECTION LAYOUTS & GRIDS */
.section-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.img-frame-rounded {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-img-frame,
.boutique-img-frame {
  border: 4px solid #FFFFFF;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border-radius: 20px;
}

.gallery-img,
.boutique-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s var(--ease-out-smooth);
}

.gallery-img-frame:hover .gallery-img,
.boutique-img-frame:hover .boutique-img {
  transform: scale(1.03);
}

.section-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s var(--ease-out-smooth);
}

.master-jeweler-img {
  object-position: center 25%;
}

.img-frame-rounded:hover .section-img {
  transform: scale(1.02);
}

.categories-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.category-list-item {
  border-top: 1px solid var(--card-light-border);
  padding-top: 1rem;
  transition: transform 0.25s ease;
}

.category-list-item:hover {
  transform: translateY(-2px);
}

.cat-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 0.3rem;
}

.cat-item-desc {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.45;
}

/* 3 SIMPLE STEPS */
.steps-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--card-light);
  border: 1px solid var(--card-light-border);
  border-radius: var(--radius-card);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: transform 0.3s var(--ease-out-smooth), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--card-light-shadow);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-red-border);
  box-shadow: 0 14px 38px rgba(200, 16, 46, 0.1);
}

.step-card-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-red-light);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease-spring);
}

.step-card:hover .step-card-icon {
  transform: scale(1.12);
  background: var(--brand-red);
  color: #FFFFFF;
}

.step-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-card-text {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

/* REVIEWS & TESTIMONIALS */
.stars-gold-lg {
  color: var(--gold-metallic);
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  max-width: 960px;
  margin: 0 auto;
}

.review-card {
  background: var(--card-light);
  border: 1px solid var(--card-light-border);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--card-light-shadow);
  transition: transform 0.3s var(--ease-out-smooth), box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.quote-mark {
  font-size: 2.2rem;
  color: var(--brand-red);
  line-height: 0.8;
  margin-bottom: 0.25rem;
}

.review-body {
  font-size: 0.84rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.reviewer-footer {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}

.reviewer-meta {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* MINIMALIST FOOTER (DARK TRADING FINISH) */
.minimal-footer {
  background-color: var(--bg-dark-trading);
  color: var(--text-gray);
  padding: 2rem 0 1.5rem;
  font-size: 0.88rem;
  border-top: 1px solid var(--card-dark-border);
}

.footer-main-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

/* Column 1: Store Info */
.footer-brand-info {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  margin: 0 0 0.25rem 0;
}

.footer-address-line,
.footer-phone-hours {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact-link {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--gold-metallic);
}

.footer-gold-icon {
  color: var(--gold-metallic);
  font-size: 0.85rem;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0.15rem;
}

/* Column 2: Compact Mini Map Widget */
.footer-compact-map-card {
  flex: 0 1 260px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-compact-map-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 16px rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.footer-compact-map-frame {
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #141518;
}

.footer-compact-map-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-map-overlay-btn {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-metallic);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-map-overlay-btn:hover {
  background: var(--gold-metallic);
  color: #000;
  transform: translateY(-2px);
}

/* Right Section: Structured Navigation */
.footer-nav-block {
  flex: 0 1 320px;
  min-width: 250px;
}

.footer-nav-heading {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-metallic);
  margin: 0 0 1.15rem 0;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
}

.footer-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-item i {
  font-size: 0.74rem;
  color: rgba(212, 175, 55, 0.65);
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-nav-item:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-nav-item:hover i {
  color: var(--gold-metallic);
}

.footer-bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 860px) {
  .footer-main-layout {
    flex-direction: column;
    gap: 2.25rem;
  }
  .footer-location-block {
    max-width: 100%;
    width: 100%;
  }
  .footer-horizontal-map-card {
    max-width: 100%;
  }
  .footer-nav-block {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .footer-horizontal-map-frame {
    height: 115px;
  }
}

/* INTERACTIVE FAQ ACCORDION - COMPACT 2-COLUMN GRID */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-list {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

.faq-item {
  background: var(--card-light);
  border: 1px solid var(--card-light-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  border-color: rgba(184, 134, 11, 0.35);
}

.faq-item.active {
  border-color: var(--brand-red-border);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.1);
}

.faq-question {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 0.75rem;
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-red-light);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.35s var(--ease-spring), background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--brand-red);
  color: var(--text-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.15rem;
  color: var(--text-dark-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ol, .faq-answer ul {
  margin: 0.35rem 0 0.5rem 1.25rem;
  padding: 0;
}

.faq-answer li {
  margin-bottom: 0.25rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.15rem 1.15rem 1.15rem;
}

/* PHOTO DROPZONE UI */
.photo-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.photo-dropzone:hover, .photo-dropzone.dragover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.07);
}

.dropzone-icon {
  font-size: 1.1rem;
  color: #10b981;
  margin-bottom: 0.1rem;
}

.dropzone-text {
  font-size: 0.78rem;
  color: var(--text-gray);
}

.hidden-file-input {
  display: none !important;
}

.photo-preview-container {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.preview-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--gold-metallic);
}

/* LOCATION & MAP SECTION */
.map-card-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.map-responsive-frame {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-light-border);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.map-responsive-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.area-pill {
  font-size: 0.75rem;
  background: var(--brand-red-light);
  border: 1px solid var(--brand-red-border);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--brand-red);
  font-weight: 700;
  cursor: default;
  user-select: none;
}

/* Compact inline pill strip for Visit Us section */
.visit-area-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.visit-area-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-dark-muted);
  margin-right: 0.1rem;
  white-space: nowrap;
}

.area-pill-sm {
  font-size: 0.68rem;
  padding: 0.18rem 0.55rem;
}

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.25rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--card-dark-trading);
  border: 1px solid var(--gold-metallic);
  border-radius: var(--radius-card);
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  color: var(--text-white);
  transform: scale(0.92);
  transition: transform 0.3s var(--ease-out-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-icon-success {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-metallic);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.modal-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.modal-close-btn {
  background: var(--brand-red);
  color: var(--text-white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--brand-red-hover);
  transform: translateY(-1px);
}

/* TERMS & CONDITIONS MODAL — FLAT CLEAN DOCUMENT STYLE */
.terms-modal-overlay {
  z-index: 2500;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
}

.terms-modal-content {
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border-radius: 12px;
  color: #1e293b;
}

.terms-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  flex-shrink: 0;
}

.terms-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.terms-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.terms-modal-subtitle {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

.terms-modal-subtitle a {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.terms-close-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 1rem;
}

.terms-close-btn:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.terms-modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  color: #334155;
  font-size: 0.90rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 auto;
  background: #ffffff;
}

.terms-modal-body::-webkit-scrollbar {
  width: 6px;
}
.terms-modal-body::-webkit-scrollbar-track {
  background: #f8fafc;
}
.terms-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.terms-modal-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.terms-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f8fafc;
  border-left: 3px solid #64748b;
  border-top: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
}

.terms-callout i {
  color: #64748b;
  margin-top: 0.15rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.terms-section {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #f1f5f9;
}

.terms-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.terms-section h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}

.terms-sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.terms-section p {
  margin-bottom: 0.55rem;
  color: #475569;
  font-size: 0.88rem;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-section a {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.terms-section a:hover {
  color: #475569;
}

.terms-phone-link {
  font-weight: 700;
  color: #0f172a !important;
}

.terms-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.75rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  gap: 1rem;
  flex-shrink: 0;
}

.terms-print-btn {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.terms-print-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #94a3b8;
}

.terms-modal-footer .btn-pill-primary {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #0f172a;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
}

.terms-modal-footer .btn-pill-primary:hover {
  background: #334155;
  border-color: #334155;
}

.footer-terms-link {
  color: var(--text-gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-terms-link:hover {
  color: var(--gold-metallic);
}

@media (max-width: 640px) {
  .terms-modal-overlay {
    padding: 0.5rem;
  }
  .terms-modal-content {
    max-height: 94vh;
  }
  .terms-modal-header {
    padding: 1rem 1.15rem;
  }
  .terms-modal-title {
    font-size: 1.2rem;
  }
  .terms-modal-body {
    padding: 1.15rem;
  }
  .terms-modal-footer {
    padding: 0.85rem 1.15rem;
    flex-direction: column-reverse;
  }
  .terms-modal-footer button {
    width: 100%;
    justify-content: center;
  }
}

/* MOBILE FLOATING ACTION BAR */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--card-light-border);
  padding: 0.65rem 1rem;
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
}

.mobile-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.mobile-action-item i {
  font-size: 1.15rem;
  color: var(--brand-red);
}

/* REDUCED MOTION PREFERENCE */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pulse-dot, .dust-particle {
    animation: none !important;
  }
  .luxury-card::before {
    display: none !important;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .hero-headline {
    font-size: 2.3rem;
  }

  .section-grid-2col {
    grid-template-columns: 1fr;
  }

  .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  .steps-cards-grid, .reviews-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-split-card {
    grid-template-columns: 1fr;
  }

  .contact-info-side, .contact-form-side {
    padding: 2rem 1.5rem;
  }

  /* Fix border-radius when contact card stacks vertically */
  .contact-info-side {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
  }

  .contact-form-side {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .categories-list-grid, .trust-bullets-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    border: 1px solid var(--card-light-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-action-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 3.5rem;
  }
  
  .calc-grid, .map-card-grid {
    grid-template-columns: 1fr;
  }
  
  .karat-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   PHASE 3: SPEED OPTIMIZATION & CREATIVE MINI-INTERACTIONS
   ========================================================================== */

/* 1. Hardware Acceleration & Containment */
/* NOTE: luxury-card excluded — contain:paint clips the ::before spotlight glow */
.gold-ticker-wrapper, .calc-card, .floating-header {
  contain: layout style paint;
}

.luxury-card {
  will-change: transform;
}

/* Image sizing: hero-img uses explicit height; section-img uses explicit height.
   Do NOT apply a blanket aspect-ratio override that conflicts with those rules. */
.hero-img, .boutique-img, .section-img {
  contain: layout paint;
}

/* 2. 3D Perspective Tilt on Storefront & Visual Frames */
.hero-visual-frame, .boutique-img-frame {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* 3. Metallic Sheen Pass on CTA Buttons */
.btn-pill-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(30deg);
  animation: metallicSheen 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes metallicSheen {
  0%, 75%, 100% { left: -60%; opacity: 0; }
  80% { opacity: 1; }
  90% { left: 140%; opacity: 0.85; }
}

/* 4. Stat Counter Grid */
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.stat-counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.25rem 0.5rem;
}

.stat-counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(212, 175, 55, 0.22);
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand-red);
  line-height: 1;
  font-family: var(--font-sans);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
    padding: 1.25rem 1rem;
    margin-top: 1.5rem;
  }

  .stat-counter-item:not(:last-child)::after {
    display: none;
  }

  .stat-counter-item:nth-child(1)::after,
  .stat-counter-item:nth-child(3)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(212, 175, 55, 0.22);
    display: block;
  }
}

@media (max-width: 480px) {
  .stats-counter-grid {
    padding: 1.1rem 0.75rem;
  }
  .stat-number {
    font-size: 1.7rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
}

/* 5. Copyable Triggers & Toast Notifications */
.copyable-trigger {
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.copyable-trigger:hover {
  color: var(--brand-red);
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(20, 20, 22, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #FFFFFF;
  border: 1px solid var(--gold-metallic);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease-spring), opacity 0.3s ease;
  white-space: nowrap;
}

.toast-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   MOBILE FRIENDLINESS FIXES
   Ensures 48px minimum tap targets, 14px minimum font sizes,
   and properly responsive layouts for all mobile devices.
   ========================================================================== */

/* Hide nav CTA on mobile — the mobile action bar handles this */
@media (max-width: 768px) {
  .nav-cta-btn {
    display: none;
  }
}

/* Global mobile tap target and font size fixes */
@media (max-width: 600px) {
  /* Minimum tap target: 48px height on all interactive elements */
  .btn-pill-primary,
  .btn-pill-secondary,
  .btn-step-action,
  .faq-question,
  .mobile-action-item,
  .footer-nav-item,
  .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Ensure FAQ question buttons have adequate tap size */
  .faq-question {
    padding: 1rem 1.15rem;
  }

  /* Floor all small fonts to 14px minimum */
  .section-tag,
  .location-pill,
  .step-card-text,
  .cat-item-desc,
  .hero-trust-row .trust-item,
  .craftsman-bio-text,
  .reviewer-meta,
  .footer-address-line,
  .footer-phone-hours,
  .footer-bottom-row p,
  .footer-nav-item,
  .badge-sub,
  .stat-label,
  .appointment-security-note,
  .form-label,
  .mobile-action-item span,
  .area-pill,
  .visit-area-label {
    font-size: 0.875rem; /* 14px */
  }

  /* Scale up review body text */
  .review-body {
    font-size: 0.9rem;
  }

  /* Ensure hero subtext is readable */
  .hero-subtext {
    font-size: 1rem;
  }

  /* Scale up hero headline for mobile readability */
  .hero-headline {
    font-size: 1.9rem;
  }

  /* Section headings on small screens */
  .section-heading {
    font-size: 1.5rem;
  }

  /* Ensure form inputs are large enough to tap */
  .form-input-dark {
    min-height: 48px;
    font-size: 1rem;
  }

  /* Ensure mobile action bar items are large enough */
  .mobile-action-item {
    min-width: 64px;
    padding: 0.4rem 0.5rem;
  }

  .mobile-action-item i {
    font-size: 1.3rem;
  }

  /* Footer nav items need tap-friendly spacing */
  .footer-nav-item {
    padding: 0.5rem 0.75rem;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .hero-headline {
    font-size: 1.65rem;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .btn-pill-primary,
  .btn-pill-secondary {
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
  }
}
