/* assets/css/style.css - Estilos Criollo Luxury para Amílcar Cruz Unanue */
:root {
  --bg-main: #0e0a07;
  --bg-card: #18120d;
  --bg-card-hover: #221a14;
  --bg-input: #120d09;
  --gold-primary: #d4af37;
  --gold-light: #f5e2a3;
  --gold-dark: #a07f1f;
  --leather: #8b4513;
  --leather-light: #b35919;
  --text-primary: #fdfbf7;
  --text-secondary: #c5bbb3;
  --text-muted: #8e8278;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-glow: rgba(212, 175, 55, 0.6);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-main: #fbf9f4;
  --bg-card: #ffffff;
  --bg-card-hover: #f5eedf;
  --bg-input: #ffffff;
  --gold-primary: #b38820;
  --gold-light: #805c10;
  --gold-dark: #735008;
  --leather: #78350f;
  --leather-light: #9a4c17;
  --text-primary: #1c1510;
  --text-secondary: #4a3c31;
  --text-muted: #78695d;
  --accent-green: #16a34a;
  --accent-red: #dc2626;
  --border-gold: rgba(179, 136, 32, 0.28);
  --border-gold-glow: rgba(179, 136, 32, 0.55);
  --shadow-gold: 0 10px 30px rgba(179, 136, 32, 0.12);
}

[data-theme="light"] body::before {
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.14) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .header-nav {
  background: rgba(251, 249, 244, 0.95);
  border-bottom: 1px solid var(--border-gold);
}

[data-theme="light"] .announcement-bar {
  background: linear-gradient(90deg, #f0e6d2, #e5d7c0, #f0e6d2);
  color: #5c4310;
  border-bottom: 1px solid var(--border-gold);
}

[data-theme="light"] .hero-title span {
  background: linear-gradient(135deg, #1c1510 10%, #7c5c10 50%, #b38820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .countdown-box {
  background: linear-gradient(180deg, #ffffff, #f7f3ec);
  border: 1px solid var(--border-gold);
}

[data-theme="light"] .count-unit .num {
  color: var(--gold-dark);
}

[data-theme="light"] .pack-price {
  color: #1c1510;
}

[data-theme="light"] .package-card.popular {
  background: linear-gradient(180deg, #fbf7ee 0%, #ffffff 100%);
}

[data-theme="light"] .btn-outline-gold {
  background: #ffffff;
  color: var(--leather);
  border: 1px solid var(--border-gold);
}

[data-theme="light"] .btn-outline-gold:hover {
  background: #f5ede0;
  color: #000;
}

[data-theme="light"] .custom-progress-bar {
  background: #e8dccb;
}

[data-theme="light"] .press-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

[data-theme="light"] .footer-main {
  background: #ece3d2;
  border-top: 1px solid var(--border-gold);
  color: var(--text-secondary);
}

[data-theme="light"] .input-styled, [data-theme="light"] .form-input {
  background: #ffffff;
  color: #1c1510;
  border: 1px solid var(--border-gold);
}

[data-theme="light"] .pay-radio-card {
  background: #ffffff;
}

[data-theme="light"] .modal-overlay {
  background: rgba(28, 21, 16, 0.7);
}

.btn-theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 10px;
}

.btn-theme-toggle:hover {
  background: var(--bg-card-hover);
  color: var(--gold-light);
  transform: rotate(20deg) scale(1.08);
  border-color: var(--gold-primary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background Atmosphere Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography Headings */
h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Notification Bar */
.announcement-bar {
  background: linear-gradient(90deg, #18120d, #2d1e12, #18120d);
  border-bottom: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement-bar i {
  color: var(--gold-primary);
}

/* Header & Nav */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 10, 7, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #100b07;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  border: 1px solid var(--gold-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-logo:hover .brand-emblem {
  transform: scale(1.06) rotate(6deg);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text-primary);
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.btn-header-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-header-cta:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

/* Hero Section */
.hero-section {
  padding: 40px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.hero-title span {
  background: linear-gradient(135deg, #fff 20%, var(--gold-light) 60%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.btn-gold-glow {
  background: linear-gradient(135deg, #e6c35c, #d4af37, #aa831b);
  color: #100b07;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-gold-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  color: #000;
}

.btn-outline-gold {
  background: rgba(24, 18, 13, 0.8);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Trust Stats */
.hero-trust-bar {
  display: flex;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item h4 {
  color: var(--gold-primary);
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Hero Media Card */
.hero-card-showcase {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  padding: 14px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
}

.hero-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  display: block;
}

.prize-tag-floating {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(14, 10, 7, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.countdown-box {
  background: linear-gradient(180deg, rgba(30, 22, 18, 0.95), rgba(18, 14, 11, 0.98));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

.count-unit .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.count-unit .lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

/* Progress Section */
.progress-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 25px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.progress-header .pct {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.custom-progress-bar {
  background: #110d0a;
  border-radius: var(--radius-full);
  height: 14px;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-fill {
  background: linear-gradient(90deg, var(--leather-light), var(--gold-primary), var(--gold-light));
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* Packages Grid */
.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.section-tag {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.2);
}

.package-card.popular {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, #241a13 0%, var(--bg-card) 100%);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #d4af37, #f5e2a3);
  color: #100b07;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.pack-discount-tag {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 10px;
}

.pack-chances-header {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.pack-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.pack-price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pack-course-badge {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pack-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pack-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pack-features li i {
  color: var(--gold-primary);
  margin-top: 3px;
  font-size: 0.95rem;
}

.btn-pack-buy {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #120e0b;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-pack-buy:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  color: #000;
}

/* Feature & Biography Section */
.bio-section {
  padding: 70px 0;
  background: linear-gradient(180deg, transparent, rgba(24, 18, 13, 0.6), transparent);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.bio-gallery-stack {
  position: relative;
}

.bio-gallery-main {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.bio-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 20px;
  border-left: 3px solid var(--gold-primary);
  padding-left: 18px;
}

.services-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 25px;
}

.service-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px;
}

.service-chip h5 {
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-chip p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Media Press Logotypes */
.press-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.press-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
  display: block;
}

.press-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.press-media-name {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.press-headline {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.35;
}

/* My Numbers Search Card */
.my-numbers-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 35px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.search-input-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.input-styled {
  flex-grow: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 14px 20px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.input-styled:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-gold);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--gold-light);
}

/* Form Styles */
.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.payment-method-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.pay-radio-card {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-input);
}

.pay-radio-card.active {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
}

.pay-radio-card i {
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 6px;
  display: block;
}

.pay-radio-card span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-float-wa {
  background: #25d366;
}

.btn-float-bot {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #100b07;
}

.btn-float:hover {
  transform: scale(1.1) translateY(-3px);
}

/* Footer */
.footer-main {
  background: #080604;
  border-top: 1px solid var(--border-gold);
  padding: 50px 0 25px;
  color: var(--text-secondary);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive queries */
@media (max-width: 900px) {
  .hero-grid, .bio-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .nav-links {
    display: none;
  }
  .services-chips {
    grid-template-columns: 1fr;
  }
  .search-input-group {
    flex-direction: column;
  }
}
