:root {
  color-scheme: dark;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --bg: #070708;
  --fg: #f7f7f2;
  --muted: #a6a6a6;
  --accent: #f05454;
  --accent-2: #ffd369;
  --card: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.08);
  --blur: blur(28px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(240, 84, 84, 0.2), transparent) 0 0/100% 100%,
    var(--bg);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

canvas#noise {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: screen;
  z-index: 0;
}

section,
header,
footer {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.5rem, 4vw, 5rem);
  position: sticky;
  top: 0;
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 8, 0.7);
  z-index: 10;
}

.logo {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  color: var(--fg);
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
}

.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.nav__links a.active,
.nav__links a:hover {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--fg);
}

.hero {
  padding-bottom: 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: clamp(3rem, 5vw, 7rem) clamp(1.5rem, 6vw, 7rem) 4rem;
  gap: 4rem;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin: 1rem 0;
}

.hero__content em {
  font-family: "Playfair Display", serif;
  font-style: normal;
  color: var(--accent-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #fe8f8f);
  color: #1a0909;
  box-shadow: 0 10px 30px rgba(240, 84, 84, 0.3);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--fg);
}

.btn:hover {
  transform: translateY(-3px);
}

.hero__stats {
  display: flex;
  gap: 2rem;
}

.hero__stats span {
  font-size: 2rem;
  font-weight: 600;
}

.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__video-container {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 84, 84, 0.1), rgba(255, 211, 105, 0.1));
  z-index: 1;
}

.hero__glass {
  position: absolute;
  inset: 0;
  padding: 0;
  border-radius: 24px;
  background: rgba(139, 90, 43, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: float 12s ease-in-out infinite;
  z-index: 2;
}

.hero__glass-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.hero__glass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.hero__glass:hover .hero__glass-image img {
  opacity: 0.8;
  transform: scale(1.05);
}

.hero__glass-menu {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(to top, rgba(139, 90, 43, 0.5), rgba(139, 90, 43, 0.2));
}

.hero__glass-item {
  text-decoration: none;
  color: var(--fg);
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
  display: block;
}

.hero__glass-item p {
  margin: 0;
  transition: color 0.3s, transform 0.3s;
  font-weight: 500;
}

.hero__glass-item:hover {
  transform: translateX(8px);
}

.hero__glass-item:hover p {
  color: var(--accent-2);
  transform: scale(1.05);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate3d(0, 1, 0, 0deg);
  }

  50% {
    transform: translateY(-16px) rotate3d(0.2, 1, 0, 8deg);
  }
}

section {
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 6vw, 7rem);
}

.section__heading {
  margin-bottom: 3rem;
}

.section__heading span {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-size: 0.85rem;
}

.section__heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.6rem 0 0;
}

.story__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.story__grid article {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: var(--card);
  transition: transform 0.4s, border-color 0.4s;
}

.story__grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.35);
}

.menu {
  background: radial-gradient(circle at bottom, rgba(255, 211, 105, 0.18), transparent),
    var(--bg);
}

.menu__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.chip {
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.chip.active {
  background: var(--accent);
  color: #1a0909;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.menu__item {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(7, 7, 8, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.menu__item::after {
  content: attr(data-tag);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu__price {
  font-size: 1.4rem;
  color: var(--accent-2);
}

.gallery {
  background: #0d0d0f;
}

.gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.4s;
}

.gallery__card img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.gallery__card p {
  margin: 0;
  padding: 1rem;
}

.gallery__card:hover {
  transform: translateY(-10px) scale(1.02);
}

.gallery__controls {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.gallery__controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__controls button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.gallery__controls button:active {
  transform: scale(0.95);
}

.experience__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.experience__card {
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reservation {
  background: radial-gradient(circle at top, rgba(240, 84, 84, 0.2), transparent);
}

.reservation__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.reservation__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.reservation__form input,
.reservation__form textarea,
.reservation__form select {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.9rem 1rem;
  color: var(--fg);
  font-size: 1rem;
  font-family: inherit;
}

.reservation__form input[type="range"] {
  padding: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.reservation__form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
}

.reservation__form input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
}

.range-value {
  display: block;
  margin-top: 0.5rem;
  color: var(--accent-2);
  font-weight: 600;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.checkbox-label:hover,
.radio-label:hover {
  border-color: var(--accent);
  background: rgba(240, 84, 84, 0.1);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked+span,
.radio-label input[type="radio"]:checked+span {
  color: var(--accent-2);
  font-weight: 600;
}

.reservation__form input[type="file"] {
  padding: 0.7rem;
  cursor: pointer;
}

.reservation__form input[type="file"]::file-selector-button {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  cursor: pointer;
  margin-right: 1rem;
  transition: all 0.3s;
}

.reservation__form input[type="file"]::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.reservation__form .full {
  grid-column: span 2;
}

.reservation__status {
  grid-column: span 2;
  margin: 0;
  min-height: 1.5rem;
  color: var(--accent-2);
}

#tableSelect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 211, 105)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 3rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

#tableSelect:hover {
  border-color: var(--accent-2);
  background-color: rgba(255, 211, 105, 0.05);
}

#tableSelect:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(240, 84, 84, 0.1);
}

#tableSelect option {
  background: #1a1a1a;
  color: var(--fg);
  padding: 1rem;
  font-weight: 500;
}

#tableSelect option:hover,
#tableSelect option:checked {
  background: var(--accent);
  color: #1a0909;
}

/* ============================================
   CREDIT CARD FORM STYLES
   ============================================ */

.credit-card-section {
  grid-column: span 2;
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.credit-card-section.active {
  opacity: 1;
  transform: translateY(0);
}

.credit-card-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.credit-card {
  width: 400px;
  height: 250px;
  perspective: 1000px;
  position: relative;
}

.credit-card-front,
.credit-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b5a2b 0%, #d4a574 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  overflow: hidden;
}

.credit-card-front::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.credit-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #6b4a2b 0%, #a47a54 100%);
}

.credit-card.flipped .credit-card-front {
  transform: rotateY(180deg);
}

.credit-card.flipped .credit-card-back {
  transform: rotateY(360deg);
}

.card-chip {
  width: 50px;
  height: 40px;
  background: linear-gradient(135deg, #f4e6d2 0%, #c9a66b 100%);
  border-radius: 8px;
  margin-bottom: 2rem;
  position: relative;
}

.card-chip::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, #e8d5b7 0%, #b8935a 100%);
  border-radius: 4px;
}

.card-number {
  font-size: 1.5rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 4px;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.card-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder,
.card-expiry {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-holder-name,
.card-expiry-date {
  font-size: 1rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Courier New', monospace;
}

.card-strip {
  width: 100%;
  height: 50px;
  background: #1a1a1a;
  margin: 2rem 0;
}

.card-cvv-box {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-cvv-box .card-label {
  color: #333;
}

.card-cvv-display {
  font-size: 1.2rem;
  font-family: 'Courier New', monospace;
  color: #333;
  font-weight: bold;
}

.credit-card-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-input-group span {
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
}

.card-input-group input {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  color: var(--fg);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.card-input-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(240, 84, 84, 0.1);
}

.card-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 900px) {
  .credit-card-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .credit-card {
    margin: 0 auto;
  }
}

.footer {
  padding: 2rem clamp(1.5rem, 6vw, 7rem) 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.footer__social a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.footer__social a:hover {
  color: var(--accent-2);
  background: rgba(240, 84, 84, 0.1);
  border-color: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(240, 84, 84, 0.2);
}

.footer__social a:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.about {
  background: radial-gradient(circle at center, rgba(255, 211, 105, 0.1), transparent);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text h3 {
  color: var(--accent-2);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.about__text h3:first-child {
  margin-top: 0;
}

.about__text p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--muted);
}

.about__media {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__video-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(240, 84, 84, 0.3);
}

.about__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  display: block;
}

.about__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about__video-wrapper:hover .about__video-overlay {
  opacity: 0;
}

.about__video-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(139, 90, 43, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.about__video-badge svg {
  width: 48px;
  height: 48px;
  color: var(--accent-2);
  filter: drop-shadow(0 4px 8px rgba(255, 211, 105, 0.5));
}

.about__video-badge span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.about__image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.faq {
  background: #0d0d0f;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 1rem;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 1.1rem;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq__question:hover {
  color: var(--accent-2);
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: var(--accent);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq__item.active .faq__answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.faq__answer p {
  padding-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--muted);
}

.testimonials {
  background: radial-gradient(circle at center, rgba(255, 211, 105, 0.12), transparent);
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial__card {
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.4s, border-color 0.4s;
  min-width: 320px;
}

.testimonial__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
}

.testimonial__stars {
  color: var(--accent-2);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.testimonial__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stroke);
}

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-2);
  flex-shrink: 0;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--fg);
  font-weight: 600;
}

.testimonial__info span {
  font-size: 0.9rem;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials__controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__controls button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: scale(1.1);
}

.testimonials__controls button:active {
  transform: scale(0.95);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.testimonials__dot.active {
  background: var(--accent);
  width: 12px;
  height: 12px;
}

.testimonials__dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.audio-section {
  background: radial-gradient(circle at bottom, rgba(240, 84, 84, 0.15), transparent);
}

.audio-player {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: var(--card);
  backdrop-filter: blur(20px);
}

.audio-player__info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.audio-player__info h3 {
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.audio-player__info p {
  color: var(--muted);
  font-size: 0.9rem;
}

.audio-player audio {
  width: 100%;
  height: 50px;
}

.audio-player audio::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .testimonials__track {
    grid-auto-columns: minmax(280px, 1fr);
    gap: 1.5rem;
  }

  .testimonial__card {
    min-width: 280px;
    padding: 2rem;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: rgba(7, 7, 8, 0.95);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero__stats {
    flex-wrap: wrap;
  }

  .reservation__form .full,
  .reservation__status {
    grid-column: span 1;
  }

  .about__content {
    grid-template-columns: 1fr;
  }

  .about__image img {
    min-height: 300px;
  }
}

.chatbot-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #fe8f8f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(240, 84, 84, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}

.chatbot-fab:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 36px rgba(240, 84, 84, 0.6);
}

.chatbot-fab:active {
  transform: scale(0.95);
}

.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: min(420px, calc(100vw - 2rem));
  height: min(600px, calc(100vh - 4rem));
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(40px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  overflow: hidden;
}

.chatbot-container.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(240, 84, 84, 0.2), rgba(255, 211, 105, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--fg);
}

.chatbot-header-info p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.chatbot-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(240, 84, 84, 0.2);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.chatbot-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.chatbot-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-message.user {
  flex-direction: row-reverse;
}

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-content {
  max-width: 75%;
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.chatbot-message.user .message-content {
  background: linear-gradient(135deg, var(--accent), #fe8f8f);
  border-color: transparent;
  color: #fff;
}

.message-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.message-content strong {
  color: var(--accent-2);
  font-weight: 600;
}

.quick-replies {
  padding: 0 1.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 40px;
}

.quick-reply-btn {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.quick-reply-btn:hover {
  background: var(--accent);
  color: #1a0909;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 84, 84, 0.3);
}

.quick-reply-btn:active {
  transform: translateY(0);
}

.chatbot-input-container {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
}

.chatbot-input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  color: var(--fg);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.chatbot-input:focus {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
}

.chatbot-input::placeholder {
  color: var(--muted);
}

.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent), #fe8f8f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.chatbot-send:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(240, 84, 84, 0.4);
}

.chatbot-send:active {
  transform: scale(0.95);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .chatbot-fab {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
  }

  .chatbot-container {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    max-height: 100vh;
  }

  .chatbot-container.active {
    border-radius: 0;
  }

  .message-content {
    max-width: 80%;
  }
}

.credit-card-section {
  grid-column: span 2;
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.credit-card-section.active {
  opacity: 1;
  transform: translateY(0);
}

.credit-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.credit-card {
  width: 100%;
  max-width: 400px;
  height: 250px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.credit-card.flipped {
  transform: rotateY(180deg);
}

.credit-card-front,
.credit-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 2rem;
  backface-visibility: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.credit-card-front {
  background: linear-gradient(135deg, #C9A65A 0%, #8B6F3E 50%, #D4AF6A 100%);
  color: #2a2116;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.credit-card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.credit-card-back {
  background: linear-gradient(135deg, #8B6F3E 0%, #C9A65A 50%, #8B6F3E 100%);
  transform: rotateY(180deg);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Card Chip - Premium Gold */
.card-chip {
  width: 55px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #DAA520 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-chip::before {
  content: '';
  position: absolute;
  inset: 5px;
  background:
    repeating-linear-gradient(0deg, #C9A65A 0px, #C9A65A 2px, #8B6F3E 2px, #8B6F3E 4px),
    repeating-linear-gradient(90deg, #C9A65A 0px, #C9A65A 2px, #8B6F3E 2px, #8B6F3E 4px);
  border-radius: 6px;
  opacity: 0.6;
}

/* Card Number - Elegant */
.card-number {
  font-size: 1.6rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  color: #fff;
}

.card-info {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.card-holder,
.card-expiry {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-label {
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-holder-name,
.card-expiry-date {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.card-logo {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-style: italic;
  opacity: 0.8;
}

.card-strip {
  width: calc(100% + 4rem);
  height: 50px;
  background: #000;
  margin: -2rem -2rem 0;
}

.card-cvv-box {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #333;
  margin-left: auto;
  width: 120px;
}

.card-cvv-box .card-label {
  color: #666;
}

.card-cvv-display {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #000;
}

.credit-card-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-input-group span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}

.card-input-group input {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  color: var(--fg);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.card-input-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(240, 84, 84, 0.1);
}

.card-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 900px) {
  .credit-card-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .credit-card {
    margin: 0 auto;
  }
}

.chatbot-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b9d 50%, #c94b4b 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 8px 30px rgba(240, 84, 84, 0.4),
    0 0 60px rgba(240, 84, 84, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  overflow: hidden;
  animation: chatbotPulse 2s ease-in-out infinite, chatbotFloat 3s ease-in-out infinite;
}

/* Pulse Ring Animation */
.chatbot-fab::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff6b9d);
  opacity: 0.6;
  animation: pulseRing 2s ease-out infinite;
  z-index: -1;
}

/* Sparkle Effect */
.chatbot-fab::after {
  content: '✨';
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 1.2rem;
  animation: sparkle 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 211, 105, 0.8));
}

.chatbot-fab svg {
  width: 32px;
  height: 32px;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.chatbot-fab:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow:
    0 12px 40px rgba(240, 84, 84, 0.6),
    0 0 80px rgba(240, 84, 84, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.chatbot-fab:hover svg {
  transform: scale(1.1) rotate(-5deg);
}

.chatbot-fab:active {
  transform: scale(0.95);
}

/* Badge for notifications */
.chatbot-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #ff3838, #ff6b9d);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid var(--bg);
  animation: badgeBounce 0.5s ease infinite alternate;
  box-shadow: 0 0 15px rgba(255, 56, 56, 0.7);
}

/* Chatbot Container */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  max-height: 600px;
  background: linear-gradient(145deg, rgba(20, 20, 25, 0.98), rgba(10, 10, 15, 0.98));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(240, 84, 84, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  animation: chatbotSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chatbot-container.active {
  display: flex;
}

/* Chatbot Header */
.chatbot-header {
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b9d 100%);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.chatbot-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: headerShine 3s linear infinite;
}

.chatbot-header-info h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.chatbot-header-info p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}

.chatbot-close svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

/* Chatbot Messages */
.chatbot-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(to bottom, rgba(240, 84, 84, 0.02), transparent);
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.chatbot-message {
  display: flex;
  gap: 0.8rem;
  animation: messageSlideIn 0.3s ease;
}

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #ff6b9d);
  box-shadow: 0 4px 15px rgba(240, 84, 84, 0.3);
}

.message-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.message-content p {
  margin: 0;
  color: var(--fg);
  line-height: 1.6;
  font-size: 0.95rem;
}

.chatbot-message.user {
  flex-direction: row-reverse;
}

.chatbot-message.user .message-avatar {
  background: linear-gradient(135deg, #4CAF50, #45a049);
}

.chatbot-message.user .message-content {
  background: linear-gradient(135deg, var(--accent), #ff6b9d);
  color: white;
}

.chatbot-message.user .message-content p {
  color: white;
}

/* Quick Replies */
.quick-replies {
  padding: 0 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.quick-reply-btn {
  padding: 0.6rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(240, 84, 84, 0.1);
  color: var(--accent-2);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.quick-reply-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(240, 84, 84, 0.3);
}

/* Chatbot Input */
.chatbot-input-container {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.8rem;
  background: linear-gradient(to top, rgba(240, 84, 84, 0.03), transparent);
}

.chatbot-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  color: var(--fg);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(240, 84, 84, 0.1);
}

.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent), #ff6b9d);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 84, 84, 0.3);
}

.chatbot-send:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(240, 84, 84, 0.5);
}

.chatbot-send:active {
  transform: scale(0.95);
}

.chatbot-send svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes chatbotPulse {

  0%,
  100% {
    box-shadow:
      0 8px 30px rgba(240, 84, 84, 0.4),
      0 0 60px rgba(240, 84, 84, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow:
      0 12px 40px rgba(240, 84, 84, 0.6),
      0 0 80px rgba(240, 84, 84, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

@keyframes chatbotFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 0.7;
  }
}

@keyframes badgeBounce {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes chatbotSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes headerShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .chatbot-fab {
    width: 60px;
    height: 60px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .chatbot-fab svg {
    width: 28px;
    height: 28px;
  }

  .chatbot-container {
    bottom: 1.5rem;
    right: 1.5rem;
    width: calc(100vw - 3rem);
    max-height: 500px;
  }
}

/* ============================================
   COMPACT AUDIO SECTION
   ============================================ */

.compact-audio-section {
  padding: 2rem clamp(1.5rem, 6vw, 7rem);
  background: rgba(7, 7, 8, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compact-audio-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.compact-audio-container:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.compact-audio-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
}

.compact-audio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compact-audio-content h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.compact-audio-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.compact-audio-content audio {
  width: 100%;
  height: 32px;
  margin-top: 0.5rem;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .compact-audio-container {
    flex-direction: column;
    text-align: center;
  }

  .compact-audio-logo {
    width: 60px;
    height: 60px;
  }

  .compact-audio-content h4 {
    font-size: 0.9rem;
  }

  .compact-audio-content p {
    font-size: 0.75rem;
  }
}