/* ============================================
   FAGRAFIX PHOTOGRAPHY — GLOBAL DESIGN SYSTEM
   ============================================ */

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

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Colors */
  --color-primary: #c8a45a;
  --color-primary-light: #e8d5a3;
  --color-primary-dark: #a68940;
  --color-primary-rgb: 200, 164, 90;
  --color-secondary: #1a1a2e;
  --color-accent: #e8d5a3;

  /* Backgrounds */
  --bg-dark: #0f0f1a;
  --bg-dark-2: #16162a;
  --bg-dark-3: #1e1e36;
  --bg-light: #f8f6f0;
  --bg-light-2: #f0ede5;
  --bg-glass: rgba(26, 26, 46, 0.6);
  --bg-glass-light: rgba(255, 255, 255, 0.05);

  /* Variables for Theme Toggle overrides */
  --border-color: rgba(255, 255, 255, 0.08);
  --header-bg: rgba(15, 15, 26, 0.95);
  --bg-mobile-nav: rgba(15, 15, 26, 0.98);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-dark: #1a1a2e;
  --text-muted: #777;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 25px rgba(200, 164, 90, 0.25);
  --shadow-gold-lg: 0 8px 40px rgba(200, 164, 90, 0.35);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Header */
  --header-height: 80px;

  /* Z-index */
  --z-header: 1000;
  --z-overlay: 2000;
  --z-modal: 3000;
  --z-tooltip: 4000;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.text-gold { color: var(--color-primary); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-header .title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-full);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Header & Navigation ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-header);
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: var(--header-bg, rgba(15, 15, 26, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  transition: color var(--transition-fast);
}

.logo span {
  color: var(--color-primary);
}

.logo:hover {
  color: var(--color-primary);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list a {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-primary);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-sm);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
  z-index: calc(var(--z-header) + 10);
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  /*background: var(--text-primary);*/
  transition: all var(--transition-base);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Page Header (Inner pages) ---- */
.page-header {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 50%, var(--bg-dark-3) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(200, 164, 90, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.page-header .breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.page-header .breadcrumb a:hover {
  color: var(--color-primary);
}

.page-header .breadcrumb .separator {
  color: var(--color-primary);
  font-size: 0.7rem;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(200, 164, 90, 0.1);
}

.footer-main {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-2xl);
}

.footer-brand .logo {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-brand p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem !important;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-contact li i {
  color: var(--color-primary);
  margin-top: 4px;
  font-size: 0.9rem;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-md) 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Utility: Background patterns ---- */
.bg-pattern {
  position: relative;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200, 164, 90, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 164, 90, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.bg-alt {
  background-color: var(--bg-dark-2);
}

/* ---- Responsive Breakpoints ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --header-height: 70px;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-mobile-nav, rgba(15, 15, 26, 0.98));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: var(--z-header);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-list a {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .page-header {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  body {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .container {
    padding: 0 0.8rem;
  }
}

/* ---- LIGHT THEME OVERRIDES ---- */
body.light-theme {
  /* Warm, muted backgrounds — NOT pure white */
  --bg-dark: #fefdfb;
  --bg-dark-2: #fbf9f5;
  --bg-dark-3: #f6f3ec;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-light: rgba(26, 26, 46, 0.04);

  /* Text */
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5e;
  --text-muted: #7a7a8e;

  /* Borders — visible on light bg */
  --border-color: rgba(26, 26, 46, 0.12);

  /* Header & mobile nav stay dark for contrast */
  --header-bg: rgba(20, 20, 35, 0.95);
  --bg-mobile-nav: rgba(20, 20, 35, 0.98);

  /* Shadows — slightly stronger for card visibility */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(200, 164, 90, 0.18);
  --shadow-gold-lg: 0 8px 30px rgba(200, 164, 90, 0.28);
}

body.light-theme ::selection {
  background: rgba(200, 164, 90, 0.25);
  color: var(--text-primary);
}

/* ---- Light Theme: Cards & Glass Elements ---- */
body.light-theme .card,
body.light-theme .service-card,
body.light-theme .testimonial-card,
body.light-theme .pricing-card,
body.light-theme .contact-card,
body.light-theme .value-card,
body.light-theme .accordion-item,
body.light-theme .search-card,
body.light-theme .booking-item-card,
body.light-theme .tracker-detail-card,
body.light-theme .booking-form-section,
body.light-theme .summary-box,
body.light-theme .contact-form-card,
body.light-theme .confirmation-details,
body.light-theme .payment-method,
body.light-theme .auth-modal {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(26, 26, 46, 0.10);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Hover states for cards in light mode */
body.light-theme .card:hover,
body.light-theme .service-card:hover,
body.light-theme .pricing-card:hover,
body.light-theme .contact-card:hover,
body.light-theme .value-card:hover,
body.light-theme .booking-item-card:hover {
  border-color: rgba(200, 164, 90, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(200, 164, 90, 0.12);
}

/* ---- Light Theme: Borders & Dividers ---- */
body.light-theme .booking-form-section h3,
body.light-theme .summary-box h3 {
  border-bottom-color: rgba(26, 26, 46, 0.10);
}

body.light-theme .summary-row {
  border-bottom-color: rgba(26, 26, 46, 0.08);
}

body.light-theme .summary-row.total {
  border-top-color: rgba(200, 164, 90, 0.35);
}

body.light-theme .pricing-card .features-list li {
  border-bottom-color: rgba(26, 26, 46, 0.06);
}

body.light-theme .divider {
  background: rgba(26, 26, 46, 0.10);
}

body.light-theme .auth-modal-footer {
  border-top-color: rgba(26, 26, 46, 0.10);
}

body.light-theme .booking-item-header {
  border-bottom-color: rgba(26, 26, 46, 0.10);
}

/* ---- Light Theme: Form Controls ---- */
body.light-theme .form-control {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(26, 26, 46, 0.15);
}

body.light-theme .form-control:focus {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
}

body.light-theme select.form-control option {
  background: #ffffff;
  color: var(--text-primary);
}

/* ---- Light Theme: Buttons ---- */
body.light-theme .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(26, 26, 46, 0.12);
}

body.light-theme .btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--color-primary);
}

body.light-theme .filter-tab {
  border-color: rgba(26, 26, 46, 0.12);
}

/* ---- Light Theme: Page Header ---- */
body.light-theme .page-header {
  background: linear-gradient(135deg, #2a2a42 0%, #1a1a2e 50%, #2a2a42 100%);
}

body.light-theme .page-header h1,
body.light-theme .page-header p,
body.light-theme .page-header .breadcrumb,
body.light-theme .page-header .breadcrumb a {
  color: #ffffff;
}

body.light-theme .page-header .breadcrumb a {
  color: #b0b0b0;
}

body.light-theme .page-header p {
  color: #b0b0b0;
}

/* ---- Light Theme: Footer (keep dark for contrast) ---- */
body.light-theme .footer {
  background: #1a1a2e;
  border-top-color: rgba(200, 164, 90, 0.15);
}

body.light-theme .footer h4,
body.light-theme .footer .logo {
  color: #ffffff;
}

body.light-theme .footer p,
body.light-theme .footer a,
body.light-theme .footer-column ul li a,
body.light-theme .footer-contact li {
  color: #b0b0b0;
}

body.light-theme .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.06);
}

body.light-theme .footer-bottom p,
body.light-theme .footer-bottom-links a {
  color: #777;
}

/* ---- Light Theme: Nav links stay white on dark header ---- */
body.light-theme .nav-list a {
  color: white;
}

body.light-theme .nav-list a:hover,
body.light-theme .nav-list a.active {
  color: var(--color-primary);
}

/* ---- Light Theme: Mobile nav border items ---- */
@media (max-width: 768px) {
  body.light-theme .nav-list li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }
}

/* ---- Light Theme: Table row hover (was using white-tinted rgba, invisible on light bg) ---- */
body.light-theme .table tr:hover {
  background: rgba(26, 26, 46, 0.04) !important;
}

/* ---- Light Theme: Stepper circles (overrides inline #222 background) ---- */
body.light-theme .step-circle {
  background: #e8e6f0 !important;
  border-color: #d0cde0 !important;
  color: var(--text-muted) !important;
}

body.light-theme .step.active .step-circle {
  background: #ffffff !important;
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

/* ---- Light Theme: Tracker stepper track line (overrides rgba white inline) ---- */
body.light-theme .stepper > div[style*="rgba(255,255,255,0.08)"] {
  background: rgba(26, 26, 46, 0.12) !important;
}

/* ---- Light Theme: booking-form-section inline divider border fix ---- */
body.light-theme #row-service-name {
  border-bottom-color: rgba(26, 26, 46, 0.08) !important;
}

/* ---- Light Theme: Accordion ---- */
body.light-theme .accordion-header:hover {
  background: rgba(26, 26, 46, 0.03);
}

body.light-theme .accordion-icon {
  background: var(--bg-dark-3);
}

/* ---- Light Theme: Stepper ---- */
body.light-theme .step-circle {
  background: var(--bg-dark-3);
  border-color: var(--bg-dark);
}

body.light-theme .step.active .step-circle {
  background: #ffffff;
  border-color: var(--color-primary);
}

body.light-theme .step.completed .step-circle {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* ---- Light Theme: Slider Dots ---- */
body.light-theme .slider-dot {
  background: rgba(26, 26, 46, 0.15);
}

/* ---- Light Theme: Stats Bar ---- */
body.light-theme .stats-bar {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(26, 26, 46, 0.10);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* ---- Light Theme: Payment method radio ---- */
body.light-theme .payment-method input[type="radio"] {
  border-color: rgba(26, 26, 46, 0.2);
}

/* ---- Light Theme: Auth close button ---- */
body.light-theme .auth-close {
  background: rgba(26, 26, 46, 0.06);
  border-color: rgba(26, 26, 46, 0.12);
}

/* ---- Light Theme: Pagination ---- */
body.light-theme .pagination .page-link {
  border-color: rgba(200, 164, 90, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

body.light-theme .pagination .page-item.disabled .page-link {
  background: rgba(26, 26, 46, 0.04);
  border-color: rgba(26, 26, 46, 0.08);
  color: rgba(26, 26, 46, 0.25);
}

/* ---- Light Theme: Scrollbar ---- */
body.light-theme::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

/* ---- Light Theme: CTA section keeps golden look ---- */
body.light-theme .cta-section h2 {
  color: #1a1a2e;
}

/* ---- Light Theme: Footer social icons ---- */
body.light-theme .footer-social a {
  color: #b0b0b0;
  border-color: rgba(200, 164, 90, 0.3);
}

body.light-theme .footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #1a1a2e;
}

/* ---- Selection styling ---- */
::selection {
  background: rgba(200, 164, 90, 0.3);
  color: var(--text-primary);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary-dark);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}
