/* =====================================================
   BLUE HORSE ENTERPRISES — MAIN STYLESHEET
   Sports eCommerce | Navy / Dark Blue / White / Gold
   ===================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --navy: #071b3d;
  --navy-2: #0c2757;
  --deep-blue: #0f3460;
  --blue-accent: #1a4d8f;
  --gold: #d4af37;
  --gold-light: #f0d873;
  --gold-dark: #a8842a;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --grey-100: #eef1f6;
  --grey-400: #8a93a6;
  --grey-700: #3a4256;
  --ink: #101a30;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(7, 27, 61, 0.08);
  --shadow-md: 0 12px 30px rgba(7, 27, 61, 0.14);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.35);

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.15;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }

/* ---------- Loading Animation ---------- */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 64px; height: 64px;
  border: 4px solid rgba(212,175,55,0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(212,175,55,0.45); }
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--deep-blue); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(7, 27, 61, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: 1240px; margin: 0 auto;
  gap: 18px;
  flex-wrap: nowrap;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.main-nav { display: flex; gap: 22px; flex-wrap: nowrap; white-space: nowrap; }
.main-nav a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative; color: var(--white);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.icon-btn:hover { background: rgba(255,255,255,0.12); }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; color: var(--white);
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); transition: var(--transition); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, var(--deep-blue) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=1600&q=70') center/cover;
  opacity: 0.22;
  mix-blend-mode: luminosity;
}
.hero::after {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 24px;
  margin: 0 auto 0 0;
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  color: var(--grey-100);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 50px;
  margin-top: 60px;
  padding: 24px;
}
.hero-stats div { color: var(--white); }
.hero-stats strong {
  display: block; font-family: var(--font-display);
  font-size: 2rem; color: var(--gold);
}
.hero-stats span { font-size: 0.85rem; color: var(--grey-100); }

/* ---------- Section Headings ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head .eyebrow { color: var(--gold-dark); border-color: var(--gold-dark); }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 12px 0 14px; }
.section-head p { color: var(--grey-700); }
.section-alt { background: var(--white); }

/* ---------- Categories ---------- */
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.category-card {
  position: relative; height: 260px; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.12); }
.category-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,27,61,0.9) 10%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
}
.category-card h3 { color: var(--white); font-size: 1.15rem; }

/* ---------- Product Cards ---------- */
.product-toolbar {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: 30px; padding: 10px 18px; flex: 1; max-width: 380px;
}
.search-box input {
  border: none; outline: none; width: 100%; font-family: var(--font-body); font-size: 0.95rem;
}
.filter-group { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  padding: 9px 18px; border-radius: 30px;
  background: var(--white); border: 1px solid var(--grey-100);
  font-size: 0.85rem; font-weight: 600; color: var(--grey-700);
  transition: var(--transition);
}
.filter-chip.active, .filter-chip:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-thumb { position: relative; height: 220px; overflow: hidden; background: var(--grey-100); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-thumb img { transform: scale(1.1); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  padding: 5px 10px; border-radius: 20px;
}
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 0.75rem; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.product-name { font-family: var(--font-display); font-size: 1.05rem; text-transform: none; letter-spacing: 0; color: var(--navy); }
.product-rating { color: var(--gold); font-size: 0.85rem; }
.product-rating span { color: var(--grey-400); margin-left: 4px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.product-price { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
.product-price del { color: var(--grey-400); font-size: 0.85rem; margin-right: 6px; font-weight: 400; }
.add-cart-btn {
  background: var(--navy); color: var(--white);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1.1rem;
}
.add-cart-btn:hover { background: var(--gold); color: var(--navy); transform: rotate(90deg); }
.no-results { text-align: center; padding: 60px 0; color: var(--grey-400); display: none; }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px;
}
.why-card {
  background: var(--white); padding: 34px 26px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.6rem;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; text-transform: none; }
.why-card p { color: var(--grey-700); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonial-track {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px;
}
.testimonial-card {
  background: var(--navy); color: var(--white);
  padding: 32px; border-radius: var(--radius-md);
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: Georgia, serif; font-size: 4rem;
  color: var(--gold); position: absolute; top: 8px; left: 18px; opacity: 0.5;
}
.testimonial-quote { position: relative; z-index: 1; margin-bottom: 20px; color: var(--grey-100); font-size: 0.95rem; }
.testimonial-user { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: var(--navy);
}
.testimonial-user strong { display: block; font-size: 0.92rem; }
.testimonial-user span { font-size: 0.78rem; color: var(--gold); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(120deg, var(--navy), var(--deep-blue));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.newsletter::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
}
.newsletter h2 { color: var(--white); margin-bottom: 10px; }
.newsletter p { color: var(--grey-100); margin-bottom: 28px; }
.newsletter-form {
  display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 30px; border: none; font-family: var(--font-body);
}
.newsletter-msg { margin-top: 14px; font-size: 0.88rem; color: var(--gold-light); min-height: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--grey-100); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p, .footer-col li { font-size: 0.88rem; color: var(--grey-400); margin-bottom: 10px; }
.footer-col a { color: var(--grey-400); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-logo { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; margin-bottom: 14px; text-transform: uppercase; }
.footer-logo span { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-bottom {
  padding: 22px 0; text-align: center; font-size: 0.82rem; color: var(--grey-400);
}
.footer-bottom a { color: var(--gold); }

/* ---------- Page Banner (inner pages) ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--navy), var(--deep-blue));
  padding: 70px 0 60px; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1400&q=60') center/cover;
  opacity: 0.18;
}
.page-banner h1 { color: var(--white); position: relative; z-index: 1; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.breadcrumb { position: relative; z-index: 1; margin-top: 10px; font-size: 0.85rem; color: var(--grey-100); }
.breadcrumb a { color: var(--gold); }

/* ---------- About Page ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { height: 460px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--gold); color: var(--navy);
  padding: 16px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-display);
}
.about-badge strong { display: block; font-size: 1.6rem; }
.about-text .eyebrow { color: var(--gold-dark); border-color: var(--gold-dark); }
.about-text h2 { margin: 12px 0 18px; font-size: 2.2rem; }
.about-text p { color: var(--grey-700); margin-bottom: 16px; }
.highlight-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.highlight-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.highlight-list li::before { content: '\2713'; background: var(--gold); color: var(--navy); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
.mv-card { background: var(--white); padding: 36px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); }
.mv-card h3 { margin-bottom: 12px; }
.mv-card p { color: var(--grey-700); }

.stats-strip { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; background: var(--navy); border-radius: var(--radius-lg); padding: 46px; margin-top: 60px; }
.stats-strip div { text-align: center; color: var(--white); flex: 1; min-width: 140px; }
.stats-strip strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); }
.stats-strip span { font-size: 0.85rem; color: var(--grey-100); }

/* ---------- Services Page ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card {
  background: var(--white); padding: 40px 30px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); background: var(--navy); }
.service-card:hover h3, .service-card:hover p { color: var(--white); }
.service-card:hover .why-icon,
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--navy); }
.service-icon {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px; transition: var(--transition);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; text-transform: none; transition: var(--transition); }
.service-card p { color: var(--grey-700); font-size: 0.92rem; transition: var(--transition); }
.service-num { position: absolute; top: 14px; right: 20px; font-family: var(--font-display); font-size: 2.4rem; color: var(--grey-100); font-weight: 700; }
.service-card:hover .service-num { color: rgba(255,255,255,0.08); }

/* ---------- Auth Forms ---------- */
.auth-wrap {
  min-height: calc(100vh - 340px);
  display: flex; align-items: center; justify-content: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, var(--off-white), var(--grey-100));
}
.auth-card {
  background: var(--white); width: 100%; max-width: 440px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 46px 40px; position: relative; overflow: hidden;
}
.auth-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)); }
.auth-card h2 { text-align: center; margin-bottom: 6px; }
.auth-card .sub { text-align: center; color: var(--grey-700); font-size: 0.9rem; margin-bottom: 30px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-100); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--off-white);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.15); outline: none; background: var(--white);
}
.field small.error { display: none; color: #c0392b; font-size: 0.78rem; margin-top: 6px; }
.field.invalid input, .field.invalid textarea { border-color: #c0392b; }
.field.invalid small.error { display: block; }
.pass-wrap { position: relative; }
.pass-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--grey-400); font-size: 0.82rem; font-weight: 700; }
.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1; }
.check-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; font-size: 0.85rem; color: var(--grey-700); }
.check-row input { margin-top: 3px; }
.auth-foot { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--grey-700); }
.auth-foot a { color: var(--gold-dark); font-weight: 700; }
.form-msg { text-align: center; font-size: 0.85rem; margin-top: 14px; min-height: 18px; }
.form-msg.success { color: #1e824c; }
.form-msg.error { color: #c0392b; }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card p { color: var(--grey-100); margin-bottom: 26px; font-size: 0.92rem; }
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-item .ic {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(212,175,55,0.18);
  color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.92rem; }
.contact-item span { font-size: 0.86rem; color: var(--grey-100); }
.map-box {
  margin-top: 26px; height: 200px; border-radius: var(--radius-md); overflow: hidden;
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-2));
  display: flex; align-items: center; justify-content: center; color: var(--grey-100); font-size: 0.85rem; text-align: center; flex-direction: column; gap: 10px;
  border: 1px dashed rgba(212,175,55,0.4);
}
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }

/* ---------- Support Page ---------- */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-bottom: 70px; }
.help-card { background: var(--white); padding: 30px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.help-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.help-card .why-icon { margin-bottom: 16px; }
.help-card h3 { font-size: 1rem; margin-bottom: 8px; text-transform: none; }
.help-card p { font-size: 0.86rem; color: var(--grey-700); }

.faq-item { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 26px; font-weight: 600; color: var(--navy); font-family: var(--font-display);
  text-transform: none; letter-spacing: 0; font-size: 1rem;
}
.faq-question .plus { color: var(--gold); font-size: 1.3rem; transition: transform var(--transition); }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 26px; }
.faq-item.open .faq-answer { max-height: 220px; padding: 0 26px 22px; }
.faq-answer p { color: var(--grey-700); font-size: 0.92rem; }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 860px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-content h2 { margin-top: 30px; margin-bottom: 14px; font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--grey-700); margin-bottom: 12px; font-size: 0.95rem; }
.legal-content li { margin-left: 22px; list-style: disc; }
.legal-updated { color: var(--gold-dark); font-weight: 700; font-size: 0.85rem; margin-bottom: 30px; display: block; }

/* ---------- Scroll to top ---------- */
#scroll-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 400;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); font-size: 1.1rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
}
#scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ---------- Chatbot ---------- */
#chatbot-toggle {
  position: fixed; bottom: 30px; right: 90px; z-index: 401;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition);
}
#chatbot-toggle:hover { transform: scale(1.08); }
#chatbot-window {
  position: fixed; bottom: 100px; right: 30px; z-index: 402;
  width: 320px; max-width: 88vw; max-height: 440px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); overflow: hidden;
  display: flex; flex-direction: column;
  transform: scale(0.9) translateY(20px); opacity: 0; visibility: hidden;
  transform-origin: bottom right;
  transition: var(--transition);
}
#chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; visibility: visible; }
.chat-header {
  background: var(--navy); color: var(--white); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header strong { font-family: var(--font-display); font-size: 0.95rem; }
.chat-header span { font-size: 0.72rem; color: var(--gold); display: block; }
.chat-close { color: var(--white); font-size: 1.2rem; }
.chat-body { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; background: var(--off-white); min-height: 220px; max-height: 260px; }
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 0.85rem; line-height: 1.4; }
.chat-msg.bot { background: var(--white); color: var(--ink); align-self: flex-start; box-shadow: var(--shadow-sm); border-bottom-left-radius: 3px; }
.chat-msg.user { background: var(--navy); color: var(--white); align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-options { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 14px; background: var(--off-white); }
.chat-option-btn { background: var(--white); border: 1px solid var(--grey-100); padding: 7px 12px; border-radius: 20px; font-size: 0.76rem; color: var(--navy); font-weight: 600; transition: var(--transition); }
.chat-option-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.chat-input-row { display: flex; border-top: 1px solid var(--grey-100); }
.chat-input-row input { flex: 1; border: none; padding: 14px 16px; font-size: 0.85rem; outline: none; }
.chat-input-row button { padding: 0 18px; background: var(--navy); color: var(--gold); font-weight: 700; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1150px) {
  .header-actions .btn { display: none; }
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; padding: 30px; gap: 6px; transform: translateX(-100%); transition: var(--transition); overflow-y: auto; white-space: normal; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; white-space: normal; }
  .nav-toggle { display: flex; }
}
@media (max-width: 860px) {
  .hero-content { margin: 0 auto; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; text-align: center; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .logo { font-size: 1.05rem; }
  .logo-mark { width: 32px; height: 32px; font-size: 0.9rem; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .field-row { flex-direction: column; gap: 0; }
  .stats-strip { flex-direction: column; }
  #chatbot-window { right: 16px; width: calc(100vw - 32px); }
  #chatbot-toggle { right: 76px; }
  #scroll-top { right: 16px; }
}
