/* =================================
   Steuerberater Berlin - Stylesheet
   ================================= */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors - WCAG 2.1 AA konform */
  --gold-500: #bfa15f;
  --gold-600: #9d7f3d; /* Optimiert für besseren Kontrast */
  --gold-700: #8c733f;
  --navy-800: #1e293b;
  --navy-900: #0f172a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #7c8da3; /* Optimiert für besseren Kontrast */
  --slate-500: #5a6a7f; /* Optimiert für besseren Kontrast */
  --slate-600: #3d4f64; /* Optimiert für besseren Kontrast */
  --slate-700: #334155;
  --slate-800: #1e293b;
  --white: #ffffff;

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Barrierefreiheit / Accessibility
   ============================================ */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold-600);
  outline-offset: 2px;
}

/* Fokus-Sichtbarkeit für alle interaktiven Elemente */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Entfernt den Fokus-Ring nur bei Maus-Interaktion */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* Reduzierte Bewegung für Nutzer mit Bewegungsempfindlichkeit */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screenreader-only Klasse */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Container & Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.navbar-logo a {
  display: flex;
  align-items: center;
}

.navbar-logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo-img {
  height: 40px;
}

@media (max-width: 768px) {
  .navbar-logo-img {
    height: 40px;
  }

  .navbar.scrolled .navbar-logo-img {
    height: 35px;
  }
}

.navbar-logo .gold-dot {
  color: var(--gold-600);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar-menu a:hover {
  color: var(--gold-600);
}

.navbar-cta {
  padding: 0.5rem 1.5rem;
  background-color: var(--navy-900);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-cta:hover {
  background-color: var(--gold-600);
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy-900);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

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

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--slate-800);
  border-bottom: 1px solid var(--slate-100);
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background-color: var(--white);
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: var(--slate-50);
  transform: skewX(12deg);
  transform-origin: top right;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  order: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--slate-200);
  background-color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--gold-600);
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title-gradient {
  background: linear-gradient(to right, var(--gold-600), var(--gold-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-typing {
  height: 4rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-typing-text {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--navy-900);
  font-weight: 600;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.5rem;
  background-color: var(--gold-600);
  margin-left: 0.25rem;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 32rem;
  line-height: 1.75;
  border-left: 4px solid var(--gold-500);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--navy-800);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy-900);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-secondary:hover {
  color: var(--gold-600);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--slate-500);
  font-weight: 500;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-visual {
  order: 2;
  position: relative;
  height: 700px;
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-image-container {
  position: absolute;
  inset: 0;
  background-color: var(--slate-900);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, var(--navy-900), rgba(15, 23, 42, 0.8), transparent);
}

.hero-stat-card {
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  right: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 2px;
  color: var(--white);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 2;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

/* About Section */
.about {
  background-color: var(--slate-50);
}

.about-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.about-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-top: 2px solid transparent;
  transition: all 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top-color: var(--gold-600);
}

.about-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(15, 23, 42, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--slate-600);
}

/* Target Group Section */
.target-group {
  background-color: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.target-group-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.target-group-glow {
  position: absolute;
  right: 0;
  top: 0;
  width: 24rem;
  height: 24rem;
  background-color: var(--gold-600);
  border-radius: 50%;
  filter: blur(120px);
  transform: translate(50%, -50%);
}

.target-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.target-group h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.target-group-highlight {
  color: var(--gold-500);
}

.target-group-description {
  color: var(--slate-300);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.target-group-note {
  font-style: italic;
  font-size: 0.875rem;
  opacity: 0.7;
}

.target-group-list {
  list-style: none;
  margin-top: 2rem;
}

.target-group-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate-200);
  padding: 1rem 0;
}

.target-group-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.875rem;
}

.target-group-image-wrapper {
  position: relative;
}

.target-group-image-bg {
  position: absolute;
  inset: 0;
  background-color: var(--gold-600);
  transform: translate(1rem, 1rem);
  border-radius: 2px;
}

.target-group-image {
  position: relative;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  filter: grayscale(50%);
}

@media (max-width: 1024px) {
  .target-group-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Section */
.services {
  background-color: var(--white);
}

.services-header span {
  color: var(--gold-600);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--slate-100);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(191, 161, 95, 0.2);
  box-shadow: 0 10px 15px rgba(191, 161, 95, 0.05);
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: var(--slate-50);
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--navy-900);
  color: var(--gold-500);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-600);
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--navy-900);
}

/* Stats/Comparison Section */
.stats {
  background-color: var(--slate-50);
}

.stats-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.stats-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.stats-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid var(--slate-200);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.stats-card:hover {
  opacity: 1;
}

.stats-card.featured {
  background-color: var(--navy-900);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(-1rem);
}

.stats-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: var(--gold-600);
  filter: blur(80px);
  opacity: 0.2;
}

.stats-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.stats-card-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.stats-card.featured h3 {
  color: var(--white);
}

.stats-card.featured .stats-card-subtitle {
  color: var(--gold-500);
}

.stats-list {
  list-style: none;
}

.stats-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--slate-600);
}

.stats-card.featured .stats-list li {
  color: var(--slate-100);
  font-weight: 500;
}

.stats-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-cta p {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-bottom: 1rem;
}

.stats-cta a {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.stats-cta a:hover {
  color: var(--gold-500);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-card.featured {
    transform: translateY(0);
  }
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper {
  background-color: var(--slate-50);
  padding: 3rem;
  border-radius: 2px;
  border-left: 4px solid var(--gold-600);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--slate-600);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.required-indicator {
  color: #c92a2a;
  font-weight: 700;
}

.optional-indicator {
  color: var(--slate-400);
  font-weight: 400;
  text-transform: none;
  font-size: 0.7rem;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.form-errors {
  display: none;
  background-color: #ffe0e0;
  border: 2px solid #c92a2a;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #7a1818;
}

.form-errors.show {
  display: block;
}

.error-message {
  display: block;
  color: #c92a2a;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  min-height: 1rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-900);
  box-shadow: 0 0 0 1px var(--navy-900);
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #c92a2a;
  background-color: #fff5f5;
}

.form-group input[aria-invalid="true"]:focus,
.form-group textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 2px #c92a2a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--navy-900);
  color: var(--white);
  font-weight: 500;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-submit:hover {
  background-color: var(--gold-600);
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}

.contact-locations {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-location {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-icon {
  margin-top: 0.25rem;
  padding: 0.5rem;
  background-color: var(--slate-50);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-location:hover .contact-icon {
  background-color: rgba(191, 161, 95, 0.1);
}

.contact-location h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-location p {
  color: var(--slate-600);
  font-size: 0.875rem;
}

.contact-details {
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-detail p:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--slate-400);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-detail a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy-900);
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--gold-600);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}

/* SEO Text Section */
.seo-text {
  background-color: var(--slate-50);
  padding: 4rem 0;
  border-top: 1px solid var(--slate-200);
}

.seo-text-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.seo-text h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.seo-text p {
  color: var(--slate-500);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Footer */
.footer {
  background-color: var(--navy-900);
  color: var(--slate-400);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p {
  max-width: 28rem;
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

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

.footer ul a {
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer ul a:hover {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Utility Classes */
.text-gold { color: var(--gold-600); }
.bg-gold { background-color: var(--gold-600); }
.text-navy { color: var(--navy-900); }
.bg-navy { background-color: var(--navy-900); }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15); }

.rounded-sm { border-radius: 2px; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
