/* ═══════════════════════════════════════════
   eSeats Ticket Marketplace — Global Styles
   Bing Ad Keywords: gmgn eseats
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #d4212d;
  --red-dark:  #aa1520;
  --red-pale:  #fdf2f3;
  --dark:      #0e1117;
  --dark2:     #181c26;
  --dark3:     #232736;
  --white:     #ffffff;
  --offwhite:  #f8f9fb;
  --gray-100:  #f1f3f5;
  --gray-200:  #e4e7ec;
  --gray-400:  #9aa0ad;
  --gray-600:  #5c6370;
  --gray-800:  #2b2f3a;
  --text:      #1a1d26;
  --gold:      #f5a623;
  --green:     #18a058;
  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.07);
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 44px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 5%; }
.section { padding: 72px 5%; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 300;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.nav-top {
  max-width: 1220px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; height: 62px; gap: 24px;
}
.logo {
  font-size: 24px; font-weight: 900; letter-spacing: -1px;
  color: var(--white); flex-shrink: 0;
}
.logo span { color: var(--red); }
.nav-search-wrap {
  flex: 1; max-width: 480px;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s;
}
.nav-search-wrap:focus-within { border-color: var(--red); }
.nav-search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  padding: 9px 14px; color: white; font-size: 13px; font-family: inherit;
}
.nav-search-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.nav-search-wrap button {
  background: var(--red); border: none; cursor: pointer;
  padding: 0 14px; height: 38px; color: white;
  display: flex; align-items: center;
}
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.nav-link-plain { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; transition: color 0.2s; padding: 4px 0; }
.nav-link-plain:hover { color: white; }
.nav-cta { background: var(--red); color: white; padding: 8px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 700; transition: background 0.2s; }
.nav-cta:hover { background: var(--red-dark); }
.nav-cats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.nav-cats-inner {
  max-width: 1220px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.nav-cats-inner::-webkit-scrollbar { display: none; }
.nav-cat {
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500;
  padding: 0 16px; height: 40px; display: flex; align-items: center;
  white-space: nowrap; transition: all 0.2s;
  border-bottom: 2px solid transparent; flex-shrink: 0;
}
.nav-cat:hover, .nav-cat.active { color: white; border-bottom-color: var(--red); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }
.mob-menu { display: none; flex-direction: column; background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.07); padding: 12px 5%; gap: 4px; }
.mob-menu.open { display: flex; }
.mob-menu a { color: rgba(255,255,255,0.7); font-size: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ── VALUE BAR ── */
.value-bar { background: var(--red); padding: 10px 5%; }
.value-inner { max-width: 1220px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 24px; }
.value-item { display: flex; align-items: center; gap: 7px; color: white; font-size: 13px; font-weight: 600; }
.value-sep { color: rgba(255,255,255,0.4); font-size: 16px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 60%, #1a0d12 100%);
  padding: 56px 5% 48px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(212,33,45,0.08) 0%, transparent 65%);
}
.hero-inner { max-width: 1220px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.hero-kw {
  display: inline-block; background: rgba(212,33,45,0.18); border: 1px solid rgba(212,33,45,0.35);
  color: #ff8a92; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 16px;
}
.hero h1 { font-size: clamp(30px, 5vw, 58px); font-weight: 900; color: white; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 10px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 32px; font-weight: 400; }
.search-bar {
  display: flex; max-width: 700px; margin: 0 auto 24px;
  background: white; border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.search-bar input { flex: 1; padding: 17px 22px; font-size: 16px; border: none; outline: none; font-family: inherit; color: var(--text); }
.search-bar button {
  background: var(--red); color: white; border: none; cursor: pointer;
  padding: 0 32px; font-size: 15px; font-weight: 700; font-family: inherit;
  display: flex; align-items: center; gap: 8px; transition: background 0.2s;
}
.search-bar button:hover { background: var(--red-dark); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.hero-tag-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500;
  padding: 6px 14px; border-radius: 100px; cursor: pointer; transition: all 0.2s;
}
.hero-tag-btn:hover { background: rgba(212,33,45,0.2); border-color: rgba(212,33,45,0.4); color: white; }

/* ── SECTION HEADS ── */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 10px; }
.sec-title { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.sec-view { font-size: 13px; color: var(--red); font-weight: 600; }
.sec-view:hover { text-decoration: underline; }

/* ── FEATURED EVENTS SLIDER ── */
.featured-section { background: var(--dark); padding: 56px 5%; }
.featured-section .sec-title { color: white; }
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feat-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 0.28s; background: var(--dark3);
}
.feat-card:hover { transform: translateY(-4px); }
.feat-img {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.feat-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s; }
.feat-card:hover .feat-img-bg { transform: scale(1.05); }
.feat-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,17,23,0.92) 0%, rgba(14,17,23,0.2) 60%, transparent 100%); }
.feat-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.feat-body { padding: 16px 18px 20px; }
.feat-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 4px; }
.feat-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 6px; line-height: 1.3; }
.feat-date { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.feat-foot { display: flex; align-items: center; justify-content: space-between; }
.feat-price { font-size: 13px; color: rgba(255,255,255,0.5); }
.feat-price strong { color: var(--gold); font-size: 16px; }
.feat-btn {
  background: var(--red); color: white; font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 6px; transition: background 0.2s;
}
.feat-btn:hover { background: var(--red-dark); }

/* ── EVENT CATEGORY CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 1220px; margin: 0 auto; }
.cat-card {
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1.5px solid var(--gray-200);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cat-img { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.cat-label { padding: 10px; text-align: center; font-size: 13px; font-weight: 700; color: var(--text); background: white; border-top: 1px solid var(--gray-200); }

/* ── EVENT LIST (browse) ── */
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1220px; margin: 0 auto; }
.ev-card {
  background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200); overflow: hidden;
  transition: all 0.25s; cursor: pointer;
}
.ev-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.ev-thumb {
  height: 150px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; position: relative;
}
.ev-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); }
.ev-body { padding: 14px 16px 16px; }
.ev-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 4px; }
.ev-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.ev-venue { font-size: 12px; color: var(--gray-600); margin-bottom: 10px; }
.ev-foot { display: flex; align-items: center; justify-content: space-between; }
.ev-price { font-size: 13px; color: var(--gray-600); }
.ev-price strong { color: var(--green); font-size: 15px; }
.ev-tickets { font-size: 12px; font-weight: 700; color: var(--red); background: var(--red-pale); padding: 5px 10px; border-radius: 5px; }

/* ── TRUST SECTION ── */
.trust-section { background: var(--offwhite); padding: 64px 5%; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1220px; margin: 0 auto; }
.trust-card { background: white; border-radius: var(--radius-lg); padding: 28px 24px; border: 1.5px solid var(--gray-200); text-align: center; transition: box-shadow 0.2s; }
.trust-card:hover { box-shadow: var(--shadow); }
.trust-icon { font-size: 36px; margin-bottom: 14px; }
.trust-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1220px; margin: 0 auto; }
.rev-card { background: white; border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--gray-200); transition: box-shadow 0.2s; }
.rev-card:hover { box-shadow: var(--shadow); }
.rev-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.rev-text { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--dark); color: var(--red); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rev-author strong { display: block; font-size: 14px; color: var(--text); }
.rev-author span { font-size: 12px; color: var(--gray-400); }

/* ── TRAVEL PACKAGES ── */
.travel-section { background: var(--dark); padding: 64px 5%; }
.travel-section .sec-title { color: white; }
.travel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1220px; margin: 0 auto; }
.travel-card { background: var(--dark3); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: transform 0.25s; border: 1px solid rgba(255,255,255,0.07); }
.travel-card:hover { transform: translateY(-4px); }
.travel-img { height: 180px; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 16px; position: relative; }
.travel-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%); }
.travel-img-content { position: relative; z-index: 2; }
.travel-img-content .badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; background: var(--gold); color: var(--dark); padding: 3px 8px; border-radius: 4px; margin-bottom: 4px; display: inline-block; }
.travel-img-content h4 { font-size: 18px; font-weight: 800; color: white; }
.travel-body { padding: 16px 18px 20px; }
.travel-location { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.travel-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 14px; }
.travel-foot { display: flex; align-items: center; justify-content: space-between; }
.travel-price { font-size: 12px; color: rgba(255,255,255,0.4); }
.travel-price strong { color: var(--gold); font-size: 16px; font-weight: 800; }
.travel-btn { background: var(--red); color: white; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 6px; }

/* ── CITIES ── */
.cities-wrap { max-width: 1220px; margin: 0 auto; }
.cities-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.city-pill {
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--gray-200); border-radius: 100px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  color: var(--text); transition: all 0.2s; cursor: pointer;
}
.city-pill:hover { background: var(--red); border-color: var(--red); color: white; }
.city-pill .flag { font-size: 16px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: linear-gradient(135deg, var(--dark) 0%, #1a0508 100%); padding: 64px 5%; }
.newsletter-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-size: 32px; font-weight: 800; color: white; letter-spacing: -0.5px; margin-bottom: 10px; }
.newsletter-inner p { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.newsletter-form input { flex: 1; padding: 15px 18px; border: none; outline: none; font-size: 14px; font-family: inherit; }
.newsletter-form button { background: var(--red); color: white; border: none; cursor: pointer; padding: 0 24px; font-size: 14px; font-weight: 700; font-family: inherit; white-space: nowrap; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--red-dark); }
.nl-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 12px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--red); padding: 56px 5%; text-align: center; }
.cta-banner h2 { font-size: 36px; font-weight: 900; color: white; letter-spacing: -1px; margin-bottom: 10px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--red); padding: 14px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 700; transition: all 0.2s; }
.btn-white:hover { background: var(--offwhite); transform: translateY(-1px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.6); color: white; padding: 14px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 600; transition: all 0.2s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── FOOTER ── */
footer { background: #07090e; padding: 56px 5% 0; }
.footer-inner { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-size: 26px; font-weight: 900; color: white; letter-spacing: -1px; margin-bottom: 12px; }
.footer-logo span { color: var(--red); }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 15px; transition: all 0.2s; cursor: pointer; }
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { max-width: 1220px; margin: 0 auto; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 20px; }
.footer-disclaimer { max-width: 1220px; margin: 0 auto; padding: 0 0 24px; font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--dark); padding: 80px 5% 56px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.07); }
.page-hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(212,33,45,0.07) 0%, transparent 60%); }
.page-hero-inner { max-width: 1220px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.breadcrumb a { color: var(--red); }
.page-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 900; color: white; letter-spacing: -1px; margin-bottom: 10px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.52); max-width: 520px; font-weight: 400; }

/* ── CONTACT FORM ── */
.contact-grid { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h3 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--red-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.ci-value { font-size: 15px; color: var(--text); font-weight: 600; }
.ci-value a { color: var(--text); }
.ci-value a:hover { color: var(--red); }
.form-card { background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); padding: 36px 32px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--gray-600); margin-bottom: 24px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; color: var(--text); background: white;
  transition: border-color 0.2s; outline: none; appearance: none;
}
.fg textarea { resize: vertical; min-height: 90px; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(212,33,45,0.09); }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-form { width: 100%; padding: 14px; background: var(--red); color: white; border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.2s; margin-top: 4px; }
.btn-form:hover { background: var(--red-dark); }
.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: var(--gray-400); margin-top: 10px; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 28px 0; }
.success-icon { width: 60px; height: 60px; border-radius: 50%; background: #ecfdf5; color: #059669; font-size: 28px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.form-success h3 { color: var(--text); margin-bottom: 8px; font-size: 20px; }
.form-success p { color: var(--gray-600); font-size: 14px; }

/* ── LEGAL ── */
.legal-body { max-width: 820px; margin: 0 auto; padding: 64px 5%; }
.legal-date { font-size: 13px; color: var(--gray-400); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.legal-body h2 { font-size: 22px; font-weight: 800; color: var(--text); margin: 36px 0 10px; }
.legal-body p, .legal-body li { font-size: 15px; color: var(--gray-600); line-height: 1.8; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 10px 0 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--red); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-inner > * { animation: fadeUp 0.6s ease both; }
.hero-inner > *:nth-child(2) { animation-delay: 0.08s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.16s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .nav-cats-bar { display: none; }
  .nav-search-wrap { max-width: 200px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .nav-search-wrap { display: none; }
  .search-bar { flex-direction: column; border-radius: var(--radius); }
  .search-bar input { border-radius: var(--radius) var(--radius) 0 0; }
  .search-bar button { border-radius: 0 0 var(--radius) var(--radius); padding: 14px; justify-content: center; }
  .form-row2 { grid-template-columns: 1fr; }
}
