/* styles.css */

/* Updated Color Palette for Light Theme */
:root {
  --primary-purple: #3A2B55; /* Darker purple (kept for dark theme) */
  --secondary-purple: #8D799E;
  --gold: #E0B548; /* Used in dark theme */
  --dark-grey: #2F2F2F;
  --light-grey: #D0D0D0;
  --black: #1B1B1B;
  --text-light: #fff;
  --text-muted: #D0D0D0;

  /* Light Theme Colors (Darker Adjustment) */
  --light-background: #F5F5F5; /* Soft grey */
  --light-section: #FAFAFA;    /* Very light grey */
  --light-card-start: #D6D8E5; /* Darker soft blue */
  --light-card-end: #E8EAEF;   /* Darker grey-blue */
  --light-primary: #4B589A;    /* Deeper indigo */
  --light-secondary: #FFB300;  /* Deeper amber */
  --light-text: #1A202C;       /* Darker slate */
  --light-muted: #5A667A;      /* Darker cool grey */
}

/* Base Resets & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3em;
}
h2 {
  color: #fff !important;
}
p {
  margin-bottom: 1em;
}
a, button {
  text-decoration: none;
  cursor: pointer;
}
a:focus, button:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.raven-animation {
  font-size: 2.5rem;
  color: var(--gold);
  animation: fly 1.5s infinite ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.raven-animation i {
  margin-bottom: 0.5em;
}
.raven-animation span {
  font-size: 1.2rem;
  color: var(--gold);
  text-transform: uppercase;
  animation: fadeInOut 1.5s infinite ease-in-out;
}
@keyframes fly {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes fadeInOut {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0;
  z-index: 1200;
  transition: width 0.2s ease;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(27, 27, 27, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.8em 1.5em;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: padding 0.3s ease;
}
header.scrolled {
  padding: 0.5em 1.5em;
}
.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.navbar {
  display: flex;
  gap: 0.8em;
}
.nav-btn {
  background: var(--primary-purple);
  color: var(--text-light);
  padding: 0.5em 0.8em;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}

/* Theme Toggle (desktop) */
.theme-toggle {
  font-size: 1.2rem;
  color: var(--gold);
  cursor: pointer;
  margin-left: 1rem;
}
.theme-toggle input {
  display: none;
}
.theme-toggle label {
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Mobile Controls: displayed only at 1024px and below */
.mobile-controls {
  display: none;
  align-items: center;
  gap: 10px;
}
.theme-toggle-mobile {
  font-size: 1.4rem;
  color: var(--gold);
  cursor: pointer;
}
.theme-toggle-mobile input {
  display: none;
}
.theme-toggle-mobile label {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hamburger {
  display: none;
  font-size: 1.4rem;
  color: var(--gold);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  background: var(--dark-grey);
  transition: width 0.4s ease;
  z-index: 1100;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-content {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
}
.mobile-menu-content a {
  background: var(--primary-purple);
  color: var(--text-light);
  padding: 0.7em 1em;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 100%;
  max-width: 280px;
  text-align: center;
  font-size: 0.9rem;
}
.mobile-menu-content a:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}
.close-menu {
  font-size: 1.8rem;
  position: absolute;
  top: 1em;
  right: 1em;
  cursor: pointer;
  color: var(--gold);
}

/* Hero Section */
.hero-section {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
              url('../images/raven-bg.png') no-repeat center center / cover;
  animation: parallax 30s infinite linear;
}
@keyframes parallax {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 0 1.5em;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.typed-text-container {
  min-height: 1.5em;
  display: inline-block;
  color: var(--gold);
  margin-bottom: 0.5em;
  text-transform: uppercase;
  font-size: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Sections */
.section {
  position: relative;
  padding: 4em 1.5em;
  max-width: 1400px;
  margin: 0 auto 2em;
  border-radius: 30px;
}
.section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.6em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.section.reveal.active h2 {
  opacity: 1;
  transform: translateY(0);
}
.section-intro {
  font-size: 1rem;
  color: var(--light-grey);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.section.reveal.active .section-intro {
  opacity: 1;
  transform: translateY(0);
}
.dark-section {
  background: var(--dark-grey);
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: 1.5em;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #4e3d70 100%);
  border-radius: 20px;
  padding: 1.5em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  color: var(--text-light);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(224, 181, 72, 0.2);
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6em;
  color: var(--gold);
  text-align: center;
}
.card p,
.card ul {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.7em;
  line-height: 1.6;
  text-align: center;
}
.card ul {
  list-style-type: none;
  padding-left: 0;
  width: 100%;
}
.card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5em;
  text-align: left;
  padding-left: 1em;
}
.card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  margin-right: 0.7em;
  font-size: 0.9rem;
}
.card.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* Specific styling for no-flip cards (used in legal pages) */
.card.no-flip {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #4e3d70 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card.no-flip:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}
.card.no-flip h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.6em;
}
.card.no-flip p,
.card.no-flip ul {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: left;
}
.card.no-flip ul {
  list-style-type: none;
  padding-left: 1em;
}
.card.no-flip ul li {
  margin-bottom: 0.5em;
  position: relative;
}
.card.no-flip ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* .services-grid for Core Services */
.services-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CASE STUDY GRID */
.case-study-grid {
  display: grid;
  gap: 2em;
}
.case-study-card {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #4e3d70 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding: 1.5em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}
.case-study-card.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.case-study-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.case-study-text .card-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
  align-self: center;
}
.case-study-card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(224, 181, 72, 0.2);
}
.case-study-text h3 {
  color: var(--gold);
  margin-bottom: 0.6em;
  font-size: 1.3rem;
}
.case-study-text p, .case-study-text ul {
  font-size: 0.95rem;
  color: var(--light-grey);
  line-height: 1.5;
  margin-bottom: 0.6em;
}
.case-study-chart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: rgba(0,0,0,0.2);
  border-radius: 16px;
}
/* On wider screens, text on left, chart on right */
@media (min-width: 992px) {
  .case-study-card {
    flex-direction: row;
  }
}

/* Reviews Section */
.reviews-section {
  background: #2A2A2A;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
}
.review-card {
  background: #333;
  border-radius: 16px;
  padding: 1.2em;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  color: var(--text-light);
}
.review-text {
  font-size: 0.9rem;
  margin-bottom: 0.7em;
}
.review-author {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.5em;
}
.review-rating i {
  color: var(--gold);
}

/* Contact & CTA */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}
.contact-btn {
  padding: 0.8em 1.5em;
  background: var(--gold);
  color: var(--black);
  font-size: 1rem;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(224, 181, 72, 0.6);
}

/* Footer */
footer {
  padding: 2em 1.5em 8em;
  background: var(--black);
  text-align: center;
  color: var(--light-grey);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 2em;
  left: 2em;
  padding: 0.8em 1.5em;
  background: var(--gold);
  color: var(--black);
  font-size: 0.9rem;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: none;
}
.sticky-cta.show {
  opacity: 1;
}
.sticky-cta:hover {
  transform: scale(1.05);
}
.sticky-cta:focus {
  outline: none;
  box-shadow: none;
}

/* Scroll-to-top */
#scrollToTopBtn {
  position: fixed;
  bottom: 2em;
  right: 2em;
  width: 45px;
  height: 45px;
  background: var(--black);
  color: var(--text-light);
  border: none;
  border-radius: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#scrollToTopBtn.show {
  opacity: 1;
}
#scrollToTopBtn:hover {
  transform: scale(1.05);
}

/* FINAL CTA STYLING */
.final-cta {
  text-align: center;
}
.final-cta h2 {
  margin-bottom: 1em;
  font-size: 2rem;
}
.cta-box {
  background: var(--primary-purple);
  border-radius: 20px;
  padding: 2em;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.final-cta .section-intro {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.2em;
}
.final-cta p {
  margin-bottom: 1.2em;
  font-size: 1rem;
  color: var(--light-grey);
}

/* Light Theme */
body.light-theme {
  background: var(--light-background);
  color: var(--light-text);
}
body.light-theme header,
body.light-theme .section,
body.light-theme footer,
body.light-theme .hero-section {
  background: var(--light-section);
  color: var(--light-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
body.light-theme h2 {
  color: var(--light-text) !important;
}
body.light-theme .navbar .nav-btn {
  background: var(--light-card-start);
  color: var(--light-text);
  border: 1px solid var(--light-muted);
}
body.light-theme .navbar .nav-btn:hover {
  background: var(--light-secondary);
  color: var(--light-text);
  border-color: var(--light-secondary);
}
body.light-theme .mobile-menu-content a {
  background: var(--light-card-start);
  color: var(--light-text);
  border: 1px solid var(--light-muted);
}
body.light-theme .mobile-menu-content a:hover {
  background: var(--light-secondary);
  color: var(--light-text);
  border-color: var(--light-secondary);
}

/* NEW LIGHT THEME HERO BACKGROUND OVERLAY */
body.light-theme .hero-background {
  background: linear-gradient(
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.6)
    ),
    url('../images/raven-bg.png') no-repeat center center / cover;
  filter: none;
}

/* Increase text shadow for hero typed text in light theme */
body.light-theme .typed-text-container {
  color: var(--light-text);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 4px rgba(0, 0, 0, 0.6);
}

body.light-theme .hero-cta,
body.light-theme .contact-btn,
body.light-theme .sticky-cta {
  background: var(--light-primary);
  color: #FFFFFF;
  border: 1px solid var(--light-primary);
}
body.light-theme .hero-cta:hover,
body.light-theme .contact-btn:hover,
body.light-theme .sticky-cta:hover {
  background: var(--light-secondary);
  color: var(--light-text);
  border-color: var(--light-secondary);
  box-shadow: 0 0 15px rgba(255, 179, 0, 0.4);
}
body.light-theme .card {
  background: linear-gradient(135deg, var(--light-card-start) 0%, var(--light-card-end) 100%);
  color: var(--light-text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
body.light-theme .card-icon {
  color: var(--light-primary);
  background: rgba(75, 88, 154, 0.1);
}
body.light-theme .card:hover .card-icon {
  background: rgba(255, 179, 0, 0.2);
}
body.light-theme .card h3 {
  color: var(--light-primary);
}
body.light-theme .card p {
  color: var(--light-muted);
}
body.light-theme .card ul li::before {
  color: var(--light-primary);
}
body.light-theme .case-study-card {
  background: linear-gradient(135deg, var(--light-card-start) 0%, var(--light-card-end) 100%);
}
body.light-theme .case-study-text .card-icon {
  color: var(--light-primary);
  background: rgba(75, 88, 154, 0.1);
}
body.light-theme .case-study-card:hover .card-icon {
  background: rgba(255, 179, 0, 0.2);
}
body.light-theme .case-study-text h3 {
  color: var(--light-primary);
}
body.light-theme .case-study-text p,
body.light-theme .case-study-text ul {
  color: var(--light-muted);
}
body.light-theme .case-study-chart {
  background: rgba(75, 88, 154, 0.1);
}
body.light-theme .final-cta .cta-box {
  background: linear-gradient(135deg, var(--light-card-start) 0%, var(--light-card-end) 100%);
  color: var(--light-text);
}
body.light-theme .final-cta .section-intro {
  color: var(--light-primary);
}
body.light-theme .final-cta p {
  color: var(--light-muted);
}
body.light-theme .reviews-section {
  background: #F0F0F2;
}
body.light-theme .review-card {
  background: var(--light-section);
  color: var(--light-text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
body.light-theme .review-author {
  color: var(--light-primary);
}
body.light-theme .review-rating i {
  color: var(--light-secondary);
}
body.light-theme .section-intro {
  color: var(--light-muted);
}
body.light-theme .logo {
  color: var(--light-primary);
}
body.light-theme .theme-toggle,
body.light-theme .theme-toggle-mobile,
body.light-theme .hamburger,
body.light-theme .close-menu {
  color: var(--light-primary);
}
body.light-theme .mobile-menu-overlay {
  background: var(--light-card-start);
}
body.light-theme #scrollToTopBtn {
  background: var(--light-primary);
  color: #FFFFFF;
}
body.light-theme .progress-bar {
  background: var(--light-primary);
}

/* Light theme adjustments for legal pages */
body.light-theme .dark-section {
  background: var(--light-section);
}
body.light-theme .card.no-flip {
  background: linear-gradient(135deg, var(--light-card-start) 0%, var(--light-card-end) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
body.light-theme .card.no-flip h3 {
  color: var(--light-primary);
}
body.light-theme .card.no-flip p,
body.light-theme .card.no-flip ul {
  color: var(--light-muted);
}
body.light-theme .card.no-flip ul li::before {
  color: var(--light-primary);
}

/* Media Queries */
@media (max-width: 1024px) {
  .navbar,
  .theme-toggle.desktop-only {
    display: none;
  }
  .mobile-controls {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 50vh;
  }
  .typed-text-container {
    font-size: 1.8rem;
  }
  .contact-info {
    flex-direction: column;
    gap: 1em;
  }
  #stickyCta.show,
  #scrollToTopBtn.show {
    bottom: 0;
    border-radius: 0;
    width: 100%;
    left: 0;
    right: 0;
    box-shadow: none;
    transform: none;
  }
  #stickyCta {
    height: 40px;
    font-size: 0.85rem;
  }
  #scrollToTopBtn {
    height: 40px;
    font-size: 0.85rem;
  }
  #scrollToTopBtn.show {
    bottom: 40px;
  }
  .case-study-card {
    flex-direction: column;
  }
  .case-study-chart {
    min-height: 250px;
  }
}
@media (max-width: 479px) {
  .hero-section {
    min-height: 55vh;
  }
  .typed-text-container {
    font-size: 1.6rem;
  }
  .card h3 {
    font-size: 1.15rem;
  }
  .card p {
    font-size: 0.85rem;
  }
  .case-study-text p, .case-study-text ul {
    font-size: 0.85rem;
  }
}

/* Force show case study cards (avoid delayed reveal if needed) */
.case-study-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================================
   MODAL POPUP STYLES
   ========================================= */
.modal {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;         
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: #fff;
  color: #000;
  padding: 2em;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 15px; 
  right: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
.modal-content form {
  display: flex;
  flex-direction: column;
}
.modal-content label {
  margin-top: 1em;
  font-weight: 600;
}
.modal-content input,
.modal-content textarea {
  margin-top: 0.5em;
  padding: 0.7em;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.modal-content button {
  margin-top: 1.5em;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 5px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal-content button:hover {
  background: #cc9d3f;
}

/* Footer legal links */
.footer-legal-link {
  color: var(--gold);
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
.footer-legal-link:hover {
  color: #cca339;
  text-decoration: underline;
}