/* =============================================
   HOBBY SYNDICATE — styles.css
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #00c2ff;
  --gold-light: #66dfff;
  --gold-dark:  #0090cc;
  --red:        #ff6b1a;
  --bg:         #060d1a;
  --bg-2:       #080f20;
  --bg-3:       #0a1228;
  --surface:    #0f1a30;
  --surface-2:  #162038;
  --border:     rgba(0,194,255,0.1);
  --text:       #e8f0ff;
  --text-muted: #6a82a8;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 8px 32px rgba(0,0,0,0.6);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,13,26,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.nav-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.logo:hover .logo-img { opacity: 0.88; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(135deg, var(--red), #cc5200);
  color: #fff !important;
  font-weight: 700 !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,194,255,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: rgba(9,9,15,0.97);
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }
.mobile-cta {
  color: var(--gold) !important;
  font-weight: 700 !important;
}
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,194,255,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 50%, rgba(255,107,26,0.05) 0%, transparent 60%),
              var(--bg);
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(48px, 5vw, 120px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-sub strong { color: var(--gold); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(0,194,255,0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,194,255,0.45);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
.btn-lg  { padding: 15px 34px; font-size: 1rem; }
.btn-xl  { padding: 18px 40px; font-size: 1.05rem; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); }
.stat-label  { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.03em; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Floating Cards Showcase */
.hero-cards-showcase {
  position: relative;
  width: 100%;
  height: 500px;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  width: 155px;
  height: 216px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,194,255,0.15);
  animation: cardFloat 6s ease-in-out infinite;
  background: #0a1228;
}

.floating-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-1 {
  left: 40px; top: 20px;
  animation-delay: 0s;
}
.card-2 {
  left: 200px; top: 130px;
  animation-delay: -2s;
}
.card-3 {
  left: 10px; top: 270px;
  animation-delay: -4s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50%       { transform: translateY(-16px) rotate(-1deg); }
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  animation: shineShift 4s ease-in-out infinite;
}

@keyframes shineShift {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}

.card-inner {
  position: absolute;
  bottom: 12px; left: 10px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.card-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(0,0,0,0.5);
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}
.card-sport {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(12px); opacity: 0.3; }
}

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
  background: linear-gradient(90deg, #0090cc, #00c2ff, #0090cc);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 0.85rem;
  font-weight: 700;
  color: #000;
  padding: 0 24px;
}
.ticker-sep {
  font-weight: 900;
  color: rgba(0,0,0,0.4);
  padding: 0 4px;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--bg-2);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* =============================================
   FEATURED CARDS GRID
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.card-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(0,194,255,0.2);
}
.card-item.featured-card {
  border-color: rgba(0,194,255,0.25);
  background: linear-gradient(145deg, #1f1f32, #191928);
}

.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-mock {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-mock.baseball  { background: linear-gradient(145deg, #1a2e0f, #0d1a07); }
.card-mock.basketball { background: linear-gradient(145deg, #2e1a0f, #1a0d07); }
.card-mock.football  { background: linear-gradient(145deg, #2e0f1a, #1a0710); }
.card-mock.soccer    { background: linear-gradient(145deg, #0f1a2e, #070d1a); }

.card-mock-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.card-mock-content {
  position: relative;
  text-align: center;
}
.card-mock-grade {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(0,0,0,0.6);
  padding: 3px 10px;
  border-radius: 4px;
  margin: 0 auto 6px;
  width: fit-content;
}
.card-mock-title {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}
.card-mock-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Real card images from eBay */
.card-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}
.card-item:hover .card-real-img {
  transform: scale(1.04);
}

/* Was/sale price */
.card-price-was {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-top: -2px;
}

/* Extra grade styles */
.grade-sgc { background: rgba(0,160,80,0.2); color: #44dd88; border: 1px solid rgba(68,221,136,0.2); }
.grade-raw  { background: rgba(120,120,160,0.2); color: #aaaacc; border: 1px solid rgba(170,170,204,0.2); }

.card-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}
.card-badge.hot  { background: var(--red); color: #fff; }
.card-badge.new  { background: #00a86b; color: #fff; }
.card-badge.rare { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; }
.card-badge.sale { background: var(--red); color: #fff; }

.card-info { padding: 20px; }
.card-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.card-grade {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}
.grade-psa { background: rgba(0,80,200,0.2); color: #6aadff; border: 1px solid rgba(106,173,255,0.2); }
.grade-bgs { background: rgba(200,30,30,0.2); color: #ff7777; border: 1px solid rgba(255,120,120,0.2); }
.card-sport-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}
.card-buy-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--red), #cc5200);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,107,26,0.4);
}

/* =============================================
   CATEGORIES GRID
   ============================================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,194,255,0.3);
  background: var(--surface-2);
}
.cat-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 4px;
}
.cat-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.cat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cat-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
  padding-top: 8px;
  transition: gap var(--transition);
}
.category-card:hover .cat-link { letter-spacing: 0.03em; }

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,194,255,0.2);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
}
.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* eBay verified badge above testimonials */
.ebay-verified-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,194,255,0.06);
  border: 1px solid rgba(0,194,255,0.18);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ebay-store-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ebay-verified-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.ebay-verified-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}
.ebay-verified-stats {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.ebay-verified-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  transition: opacity var(--transition);
}
.ebay-verified-link:hover { opacity: 0.75; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,194,255,0.2);
}
.stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), #cc5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
}
.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.65;
}
.cta-actions { margin-bottom: 28px; }
.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}
.cta-trust span { display: flex; align-items: center; gap: 5px; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-input:focus {
  border-color: rgba(245,200,66,0.5);
  box-shadow: 0 0 0 3px rgba(0,194,255,0.08);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238888aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: var(--surface); color: var(--text); }

.form-textarea { resize: vertical; min-height: 130px; }

.form-submit { align-self: flex-start; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,168,107,0.12);
  border: 1px solid rgba(0,168,107,0.3);
  border-radius: var(--radius-sm);
  color: #00c97e;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 18px;
}
.form-success[hidden] { display: none; }
.form-success svg { stroke: #00c97e; flex-shrink: 0; }

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.ci-icon {
  width: 40px; height: 40px;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

.ci-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.ci-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 70px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand {
  max-width: 260px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-copy a {
  color: var(--gold);
  transition: opacity var(--transition);
}
.footer-copy a:hover { opacity: 0.8; }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text); }

/* =============================================
   ANIMATIONS — fade-in on scroll
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cards-showcase { display: none; }
  .hero-content { max-width: 100%; }
}

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

  .hero { padding: 90px 0 60px; text-align: center; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-sub    { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }

  .section { padding: 70px 0; }

  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .cards-grid        { grid-template-columns: 1fr; }
  .categories-grid   { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-links      { flex-direction: column; gap: 32px; }
  .cta-trust         { gap: 12px; font-size: 0.78rem; }
}
