/* ========================================
   CSS VARIABLES
======================================== */

:root {
  --bg-primary: #faf9f7;
  --bg-secondary: #f5f2ed;
  --bg-accent: #e8f4f8;
  --bg-body: #212529;
  
  --cyan-primary: #0dcaf0;
  --cyan-soft: #7dd3fc;
  --cyan-ultra-soft: #e0f7ff;
  
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --text-light: #faf9f7;
  
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  
  --font-heading: 'Dancing Script', cursive;
  --font-body: 'Manrope', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   RESET & BASE
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-medium);
  background-color: var(--bg-body);
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h2 {
  letter-spacing: -2px;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--cyan-primary);
  text-align: center;
  margin-bottom: 1.5rem;
  animation: lights 5s 750ms linear infinite;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 1rem;
  font-weight: 300;
}

.highlight {
  color: var(--cyan-primary);
  font-weight: 600;
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes lights {
  0% {
    color: var(--cyan-primary);
    text-shadow:
      0 0 1em hsla(200, 90%, 70%, 0.3),
      0 0 0.125em hsla(200, 100%, 60%, 0.4),
      -1em -0.125em 0.5em hsla(200, 100%, 60%, 0),
      1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
  30% { 
    color: var(--cyan-primary);
    text-shadow:
      0 0 1em hsla(200, 90%, 70%, 0.3),
      0 0 0.125em hsla(200, 100%, 60%, 0.4),
      -0.5em -0.125em 0.25em hsla(200, 100%, 60%, 0),
      0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.5);
  }
  40% { 
    color: var(--cyan-primary);
    text-shadow:
      0 0 1em hsla(200, 90%, 70%, 0.3),
      0 0 0.125em hsla(200, 100%, 60%, 0.4),
      -0.25em -0.125em 0.125em hsla(200, 100%, 60%, 0),
      0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.5);
  }
  70% {
    color: var(--cyan-primary);
    text-shadow:
      0 0 1em hsla(200, 90%, 70%, 0.3),
      0 0 0.125em hsla(200, 100%, 60%, 0.4),
      0.5em -0.125em 0.25em hsla(200, 100%, 60%, 0),
      -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.5);
  }
  100% {
    color: var(--cyan-primary);
    text-shadow:
      0 0 1em hsla(200, 90%, 70%, 0),
      0 0 0.125em hsla(200, 100%, 60%, 0.4),
      1em -0.125em 0.5em hsla(200, 100%, 60%, 0),
      -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
}

@keyframes flap {
  0%, 100% { transform: scaleX(1) rotate(0deg); }
  25% { transform: scaleX(0.8) rotate(-5deg); }
  50% { transform: scaleX(1) rotate(5deg); }
  75% { transform: scaleX(0.8) rotate(-5deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   LAYOUT
======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col-image, .col-content {
  flex: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.content-section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--bg-primary);
  z-index: 10;
}

.content-section.alt-bg {
  background-color: var(--bg-secondary);
}

section {
  padding-top: 2rem;
}

#sophrologie, #emdr, #clemence, #seances, #tarifs, #contact {
  background-color: var(--bg-body);
  position: relative;
  z-index: 10;
}

/* ========================================
   LOADER
======================================== */

.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.site-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  height: 80px;
  width: 80px;
}

.loader-butterfly {
  animation: flap 0.6s ease-in-out infinite;
}

.site-loader,
.loader-butterfly {
  will-change: transform, opacity;
}

body.loading {
  overflow: hidden;
}

body.loading .main-content {
  visibility: hidden;
  opacity: 0;
}

.main-content {
  transition: opacity 0.3s ease-in-out;
}

.main-content.ready {
  visibility: visible;
  opacity: 1;
}

/* ========================================
   NAVIGATION
======================================== */

.navbar {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  background: rgba(33, 37, 41, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 1200px;
}

.mobile-menu {
  display: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  padding: 0 2rem;
  width: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

.nav-link {
  display: block;
  text-decoration: none;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-primary);
}

.nav-link.active {
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
  box-shadow: 0 0 8px rgba(13, 202, 240, 0.6);
}

.nav-link:focus {
  outline: none;
}

.nav-link:focus-visible {
  outline: 2px solid var(--cyan-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 10rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -5px;
  position: fixed;
  top: calc(50% - 260px);
  left: 0;
  right: 0;
  text-align: center;
  margin: 0;
  z-index: 5;
}

.hero-subtitle {
  font-size: 4rem;
  font-weight: 600;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: lights 5s 750ms linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: fixed;
  top: calc(50% + 100px);
  left: 0;
  right: 0;
  margin: 0;
  z-index: 5;
}

.subtitle-line {
  line-height: 1.1;
}

.subtitle-separator {
  font-size: 3rem;
  opacity: 0.8;
  font-weight: 300;
  margin: 0 0.5rem;
}

.hero-butterfly {
  position: fixed;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  animation: flap 0.6s ease-in-out infinite;
  z-index: 4;
}

.butterfly-icon {
  height: 80px;
  width: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  display: inline-block;
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.scroll-down:hover {
  color: var(--cyan-soft);
  transform: scale(1.2);
}

/* ========================================
   FLOATING CTA
======================================== */

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  animation: pulse 2s infinite;
  display: none;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-soft));
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-bounce);
  font-size: 1.2rem;
  font-weight: 600;
}

.cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(13, 202, 240, 0.4);
  color: white;
}

.cta-btn span {
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

/* ========================================
   COMMON COMPONENTS
======================================== */

/* Images */
.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.section-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.profile-image {
  border-radius: 20px;
}

/* Content boxes */
.content-text {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.content-text p {
  margin-bottom: 1.5rem;
}

/* Note box */
.note {
  background: var(--cyan-ultra-soft);
  border-left: 4px solid var(--cyan-primary);
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Icons circulaires */
.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

/* Benefit items */
.benefit-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.benefit-item i {
  color: var(--cyan-primary);
  font-size: 1.5rem;
  min-width: 24px;
}

/* ========================================
   GRIDS & LAYOUTS
======================================== */

.benefits-section {
  margin: 2rem 0;
  text-align: center;
}

.benefits-title {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.important-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.collective-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

/* ========================================
   SPECIFIC SECTIONS
======================================== */

/* Sophrologie */
.sophrologie-row {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 3rem;
}

.sophrologie-row .col-image,
.sophrologie-row .col-content {
  flex: 1;
  display: flex;
  border-radius: 12px;
}

.sophrologie-row .col-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  align-self: stretch;
  box-shadow: var(--shadow-soft);
}

/* EMDR */
.emdr-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.col-image{
  align-items: center;
  border-radius: 12px;
}

.emdr-row .col-content,
.emdr-row .col-applications {
  flex: 1;
}

/* Clémence */
.clemence-row {
  display: flex;
  gap: 2rem;
}

.clemence-row .col-image,
.clemence-row .col-content {
  flex: 1;
}

.clemence-row .col-image img {
  width: auto;
  height: 85%;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

.speciality-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--cyan-ultra-soft), white);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--cyan-soft);
  margin: 2rem 0;
}

.speciality-icon {
  background: var(--cyan-primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.speciality-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.speciality-content p {
  margin: 0;
  font-size: 1rem;
}

/* ========================================
   CARDS
======================================== */

/* Process cards */
.process-item {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
}

.process-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan-primary), var(--cyan-soft));
  border-radius: 0 0 4px 4px;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.process-item h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.process-item p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Pricing cards */
.pricing-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan-primary), var(--cyan-soft));
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--cyan-soft);
}

.pricing-card.featured::before {
  height: 6px;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.pricing-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan-primary);
  margin: 1rem 0;
  font-family: var(--font-heading);
}

.duration {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.pricing-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Contact cards */
.contact-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.contact-item h4 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-details p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.contact-details a {
  color: var(--cyan-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.contact-details a:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

/* Credential cards */
.credential-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.credential-item h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.credential-item h5 i {
  color: var(--cyan-primary);
}

.credential-item ul {
  list-style: none;
  padding: 0;
}

.credential-item li::before {
  content: "→";
  left: 0;
  color: var(--cyan-primary);
  font-weight: bold;
}

/* Note items */
.note-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.note-item i {
  color: var(--cyan-primary);
  font-size: 2rem;
  margin-top: 0.5rem;
}

.note-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.note-item p {
  margin: 0;
  color: var(--text-medium);
}

/* Collective cards */
.collective {
  background: linear-gradient(135deg, var(--cyan-ultra-soft), white);
  border: 2px solid var(--cyan-soft);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.collective i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.collective h4 {
  color: var(--cyan-primary);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
}

.collective p {
  color: var(--text-medium);
}

/* ========================================
   CABINET SHOWCASE
======================================== */

.cabinet-showcase {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
}

.cabinet-image,
.cabinet-map {
  flex: 1;
}

.cabinet-image .cabinet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.cabinet-map iframe {
  width: 100%;
  height: 100%; 
  box-shadow: var(--shadow-soft);
}

/* ========================================
   FOOTER
======================================== */

.footer {
  position: relative;
  background: var(--text-dark);
  color: white;
  text-align: center;
  overflow: hidden;
  z-index: 10;
}

.footer-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

.footer-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}

.footer-social {
  margin-bottom: 2rem;
}

.footer-social a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--cyan-primary);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  margin: 0 0.5rem;
}

.footer-social a:hover {
  background: var(--cyan-soft);
  transform: translateY(-3px);
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--cyan-soft);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ========================================
   MODAL
======================================== */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  margin: 2rem;
  padding: 0;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--bg-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--bg-secondary);
  color: var(--text-dark);
}

.modal-body {
  padding: 1rem 2rem 2rem;
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

/* ========================================
   UTILITY CLASSES
======================================== */

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }