/* ============================================================
   RAINBOW AGENCY — PREMIUM CSS
   Kerala Lottery Landing Page
   style.css
============================================================ */

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Brand rainbow */
  --clr-red:    #e74c3c;
  --clr-orange: #e67e22;
  --clr-yellow: #f1c40f;
  --clr-green:  #27ae60;
  --clr-blue:   #2980b9;
  --clr-indigo: #3498db;
  --clr-violet: #8e44ad;

  /* Gradients */
  --grad-rainbow: linear-gradient(135deg,#e74c3c,#e67e22,#f1c40f,#27ae60,#2980b9,#8e44ad);
  --grad-primary: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
  --grad-hero:    linear-gradient(160deg,#f5f7ff 0%,#eef4fd 45%,#fef9f0 100%);

  /* Text */
  --txt-dark:   #16162a;
  --txt-mid:    #4a4a6a;
  --txt-soft:   #8888aa;

  /* Surfaces */
  --white:      #ffffff;
  --bg-soft:    #f7f8ff;
  --card-bg:    rgba(255,255,255,0.88);
  --border:     rgba(200,200,230,0.45);

  /* Shadows */
  --sh-sm:  0 2px 14px rgba(0,0,0,.055);
  --sh-md:  0 8px 32px rgba(0,0,0,.09);
  --sh-lg:  0 20px 64px rgba(0,0,0,.11);

  /* Shape */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;

  /* Motion */
  --ease: all .3s cubic-bezier(.4,0,.2,1);

  /* Type */
  --font: 'Inter', sans-serif;
  --font-d: 'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--txt-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; transition:var(--ease); }
ul  { list-style:none; }
button { font-family:var(--font); }

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

.grad-text {
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section header */
.sec-head  { text-align:center; margin-bottom:60px; }
.sec-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg,rgba(103,126,234,.1),rgba(118,75,162,.1));
  border: 1px solid rgba(103,126,234,.28);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #667eea;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.9rem,4vw,2.75rem);
  font-weight: 800;
  color: var(--txt-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--txt-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Scroll-reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg,#e74c3c,#e67e22,#8e44ad);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 8px 26px rgba(231,76,60,.32);
  animation: gradShift 4s ease infinite;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(231,76,60,.48);
}

.btn-outline {
  background: rgba(255,255,255,.85);
  color: var(--txt-dark);
  border: 2px solid rgba(103,126,234,.25);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-sm);
}
.btn-outline:hover {
  transform: translateY(-3px);
  border-color: rgba(103,126,234,.55);
  box-shadow: var(--sh-md);
}

@keyframes gradShift {
  0%,100% { background-position:0% 50%; }
  50%      { background-position:100% 50%; }
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(200,200,230,.3);
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img { height:50px; width:auto; object-fit:contain; }

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

.nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--txt-dark);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad-rainbow);
  transition: width .3s ease;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.nav-active::after { width: 100%; }
.nav-link.nav-active { color: #667eea; }

.nav-cta-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg,#e74c3c,#8e44ad);
  color: #fff !important;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(231,76,60,.3);
  transition: var(--ease);
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(231,76,60,.42);
}
.nav-wa-btn {
  background: linear-gradient(135deg,#25d366,#128c7e) !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.35) !important;
}
.nav-wa-btn:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,.5) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--txt-dark);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 100px;
}

/* Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobDrift 10s ease-in-out infinite;
}
.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle,#e74c3c,#f39c12);
  opacity: .12; top: -140px; right: -80px;
  animation-delay: 0s;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle,#8e44ad,#2980b9);
  opacity: .11; bottom: 40px; left: -80px;
  animation-delay: 3.5s;
}
.blob-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle,#27ae60,#f1c40f);
  opacity: .09; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: 7s;
}
@keyframes blobDrift {
  0%,100% { transform:translate(0,0) scale(1); }
  33%     { transform:translate(24px,-24px) scale(1.06); }
  66%     { transform:translate(-18px,18px) scale(.94); }
}

/* Floating tickets */
.float-el {
  position: absolute;
  font-size: 2rem;
  opacity: .45;
  pointer-events: none;
  animation: floatUp 7s ease-in-out infinite;
}
.ft-1 { left:4%;  top:22%; font-size:2.4rem; animation-duration:6s;  animation-delay:0s; }
.ft-2 { left:91%; top:28%; font-size:1.9rem; animation-duration:8s;  animation-delay:1.5s; }
.ft-3 { left:12%; top:72%; font-size:2rem;   animation-duration:7s;  animation-delay:3s; }
.ft-4 { left:82%; top:68%; font-size:1.6rem; animation-duration:5.5s;animation-delay:.8s; }
.ft-5 { left:48%; top:8%;  font-size:1.7rem; animation-duration:9s;  animation-delay:2s; }
.ft-6 { left:68%; top:80%; font-size:1.5rem; animation-duration:6.5s;animation-delay:4s; }

@keyframes floatUp {
  0%,100% { transform:translateY(0) rotate(0deg);   opacity:.4; }
  25%     { transform:translateY(-18px) rotate(4deg); opacity:.6; }
  50%     { transform:translateY(-8px) rotate(-4deg); opacity:.5; }
  75%     { transform:translateY(-22px) rotate(3deg); opacity:.65; }
}

/* Hero inner */
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 5;
}

/* Authorized badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 22px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(39,174,96,.28);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  color: #1e8449;
  margin-bottom: 30px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #27ae60;
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow:0 0 0 0 rgba(39,174,96,.55); }
  50%     { box-shadow:0 0 0 8px rgba(39,174,96,0); }
}

/* Hero Image */
.hero-img-wrap { margin-bottom: 36px; }
.hero-img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.18));
  animation: heroImgFloat 5s ease-in-out infinite;
  border-radius: 20px;
}
@keyframes heroImgFloat {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-14px); }
}

/* Title */
.hero-title {
  font-size: clamp(2.4rem,6vw,4.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--txt-dark);
  margin-bottom: 22px;
  letter-spacing: -.025em;
}

/* Subtitle */
.hero-sub {
  font-size: clamp(.95rem,2vw,1.15rem);
  color: var(--txt-mid);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* CTA group */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats pill */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(200,200,230,.4);
  border-radius: var(--r-md);
  padding: 22px 40px;
  box-shadow: var(--sh-md);
}
.h-stat { display:flex; flex-direction:column; align-items:center; padding:0 30px; }
.h-stat strong {
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-stat span { font-size:.78rem; color:var(--txt-soft); font-weight:500; margin-top:4px; }
.h-divider  { width:1px; height:42px; background:rgba(150,150,200,.28); }

/* Wave */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width:100%; height:70px; }

/* ============================================================
   RESULTS SECTION
============================================================ */
.results-sec { padding:100px 0; background:var(--white); }

.results-datebar {
  text-align: center;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--txt-mid);
  font-weight: 500;
}
.results-datebar strong { color:var(--txt-dark); font-weight:700; }
.live-dot-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(231,76,60,.08);
  border: 1px solid rgba(231,76,60,.2);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--clr-red);
  margin-left: 6px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--clr-red);
  border-radius: 50%;
  animation: dotPulse 1.5s infinite;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(340px,1fr));
  gap: 26px;
}

.res-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.res-card:hover { transform:translateY(-8px); box-shadow:var(--sh-lg); }

.res-card-top {
  padding: 18px 22px;
  background: var(--hc);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.res-emoji { font-size:1.8rem; }
.res-name-wrap { flex:1; }
.res-name-wrap h3 { font-size:1.1rem; font-weight:700; margin-bottom:2px; }
.res-name-wrap span { font-size:.78rem; opacity:.82; }

.badge-live,
.badge-upcoming {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-live {
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.4);
  animation: liveBlink 2s infinite;
}
.badge-upcoming {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}
@keyframes liveBlink {
  0%,100% { opacity:1; }
  50%     { opacity:.65; }
}

.res-card-body { padding:22px; }

.prize-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.prize-row:last-of-type { border-bottom:none; }
.prize-row.prize-first {
  background: linear-gradient(135deg,rgba(255,215,0,.07),rgba(255,165,0,.04));
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 6px;
  border: 1px solid rgba(255,215,0,.18) !important;
}

.pr-label { font-size:.76rem; font-weight:700; color:var(--txt-soft); min-width:68px; }
.pr-amt   { font-size:.98rem; font-weight:800; color:var(--txt-dark); flex:1; }
.prize-first .pr-amt { color:var(--clr-orange); font-size:1.08rem; }
.pr-num   { font-size:.72rem; color:var(--txt-soft); font-family:monospace; }

.res-link {
  display: block;
  margin-top: 14px;
  padding: 10px;
  text-align: center;
  background: linear-gradient(135deg,rgba(103,126,234,.07),rgba(118,75,162,.07));
  border: 1px solid rgba(103,126,234,.18);
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: #667eea;
  transition: var(--ease);
}
.res-link:hover {
  background: var(--grad-primary);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
}

/* ============================================================
   GAMES SECTION
============================================================ */
.games-sec { padding:100px 0; background:var(--bg-soft); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(270px,1fr));
  gap: 26px;
}

.game-card {
  background: var(--card-bg);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--r-md);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
  cursor: default;
}
.game-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--sh-lg);
}

.gc-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  opacity: .85;
  transition: var(--ease);
}
.game-card:hover .gc-top-bar { height: 5px; opacity: 1; }

.gc-icon { font-size:2.6rem; margin-bottom:14px; }
.game-card h3 { font-size:1.25rem; font-weight:800; color:var(--txt-dark); margin-bottom:6px; }
.gc-day { font-size:.82rem; color:var(--txt-soft); font-weight:500; margin-bottom:20px; }

.gc-prize {
  display: flex; flex-direction:column; align-items:center; gap:3px;
  margin-bottom: 14px;
}
.gc-prize span { font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:var(--txt-soft); font-weight:600; }
.gc-prize strong {
  font-size: 1.65rem;
  font-weight: 900;
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gc-price { font-size:.88rem; color:var(--txt-mid); margin-bottom:24px; }
.gc-price strong { font-weight:700; color:var(--txt-dark); }

.gc-btn {
  display: block;
  padding: 12px 22px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  transition: var(--ease);
  box-shadow: 0 6px 20px rgba(103,126,234,.28);
}
.gc-btn:hover {
  background: linear-gradient(135deg,#e74c3c,#e67e22);
  box-shadow: 0 10px 30px rgba(231,76,60,.35);
  transform: translateY(-2px);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-sec { padding:100px 0; background:var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
  gap: 26px;
}

.why-card {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 30px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(103,126,234,.02),rgba(118,75,162,.02));
  opacity: 0;
  transition: var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(103,126,234,.2);
}
.why-card:hover::after { opacity:1; }

.why-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: flex; align-items:center; justify-content:center;
  font-size: 1.7rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.11);
}
.why-card h3 { font-size:1.15rem; font-weight:700; color:var(--txt-dark); margin-bottom:10px; }
.why-card p  { font-size:.93rem; color:var(--txt-mid); line-height:1.72; }

/* ============================================================
   COUNTERS
============================================================ */
.counters-sec {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#0f0c29,#302b63,#24243e);
}
.cnt-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%,rgba(231,76,60,.14) 0%,transparent 55%),
    radial-gradient(circle at 85% 50%,rgba(142,68,173,.14) 0%,transparent 55%);
}
.cnt-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cnt-item { text-align:center; }
.cnt-emoji { font-size:2.4rem; margin-bottom:14px; }
.cnt-num {
  font-size: clamp(2.4rem,5vw,3.4rem);
  font-weight: 900;
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.cnt-lbl { font-size:.9rem; color:rgba(255,255,255,.65); font-weight:500; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews-sec { padding:100px 0; background:var(--bg-soft); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(340px,1fr));
  gap: 26px;
}

.rev-card {
  background: var(--card-bg);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--r-md);
  padding: 30px;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}
.rev-card::before {
  content: '"';
  position: absolute;
  top: -14px; right: 18px;
  font-size: 9rem;
  font-family: var(--font-d);
  color: rgba(103,126,234,.06);
  line-height: 1;
  pointer-events: none;
}
.rev-card:hover { transform:translateY(-8px); box-shadow:var(--sh-lg); }

.rev-stars { font-size:1.05rem; letter-spacing:2px; margin-bottom:14px; }
.rev-card p {
  font-size: .93rem;
  color: var(--txt-mid);
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
}

.reviewer { display:flex; align-items:center; gap:12px; }
.rev-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: .85rem; font-weight:800; color:#fff;
  flex-shrink: 0;
}
.reviewer > div strong { display:block; font-size:.93rem; font-weight:700; color:var(--txt-dark); margin-bottom:2px; }
.reviewer > div span  { font-size:.78rem; color:var(--txt-soft); }

/* ============================================================
   FAQ
============================================================ */
.faq-sec { padding:100px 0; background:var(--white); }

.faq-list { max-width:800px; margin:0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--ease);
  background: rgba(255,255,255,.92);
}
.faq-item:hover { border-color:rgba(103,126,234,.28); box-shadow:var(--sh-sm); }
.faq-item.open  { border-color:rgba(103,126,234,.38); box-shadow:0 8px 28px rgba(103,126,234,.08); }

.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-size: .98rem;
  font-weight: 600;
  color: var(--txt-dark);
  transition: var(--ease);
}
.faq-q:hover { color:#667eea; }
.faq-item.open .faq-q { color:#667eea; }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #667eea;
  transition: transform .35s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform:rotate(45deg); }

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-ans {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-ans p {
  font-size: .93rem;
  color: var(--txt-mid);
  line-height: 1.72;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-sec { padding:100px 0; background:var(--bg-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3,
.contact-form-wrap h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--txt-dark);
  margin-bottom: 30px;
}

.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.ci-icon {
  font-size: 1.3rem;
  width: 42px; height: 42px;
  background: rgba(103,126,234,.08);
  border-radius: 12px;
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}
.ci-item strong {
  display: block;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--txt-soft);
  font-weight: 700;
  margin-bottom: 4px;
}
.ci-item p { font-size:.92rem; color:var(--txt-mid); line-height:1.6; }
.ci-item a { color:#667eea; font-weight:500; }
.ci-item a:hover { color:var(--clr-red); }

.contact-form {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}

.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--txt-soft);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}
.fg input,
.fg textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--txt-dark);
  background: var(--bg-soft);
  transition: var(--ease);
  outline: none;
  resize: vertical;
}
.fg input:focus,
.fg textarea:focus {
  border-color: #667eea;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(103,126,234,.08);
}
.submit-btn { width:100%; justify-content:center; padding:15px; font-size:1rem; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background:#0e0e1a; color:rgba(255,255,255,.78); }

.footer-top { padding:80px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.footer-brand p { font-size:.88rem; line-height:1.72; color:rgba(255,255,255,.46); margin-bottom:24px; }

.social-row { display:flex; gap:10px; }
.soc-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items:center; justify-content:center;
  font-size: 1.1rem;
  transition: var(--ease);
}
.soc-btn:hover {
  background: linear-gradient(135deg,#e74c3c,#8e44ad);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col li,
.footer-col a { font-size:.84rem; color:rgba(255,255,255,.46); transition:var(--ease); }
.footer-col a:hover { color:rgba(255,255,255,.88); padding-left:4px; }

.footer-disclaimer { border-top:1px solid rgba(255,255,255,.07); padding:30px 0; }
.disc-box {
  background: rgba(255,200,0,.04);
  border: 1px solid rgba(255,200,0,.14);
  border-radius: var(--r-md);
  padding: 22px 30px;
}
.disc-box h4 {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,200,0,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.disc-box p { font-size:.8rem; color:rgba(255,255,255,.4); line-height:1.72; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size:.8rem; color:rgba(255,255,255,.32); margin-bottom:4px; }
.footer-bottom a { color:rgba(255,255,255,.46); }
.footer-bottom a:hover { color:#667eea; }

/* ============================================================
   TOAST
============================================================ */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: linear-gradient(135deg,#27ae60,#2ecc71);
  color: #fff;
  padding: 15px 26px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .92rem;
  box-shadow: 0 8px 28px rgba(39,174,96,.38);
  transform: translateY(100px);
  opacity: 0;
  transition: all .42s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
  pointer-events: none;
}
.toast.show { transform:translateY(0); opacity:1; }

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width:1024px) {
  .cnt-grid { grid-template-columns:repeat(2,1fr); gap:32px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:38px; }
  .contact-grid { grid-template-columns:1fr; gap:44px; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width:768px) {
  /* Mobile nav drawer */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 4px;
    box-shadow: -20px 0 60px rgba(0,0,0,.14);
    transition: right .4s cubic-bezier(.4,0,.2,1);
    z-index: 1005;
    overflow-y: auto;
  }
  .nav-links.open { right:0; }
  .nav-link {
    padding: 13px 0;
    font-size: 1.02rem;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .nav-cta-btn { margin-top:14px; }
  .hamburger { display:flex; }

  /* Hero */
  .hero { padding:110px 0 80px; }
  .hero-logo-img { width:150px; }
  .hero-cta { flex-direction:column; align-items:center; }
  .hero-stats {
    flex-direction: column;
    padding: 20px 30px;
    gap: 14px;
    width: 100%;
    max-width: 320px;
  }
  .h-stat { padding:8px 0; }
  .h-divider { width:60px; height:1px; }

  /* Grids */
  .results-grid,
  .games-grid,
  .why-grid,
  .reviews-grid { grid-template-columns:1fr; }

  /* Sections */
  .results-sec,
  .games-sec,
  .why-sec,
  .reviews-sec,
  .faq-sec,
  .contact-sec { padding:70px 0; }

  /* Footer */
  .footer-grid { grid-template-columns:1fr; gap:30px; }

  .contact-form { padding:26px 18px; }

  .hero-stats { margin:0 auto; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width:480px) {
  .cnt-grid { grid-template-columns:repeat(2,1fr); gap:22px; }
  .hero-title { font-size:2rem; }
  .sec-title { font-size:1.75rem; }
  .hero-stats { padding:18px 20px; }
  .h-stat strong { font-size:1.5rem; }
  .toast { left:16px; right:16px; bottom:16px; text-align:center; }
}
