/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --primary: #2a8cb5;
  --primary-light: #3ba3cf;
  --primary-dark: #1e7a9e;
  --primary-50: #eef8fc;
  --primary-100: #d5effa;
  --primary-200: #b0e0f5;
  --navy: #1a2636;
  --navy-light: #243345;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1rem;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  flex-shrink: 0;
  line-height: 1;
}

.logo .logo-text {
  display: flex;
  align-items: center;
}

.logo-mark-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
  vertical-align: middle;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
}

.nav a {
  transition: color var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

.header-cta {
  margin-left: 8px;
  padding: 8px 20px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(42,140,181,0.3);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,163,207,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.hero-left {
  max-width: 640px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-100);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.hero-sub {
  color: var(--gray-500);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--transition);
  font-size: 0.9rem;
  padding: 12px 24px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.95rem;
  border-radius: 14px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 12px rgba(42,140,181,0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(42,140,181,0.35);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ===========================
   FILTERS
=========================== */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--primary-200);
  color: var(--primary);
  background: var(--primary-50);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===========================
   EVENTS GRID
=========================== */
.events-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* CARD */
/* CARD — full image background */
.card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  height: 420px;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.card.sold-out { cursor: default; }
.card.sold-out:hover { transform: none; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.card-img-wrap {
  position: absolute;
  inset: 0;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img {
  transform: scale(1.08);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15,23,42,0.92) 0%,
    rgba(15,23,42,0.55) 40%,
    rgba(15,23,42,0.08) 70%,
    transparent 100%
  );
  pointer-events: none;
  transition: background 0.3s;
}

.card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  color: var(--gray-700);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 8px;
  z-index: 2;
}

.card-img-info {
  display: none;
}

.sold-out-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(3px);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 3;
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: white;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 2px;
}

.card-artist {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  display: block;
}

.card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.card-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

.card-detail svg {
  flex-shrink: 0;
  color: var(--primary-light);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.card-price-tag {
  display: flex;
  flex-direction: column;
}

.card-price-from {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.card-price-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.card-cta {
  padding: 10px 24px;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.card-cta:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 20px rgba(42,140,181,0.4);
  transform: translateY(-1px);
}

.card-cta:disabled {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  cursor: default;
  box-shadow: none;
  transform: none;
}

/* ===========================
   LOADER
=========================== */
.loader {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 80px 0;
}

.loader-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-200);
  border-radius: 50%;
  animation: bounce 1.2s ease-in-out infinite;
}

.loader-dot:nth-child(2) { animation-delay: 0.15s; }
.loader-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* ===========================
   TRUST SECTION
=========================== */
.trust-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.trust-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.trust-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow);
}

.trust-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-100);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.trust-card p {
  color: var(--gray-500);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-text {
  color: white;
}

.footer-desc {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col a {
  display: flex;
  align-items: center;
  color: var(--gray-400);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-badges {
  display: flex;
  gap: 16px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-500);
  font-size: 0.78rem;
}

/* ===========================
   MODAL
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--gray-600);
}

.modal-close:hover {
  background: var(--white);
  border-color: var(--gray-300);
}

.modal-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  color: var(--gray-700);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.modal-body {
  padding: 24px;
}

.modal-body h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.3;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.modal-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.modal-info-item svg {
  color: var(--gray-400);
  flex-shrink: 0;
}

.modal-desc {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.modal-tickets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.ticket-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition);
}

.ticket-opt:hover,
.ticket-opt.selected {
  border-color: var(--primary-light);
  background: var(--primary-50);
}

.ticket-opt input[type="radio"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ticket-opt-info { flex: 1; }

.ticket-opt-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}

.ticket-opt-price {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* FORM */
.modal-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  margin-top: 16px;
}

.modal-form label:first-child {
  margin-top: 0;
}

.modal-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-800);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.modal-form input[type="email"]:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59,163,207,0.1);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.qty-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--gray-600);
}

.qty-btn:hover {
  border-color: var(--primary-light);
  background: var(--primary-50);
  color: var(--primary);
}

.qty-val {
  font-size: 1.05rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  color: var(--gray-900);
}

.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--primary-50);
  border: 1.5px solid var(--primary-100);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-600);
}

.total-bar strong {
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--gray-400);
}

.secure-note svg {
  color: var(--gray-400);
}

/* SPINNER */
.btn-spin {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* ===========================
   TWITTER / X ELEMENTS
=========================== */
.header-twitter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  transition: all var(--transition);
  flex-shrink: 0;
}

.header-twitter:hover {
  background: var(--navy-light);
  transform: scale(1.08);
}

.btn-twitter {
  background: var(--navy);
  color: white;
  border: none;
}

.btn-twitter:hover {
  background: var(--navy-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-twitter svg {
  flex-shrink: 0;
}

/* ===========================
   REVIEWS / AVIS SECTION
=========================== */
.reviews-section {
  background: var(--navy);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.reviews-section .section-header h2 {
  color: white;
}

.reviews-section .section-header p {
  color: var(--gray-400);
}

.reviews-see-more {
  color: var(--primary-light);
  font-weight: 600;
  transition: color var(--transition);
}

.reviews-see-more:hover {
  color: white;
}

/* CAROUSEL */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8px 0 24px;
}

.carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(-90deg, var(--navy) 0%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 40px;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 400px;
  min-width: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.6s ease forwards;
}

.carousel-slide:nth-child(1) { animation-delay: 0.1s; }
.carousel-slide:nth-child(2) { animation-delay: 0.2s; }
.carousel-slide:nth-child(3) { animation-delay: 0.3s; }
.carousel-slide:nth-child(4) { animation-delay: 0.4s; }
.carousel-slide:nth-child(5) { animation-delay: 0.5s; }
.carousel-slide:nth-child(6) { animation-delay: 0.6s; }
.carousel-slide:nth-child(7) { animation-delay: 0.7s; }
.carousel-slide:nth-child(8) { animation-delay: 0.8s; }
.carousel-slide:nth-child(9) { animation-delay: 0.9s; }
.carousel-slide:nth-child(10) { animation-delay: 1s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-slide .twitter-tweet {
  margin: 0 !important;
}

/* CONTROLS */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary-light);
  width: 24px;
  border-radius: 4px;
}

.reviews-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-reviews-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: white;
  color: var(--gray-900);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-reviews-follow:hover {
  background: var(--gray-100);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.btn-reviews-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-reviews-all:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.reviews-subtext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.84rem;
  color: var(--gray-500);
}

.reviews-subtext a {
  color: var(--primary-light);
  font-weight: 600;
}

.reviews-subtext a:hover {
  color: white;
}

.footer-twitter-link {
  gap: 8px;
}

.footer-reviews-link {
  color: var(--primary-light) !important;
  font-weight: 500;
}

.footer-reviews-link:hover {
  color: white !important;
}

/* ===========================
   EMPTY STATE
=========================== */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* HEADER mobile */
  .header-cta { display: none; }
  .nav { display: none; }
  .header-inner { height: 56px; gap: 12px; }
  .logo { font-size: 1rem; gap: 6px; }
  .logo-mark-img { width: 30px; height: 30px; }

  /* HERO mobile */
  .hero { padding: 90px 0 50px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-pill { font-size: 0.72rem; padding: 5px 12px; margin-bottom: 16px; }
  .hero-trust { gap: 12px; flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-lg { padding: 14px 24px; font-size: 0.9rem; }

  /* SECTION */
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.88rem; }

  /* EVENTS GRID mobile */
  .events-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { height: 320px; border-radius: 14px; }
  .card-body { padding: 16px; }
  .card-title { font-size: 1.1rem; }
  .card-details { gap: 8px; margin-bottom: 12px; }
  .card-detail { font-size: 0.78rem; }
  .card-price-value { font-size: 1.1rem; }
  .card-cta { padding: 9px 18px; font-size: 0.82rem; }
  .card-cat { top: 12px; left: 12px; font-size: 0.65rem; padding: 4px 10px; }
  .filters { gap: 6px; margin-bottom: 20px; }
  .filter-btn { padding: 6px 14px; font-size: 0.78rem; }

  /* REVIEWS mobile */
  .carousel-wrapper { padding: 4px 0 16px; }
  .carousel-slide { flex: 0 0 300px; }
  .carousel-track { padding: 0 16px; gap: 12px; }
  .carousel-controls { gap: 10px; margin-bottom: 20px; }
  .carousel-btn { width: 38px; height: 38px; }
  .carousel-fade { width: 40px; }
  .reviews-actions { flex-direction: column; gap: 10px; }
  .btn-reviews-follow, .btn-reviews-all {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.88rem;
  }
  .reviews-subtext { font-size: 0.78rem; }

  /* TRUST mobile */
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-card { padding: 20px 18px; border-radius: 12px; }
  .trust-card-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
  .trust-card h3 { font-size: 0.92rem; }
  .trust-card p { font-size: 0.82rem; }

  /* FOOTER mobile */
  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-desc { font-size: 0.85rem; }
  .footer-bottom { font-size: 0.75rem; padding: 16px 0; }
}

@media (max-width: 380px) {
  .card { height: 280px; }
  .card-body { padding: 14px; }
  .card-title { font-size: 1rem; }
  .card-footer { gap: 8px; padding-top: 10px; }
  .card-price-value { font-size: 1rem; }
  .card-cta { padding: 8px 14px; font-size: 0.78rem; }
  .hero h1 { font-size: 1.5rem; }
  .carousel-slide { flex: 0 0 270px; }
}
