/* ============================================
   FALCON RIDE - Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A2540;
  --teal: #4A90A4;
  --gold: #D4AF37;
  --gold-dark: #B8941F;
  --navy-dark: #051628;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
  transition: transform 0.3s;
}

.navbar-logo:hover img { transform: scale(1.1); }

.navbar-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.navbar-logo span em {
  font-style: normal;
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--teal);
  background: rgba(74,144,164,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover { background: var(--teal); color: #fff; }

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  box-shadow: 0 4px 15px rgba(10,37,64,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  box-shadow: 0 6px 20px rgba(10,37,64,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(212,175,55,0.5);
}

.btn-gold-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

.btn-white-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-white-outline:hover { background: #fff; color: var(--navy); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--teal); background: rgba(74,144,164,0.1); }
.mobile-menu .mobile-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.mobile-menu .btn { width: 100%; }

@media (max-width: 1023px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--gray-100);
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.card-hover-up:hover { transform: translateY(-6px); }

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-header p { font-size: 1.125rem; color: var(--gray-500); }

/* Grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-3, .grid-2, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

/* ============================================
   HERO PAGES (gradient bg)
   ============================================ */
.page-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   ICON CIRCLE
   ============================================ */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-circle-lg {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  transition: transform 0.3s;
}
.card:hover .icon-circle-lg { transform: scale(1.1); }

.icon-circle-md {
  width: 56px; height: 56px;
  background: rgba(74,144,164,0.15);
  transition: transform 0.3s;
}
.card:hover .icon-circle-md { transform: scale(1.1); }

.icon-circle-sm {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.2);
}

/* SVG icons inline */
.icon { display: inline-block; }

/* ============================================
   SCROLLING BANNER
   ============================================ */
.banner-track {
  display: flex;
  width: 200%;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}
.banner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  padding: 0 3rem;
}
.banner-item span { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.banner-item .emoji { font-size: 2rem; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 1023px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.footer-brand span { font-size: 1.25rem; font-weight: 800; }
.footer-brand em { font-style: normal; color: var(--teal); }

.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

.footer-title { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 1.25rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--teal); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-links a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  transition: all 0.3s;
}
.social-links a:hover { background: var(--teal); transform: scale(1.1); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.4); }

/* ============================================
   STORE BADGES
   ============================================ */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.store-badges a { display: block; transition: transform 0.3s; }
.store-badges a:hover { transform: scale(1.05); }
.store-badges img { height: 56px; }

/* ============================================
   STARS
   ============================================ */
.stars { display: flex; gap: 2px; }
.star { color: var(--gold); font-size: 1.1rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.accordion-item {
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
  margin-bottom: 1rem;
}
.accordion-item:hover { border-color: var(--teal); }

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  font-family: inherit;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--teal); }

.accordion-trigger .chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--teal);
}
.accordion-item.open .chevron { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.accordion-item.open .accordion-content {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.2); }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--gold); margin-bottom: 0.5rem; }
.stat-label { font-size: 1.1rem; color: rgba(255,255,255,0.85); }

/* ============================================
   DOT PATTERN BG
   ============================================ */
.dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ============================================
   MISC
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-white { color: #fff; }
.text-muted { color: var(--gray-500); }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 20px; }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.shadow-xl { box-shadow: 0 20px 50px rgba(0,0,0,0.2); }

.bg-white { background: #fff; }
.bg-gray-50 { background: var(--gray-50); }
.bg-navy-gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); }
.bg-gold-gradient { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
