/* ===================================
   TIMETRAVEL AGENCY — STYLESHEET
   Thème : Luxury Dark + Accents Or
=================================== */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8a6f2e;
  --dark: #060810;
  --dark-2: #0d1120;
  --dark-3: #141928;
  --dark-4: #1e2540;
  --text-primary: #f0ece3;
  --text-secondary: #9ba3b5;
  --text-muted: #5a6175;
  --border: rgba(201, 168, 76, 0.2);
  --border-hover: rgba(201, 168, 76, 0.5);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: "Cinzel", serif;
  --font-body: "Cormorant Garamond", serif;
  --font-ui: "Rajdhani", sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CURSEUR ===== */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .cursor,
  .cursor-follower {
    display: none;
  }
  body {
    cursor: default;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark-2);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  background: transparent;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(6, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
}
.logo-icon {
  font-size: 1.6rem;
  color: var(--gold);
  animation: logoSpin 8s linear infinite;
}
@keyframes logoSpin {
  to {
    transform: rotate(360deg);
  }
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  right: 0;
}
.nav-cta {
  padding: 0.5rem 1.5rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, #1a1030 0%, var(--dark) 60%),
    radial-gradient(ellipse at 70% 30%, #0a1a2a 0%, transparent 60%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: var(--opacity, 0.4);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: var(--opacity, 0.4);
  }
  50% {
    transform: translateY(-30px) translateX(10px);
    opacity: 0.8;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(6, 8, 16, 0.2) 50%,
    rgba(6, 8, 16, 0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}
.hero-badge {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-title .line1 {
  display: block;
  color: var(--text-primary);
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.01% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: rgba(6, 8, 16, 0.9);
  padding: 0.6rem 0;
}
.ticker-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.ticker-dot {
  color: var(--gold);
  font-size: 0.5rem;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(240, 236, 227, 0.3);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-full {
  width: 100%;
}

/* ===== STATS ===== */
.stats-section {
  padding: 4rem 2rem;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
@media (max-width: 640px) {
  .stat-divider {
    display: none;
  }
}

/* ===== SECTION HELPERS ===== */
.section-tag {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 500px;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 8rem 2rem;
  background: var(--dark);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.about-visual {
  display: flex;
  justify-content: center;
}
.about-card {
  width: 300px;
  height: 300px;
  position: relative;
}
.portal-animation {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
}
.r1 {
  width: 240px;
  height: 240px;
  opacity: 0.8;
  animation: portalSpin 6s linear infinite;
}
.r2 {
  width: 190px;
  height: 190px;
  opacity: 0.5;
  animation: portalSpin 4s linear infinite reverse;
}
.r3 {
  width: 140px;
  height: 140px;
  opacity: 0.3;
  animation: portalSpin 3s linear infinite;
}
@keyframes portalSpin {
  to {
    transform: rotate(360deg);
  }
}
.portal-core {
  font-size: 3rem;
  color: var(--gold);
  animation: portalPulse 2s ease-in-out infinite;
}
@keyframes portalPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ===== DESTINATIONS ===== */
.destinations-section {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, var(--dark-2), var(--dark));
}
.destinations-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}
.dest-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.dest-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    var(--shadow-gold);
}
.dest-card.featured {
  border-color: var(--gold-dark);
}
.dest-badge-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.dest-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.dest-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-image {
  transform: scale(1.05);
}
.paris-bg {
  background-image:
    linear-gradient(
      to bottom,
      rgba(6, 8, 16, 0) 0%,
      rgba(20, 25, 40, 0.7) 70%,
      var(--dark-3) 100%
    ),
    url("https://images.unsplash.com/photo-1511739001486-6bfe10ce785f?w=800&q=80");
  background-size: cover;
  background-position: center;
}
.cretace-bg {
  background-image:
    linear-gradient(
      to bottom,
      rgba(6, 8, 16, 0.05) 0%,
      rgba(6, 8, 16, 0.5) 100%
    ),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?w=800&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.florence-bg {
  background-image:
    linear-gradient(
      to bottom,
      rgba(6, 8, 16, 0) 0%,
      rgba(20, 25, 40, 0.7) 70%,
      var(--dark-3) 100%
    ),
    url("https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=800&q=80");
  background-size: cover;
  background-position: center;
}
.dest-era-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark-3) 0%, transparent 60%);
}
.dest-content {
  padding: 1.5rem 1.8rem 1.8rem;
}
.dest-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.dest-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.dest-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.dest-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.dest-highlights span {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
}
.btn-dest {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-dest:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== QUIZ ===== */
.quiz-section {
  padding: 8rem 2rem;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.quiz-container {
  max-width: 800px;
  margin: 0 auto;
}
.quiz-wrapper {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.quiz-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.quiz-progress-bar {
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
  flex: 1;
  margin-right: 1rem;
  width: 25%;
}
.quiz-progress-text {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}
.quiz-question h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .quiz-options {
    grid-template-columns: 1fr;
  }
}
.quiz-option {
  background: var(--dark-4);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: left;
  transition: var(--transition);
}
.quiz-option:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.quiz-option.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}
.quiz-result {
  text-align: center;
  padding: 3rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
}
.result-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.quiz-result h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.quiz-result p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 8rem 2rem;
  background: var(--dark);
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}
.contact-item strong {
  font-family: var(--font-ui);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}
.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.contact-form {
  background: var(--dark-3);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-group select option {
  background: var(--dark-4);
}
.form-success {
  text-align: center;
  padding: 3rem;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-links h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal {
  background: var(--dark-3);
  border: 1px solid var(--border);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}
.modal-close:hover {
  color: var(--gold);
}
.modal-header {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.modal-body {
  padding: 2rem;
}
.modal-body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.modal-body .modal-tag {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
}
.modal-body p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.modal-info-item {
  background: var(--dark-4);
  padding: 1rem;
  border-left: 2px solid var(--gold-dark);
}
.modal-info-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.modal-info-value {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== CHATBOT ===== */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
}
.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: var(--transition);
}
.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}
.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-height: 550px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    var(--shadow-gold);
  animation: chatOpen 0.3s ease;
}
@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 2rem);
    right: -1rem;
  }
  .chatbot-container {
    bottom: 1rem;
    right: 1rem;
  }
}
@keyframes chatOpen {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.chatbot-header {
  padding: 1rem 1.2rem;
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.chatbot-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}
.online-dot {
  font-size: 0.75rem;
  color: #4ade80;
  font-family: var(--font-ui);
}
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 280px;
}
.message {
  display: flex;
  flex-direction: column;
}
.message.user {
  align-items: flex-end;
}
.message.bot {
  align-items: flex-start;
}
.message-bubble {
  max-width: 85%;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: var(--font-ui);
}
.message.bot .message-bubble {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.message.user .message-bubble {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
}
.message-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
  margin-top: 0.3rem;
  padding: 0 0.5rem;
}
.chatbot-typing {
  padding: 0.5rem 1rem;
}
.typing-dots {
  display: flex;
  gap: 4px;
  padding: 0.8rem 1rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  width: fit-content;
}
.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
  animation: typingAnim 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typingAnim {
  0%,
  80%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
}
.chatbot-suggestions {
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}
.chatbot-suggestions button {
  background: var(--dark-4);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.35rem 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.chatbot-suggestions button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.chatbot-input-area {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.chatbot-input-area input {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.chatbot-input-area input:focus {
  border-color: var(--gold);
}
.send-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  color: var(--dark);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.send-btn:hover {
  opacity: 0.9;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITIES ===== */
.hidden {
  display: none !important;
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--text-primary);
}
