/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
  /* Colors */
  --background: #141414;
  --foreground: #fafafa;
  --card: #1f1f1f;
  --card-foreground: #fafafa;
  --primary: #d4af37;
  --primary-foreground: #141414;
  --secondary: #262626;
  --secondary-foreground: #fafafa;
  --muted: #333333;
  --muted-foreground: #a3a3a3;
  --border: #3d3d3d;
  --input: #262626;
  --ring: #d4af37;

  /* Gold variations */
  --gold: #d4af37;
  --gold-light: #e6c864;
  --gold-dark: #a68b2a;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Shadows */
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-gold-lg: 0 0 30px rgba(212, 175, 55, 0.4);
  --shadow-gold-xl: 0 0 40px rgba(212, 175, 55, 0.6);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.hidden {
  display: none !important;
}

.text-gold {
  color: #fbca24;
}

.text-glow {
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.font-semibold {
  font-weight: 600;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #fbca24;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--gold-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-outline:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.btn-full {
  width: 100%;
}

.btn-glow:hover {
  box-shadow: var(--shadow-gold-xl);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: rgba(20, 20, 20, 0.8);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-container {
    height: 5rem;
    padding: 0 2rem;
  }
}

.logo img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 1024px) {
  .logo img {
    height: 4.4rem;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
  }

  .nav-desktop a:hover {
    color: var(--gold);
  }
}

.header-actions {
  display: none;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

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

.nav-mobile a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile .btn {
  margin-top: 0.5rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1) 0%, var(--background) 50%, var(--background) 100%);
  background-image: url(img-02.png);
  background-size: cover;
}

.hero-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background-color: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(64px);
}

.hero-glow-1 {
  top: 25%;
  left: 25%;
}

.hero-glow-2 {
  bottom: 25%;
  right: 25%;
}

.hero-line-top,
.hero-line-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-line-top {
  top: 0;
}

.hero-line-bottom {
  bottom: 0;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 6rem 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background-color: rgba(212, 175, 55, 0.05);
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title .text-gold {
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-description .text-gold {
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   Section Styles
   ============================================ */
.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.section-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

.section-line-top,
.section-line-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.section-line-top {
  top: 0;
}

.section-line-bottom {
  bottom: 0;
}

/* ============================================
   About Section
   ============================================ */
.about {
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .about {
    padding: 6rem 0;
  }
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.problem-card:hover .problem-icon {
  background-color: var(--gold);
  color: var(--primary-foreground);
}

.problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.problem-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.problem-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.problem-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   Pillars Section
   ============================================ */
.pillars {
  position: relative;
  padding: 6rem 0;
  background-color: rgba(38, 38, 38, 0.3);
}

@media (min-width: 1024px) {
  .pillars {
    padding: 6rem 0;
  }
}

.pillars-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: all 0.5s ease;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background-color: rgba(212, 175, 55, 0.05);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pillar-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

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

.pillar-card:hover .pillar-icon {
  background-color: var(--gold);
  box-shadow: var(--shadow-gold-lg);
}

.pillar-card:hover .pillar-icon svg {
  color: var(--primary-foreground);
}

.pillar-number {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.2);
}

.pillar-icon {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(212, 175, 55, 0.1);
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.pillar-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
  transition: color 0.3s ease;
}

.pillar-card h3 {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pillar-card>p {
  position: relative;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.pillar-features {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .services {
    padding: 6rem 0;
  }
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

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

.service-card:hover .service-icon {
  background-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card:hover .service-icon svg {
  color: var(--primary-foreground);
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-card:hover .service-link {
  opacity: 1;
}

.service-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(212, 175, 55, 0.1);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  transition: color 0.3s ease;
}

.service-card h3 {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card p {
  position: relative;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.service-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-link svg {
  width: 1rem;
  height: 1rem;
}

.service-cta {
  border: 2px solid rgba(212, 175, 55, 0.5);
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.1), transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-cta p {
  margin-bottom: 1rem;
}

/* ============================================
   Partnership Section
   ============================================ */
.partnership {
  position: relative;
  padding: 6rem 0;
  background-color: rgba(38, 38, 38, 0.3);
}

@media (min-width: 1024px) {
  .partnership {
    padding: 6rem 0;
  }
}

.partnership-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.partnership-card-wrapper {
  position: relative;
  order: 2;
}

@media (min-width: 1024px) {
  .partnership-card-wrapper {
    order: 1;
  }
}

.partnership-glow {
  position: absolute;
  inset: -1rem;
  background-color: rgba(212, 175, 55, 0.05);
  border-radius: 1.5rem;
  filter: blur(16px);
}

.partnership-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background-color: var(--card);
}

@media (min-width: 1024px) {
  .partnership-card {
    padding: 3rem;
  }
}

.partnership-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.partnership-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-color: rgba(212, 175, 55, 0.1);
}

.partnership-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
}

.partnership-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.partnership-subtitle {
  color: var(--gold);
  font-weight: 500;
}

.partnership-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit span {
  color: var(--muted-foreground);
}

.partnership-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.partnership-footer svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.partnership-footer span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.partnership-content {
  order: 1;
}

@media (min-width: 1024px) {
  .partnership-content {
    order: 2;
  }
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta {
    padding: 6rem 0;
  }
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.1) 0%, var(--background) 50%, var(--background) 100%);
}

.cta-grid {
  position: relative;
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.form-wrapper {
  position: relative;
}

.form-glow {
  position: absolute;
  inset: -1rem;
  background-color: rgba(212, 175, 55, 0.05);
  border-radius: 1.5rem;
  filter: blur(16px);
}

.contact-form {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background-color: var(--card);
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.form-group input::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

.contact-form .btn .btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.contact-form .btn.loading .btn-text,
.contact-form .btn.loading .btn-icon {
  display: none;
}

.contact-form .btn.loading .btn-loading {
  display: flex;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  background-color: rgba(38, 38, 38, 0.0);
  border-top: 1px solid var(--border);
}

.footer-line-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer>.container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 3.4rem;
  width: auto;
  margin-bottom: 1.1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--primary-foreground);
}

.social-links a svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links h4,
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact a,
.footer-contact span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

/* ============================================
   Animations & Transitions
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: #FFF;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ============================================
   Modals
   ============================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-container {
  position: relative;
  background-color: var(--card);
  margin: 10% auto;
  padding: 0;
  border: 1px solid var(--border);
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold-lg);
  animation: modal-anim 0.4s ease;
}

@keyframes modal-anim {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--gold);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.modal-body {
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
  color: var(--muted-foreground);
}

.modal-body p {
  margin-bottom: 1rem;
  line-height: 1.6;
}