/* ============================================================
   LAS VEGAS INTERNATIONAL BUSINESS SOLUTIONS
   Shared Stylesheet — Logo colors: Orange #F97316 → Magenta #D946EF → Indigo #4F46E5
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

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

:root {
  --orange:    #F97316;
  --magenta:   #D946EF;
  --indigo:    #4F46E5;
  --violet:    #7C3AED;
  --deep:      #1E0A3C;
  --deeper:    #130728;
  --surface:   #261448;
  --surface2:  #2E1A57;
  --text:      #F0EBF8;
  --text-dim:  #A89FC2;
  --text-muted:#6B5F88;
  --white:     #FFFFFF;

  --grad-brand: linear-gradient(135deg, var(--orange) 0%, var(--magenta) 50%, var(--indigo) 100%);
  --grad-brand-r: linear-gradient(135deg, var(--indigo) 0%, var(--magenta) 50%, var(--orange) 100%);
  --grad-soft: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(217,70,239,0.15) 50%, rgba(79,70,229,0.15) 100%);
  --grad-bg: linear-gradient(160deg, #1E0A3C 0%, #130728 40%, #0F062B 100%);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--grad-bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Ambient background orbs */
body::before {
  content: '';
  position: fixed; top: -20%; left: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(217,70,239,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed; bottom: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(19,7,40,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217,70,239,0.1);
  transition: all 0.4s;
}
.navbar.scrolled {
  height: 62px;
  background: rgba(19,7,40,0.97);
  border-bottom-color: rgba(217,70,239,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 44px; width: auto; object-fit: contain;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-text .brand { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-logo-text .sub { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }
.nav-links { display: flex; gap: 0.2rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--text-dim); text-decoration: none;
  padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: all 0.25s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(217,70,239,0.1); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--magenta);
}
.nav-cta {
  font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--grad-brand); color: var(--white);
  border: none; padding: 0.6rem 1.4rem; border-radius: 6px;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(217,70,239,0.3);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(217,70,239,0.45); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ── PAGE WRAPPER ── */
.page-main { padding-top: 72px; position: relative; z-index: 1; }

/* ── GRADIENT TEXT ── */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION PATTERNS ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; width: 24px; height: 2px;
  background: var(--grad-brand); border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 1.2rem;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-dim);
  line-height: 1.75; font-weight: 300; max-width: 600px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 1.8rem; border-radius: 8px;
  cursor: pointer; text-decoration: none; border: none;
  transition: all 0.3s;
}
.btn-gradient {
  background: var(--grad-brand); color: var(--white);
  box-shadow: 0 4px 24px rgba(217,70,239,0.35);
}
.btn-gradient:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(217,70,239,0.5); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(217,70,239,0.4);
}
.btn-outline:hover { border-color: var(--magenta); color: var(--white); background: rgba(217,70,239,0.08); }
.btn-ghost {
  background: transparent; color: var(--text-dim);
  border: 1.5px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ── CARDS ── */
.card {
  background: rgba(38,20,72,0.6);
  border: 1px solid rgba(217,70,239,0.12);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s;
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-soft); opacity: 0; transition: opacity 0.35s;
  border-radius: 16px;
}
.card:hover { border-color: rgba(217,70,239,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(79,70,229,0.2); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }

/* ── ICON BADGE ── */
.icon-badge {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(217,70,239,0.3);
}

/* ── DIVIDER ── */
.grad-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,70,239,0.4), rgba(79,70,229,0.4), transparent);
  margin: 0;
}

/* ── STAT PILL ── */
.stat-pill {
  text-align: center; padding: 1.5rem 1rem;
}
.stat-pill .num {
  font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; line-height: 1;
  background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-pill .label { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.35rem; letter-spacing: 0.05em; }

/* ── FORM ELEMENTS ── */
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(38,20,72,0.7); border: 1.5px solid rgba(217,70,239,0.15);
  color: var(--text); padding: 0.85rem 1.1rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 400;
  outline: none; transition: all 0.3s; width: 100%; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(217,70,239,0.5); background: rgba(38,20,72,0.9);
  box-shadow: 0 0 0 3px rgba(217,70,239,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--surface); }

/* ── FOOTER ── */
.site-footer {
  background: rgba(13,6,28,0.95);
  border-top: 1px solid rgba(217,70,239,0.12);
  padding: 4rem 3rem 2rem;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.75; max-width: 300px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-dim); text-decoration: none; transition: color 0.25s; }
.footer-col ul a:hover { color: var(--magenta); }
.footer-location { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-location-item { display: flex; gap: 0.7rem; font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }
.footer-location-item .loc-icon { color: var(--magenta); flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(38,20,72,0.8); border: 1px solid rgba(217,70,239,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); text-decoration: none; font-size: 0.9rem;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--grad-brand); border-color: transparent; color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(217,70,239,0.4); }
.footer-bottom {
  border-top: 1px solid rgba(217,70,239,0.08);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom a { color: var(--magenta); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(217,70,239,0.3); } 50% { box-shadow: 0 0 40px rgba(217,70,239,0.6); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.8rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--magenta); }
.breadcrumb span { color: var(--magenta); }

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 20px;
  background: rgba(217,70,239,0.15); color: var(--magenta);
  border: 1px solid rgba(217,70,239,0.25);
}
.badge-orange { background: rgba(249,115,22,0.15); color: var(--orange); border-color: rgba(249,115,22,0.25); }
.badge-indigo { background: rgba(79,70,229,0.15); color: #818CF8; border-color: rgba(79,70,229,0.25); }

/* ── PROGRESS BAR ── */
.progress-bar {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 3px;
  background: var(--grad-brand);
  transition: width 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── GLASS CARD ── */
.glass {
  background: rgba(38,20,72,0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar { padding: 0 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .navbar { padding: 0 1rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 3.5rem 1.2rem !important; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(13,6,28,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700;
  color: var(--text); text-decoration: none; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--magenta); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--text-dim); font-size: 1.5rem; cursor: pointer;
}
