/* =========================================================
   XsitePro-SEO — Main Stylesheet
   ========================================================= */

/* --- Variables --- */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e42;
  --navy-light: #243d57;
  --gold:       #f5a623;
  --gold-dark:  #d4891a;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --text:       #2c3e50;
  --text-muted: #64748b;
  --border:     #e2e8f0;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg:  0 8px 40px rgba(13,27,42,0.18);
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono:  'SFMono-Regular', Consolas, monospace;
  --transition: 0.22s ease;
  --max-w:      1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

/* Logo */
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo:hover { color: var(--white); }
.logo-x { color: var(--gold); }
.logo-seo { color: var(--gold); font-weight: 900; }

/* Nav */
.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.site-nav a {
  display: block;
  padding: 6px 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.site-nav .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  margin-left: 8px;
}
.site-nav .nav-cta:hover { background: var(--gold-dark); color: var(--navy) !important; }

/* Phone */
.header-phone {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,46,66,0.9) 0%, transparent 60%),
    linear-gradient(135deg, #0d1b2a 0%, #1a2e42 60%, #0d1b2a 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 80px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content .accent { color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--navy); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); color: var(--white); }
.btn--secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--gold);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 96px 0; }
.section--light { background: var(--off-white); }
.section--dark { background: var(--navy); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.65); }

.section-cta { text-align: center; margin-top: 48px; }

/* =========================================================
   FEATURES GRID
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* =========================================================
   SERVICES PREVIEW
   ========================================================= */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
  display: block;
}
.service-tile:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  color: var(--white);
}
.service-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-tile p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.65; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  quotes: none;
}
.testimonial-card cite {
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
  font-size: 0.9rem;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.cta-band p { color: var(--navy-mid); font-size: 1rem; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-band .btn--primary:hover { background: var(--navy-mid); color: var(--white); }
.cta-band .btn--outline { border-color: var(--navy); color: var(--navy); }
.cta-band .btn--outline:hover { background: rgba(13,27,42,0.1); color: var(--navy); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.page-hero--sm { padding: 56px 0; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* =========================================================
   CONTENT BODY (single pages)
   ========================================================= */
.content-body {
  padding-block: 72px;
  max-width: 800px;
  margin-inline: auto;
}
.content-body h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  letter-spacing: -0.3px;
}
.content-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.content-body p { margin-bottom: 18px; line-height: 1.8; color: var(--text); }
.content-body ul, .content-body ol {
  margin: 0 0 20px 24px;
  line-height: 1.85;
  color: var(--text);
}
.content-body li { margin-bottom: 6px; }
.content-body blockquote {
  border-left: 4px solid var(--gold);
  margin: 32px 0;
  padding: 20px 28px;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}
.content-body blockquote p { margin: 0; }
.content-body strong { color: var(--navy); }
.content-body a { color: var(--gold-dark); text-decoration: underline; }
.content-body a:hover { color: var(--gold); }
.content-body hr { border: none; border-top: 2px solid var(--border); margin: 48px 0; }

/* =========================================================
   BLOG LIST
   ========================================================= */
.blog-list {
  padding-block: 72px;
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.blog-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-card-meta time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(245,166,35,0.12);
  color: var(--gold-dark);
  padding: 2px 10px;
  border-radius: 100px;
}
.blog-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.blog-card h2 a { color: var(--navy); text-decoration: none; }
.blog-card h2 a:hover { color: var(--gold-dark); }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.read-more { font-size: 0.88rem; font-weight: 700; color: var(--gold-dark); }
.read-more:hover { color: var(--gold); }
.empty-state { color: var(--text-muted); text-align: center; padding: 48px; }

/* =========================================================
   FORMS
   ========================================================= */
.contact-form,
.discovery-form {
  margin-top: 36px;
  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: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0aec0; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo--footer {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 10px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  text-align: center;
}

/* =========================================================
   404 PAGE
   ========================================================= */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
}
.error-content {
  text-align: center;
  padding-block: 80px;
}
.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -4px;
}
.error-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.error-content p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* =========================================================
   CASINO SPOTLIGHT
   ========================================================= */
.casino-spotlight {
  position: relative;
  background: var(--navy);
  border-top: 1px solid rgba(245,166,35,0.25);
  border-bottom: 1px solid rgba(245,166,35,0.25);
  padding: 100px 0;
  overflow: hidden;
}

.casino-spotlight-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(245,166,35,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(26,46,66,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #0d1b2a 0%, #1a2e42 60%, #0d1b2a 100%);
  pointer-events: none;
}

.casino-spotlight-bg::before {
  content: '♠';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28rem;
  color: rgba(245,166,35,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.casino-spotlight-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.casino-spotlight-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.casino-spotlight-left h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.casino-spotlight-accent {
  color: var(--gold);
}

.casino-spotlight-left p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}

/* Right card */
.casino-spotlight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(245,166,35,0.1);
}

.cs-service {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cs-service:first-child { padding-top: 0; }

.cs-service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px rgba(245,166,35,0.6);
}

.cs-service-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cs-service-body strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.cs-service-body span {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cs-service-footer {
  margin-top: 20px;
  text-align: center;
}

.cs-service-footer span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .casino-spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .casino-spotlight-left p { max-width: 100%; }
  .casino-spotlight-bg::before { display: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Hamburger kicks in before the nav overflows */
@media (max-width: 960px) {
  .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 16px; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.1); z-index: 99; }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
}

@media (max-width: 680px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding-block: 60px; }
  .section { padding: 60px 0; }
  .cta-band { padding: 56px 0; }
}

/* v2 — 2026-05-24 */
