/* =========================================================
   SK AGENCY — Kerala Lottery Agency Website
   Stylesheet: style.css
   Palette: Deep Navy + Electric Blue + Purple + Gold
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --navy-950: #060814;
  --navy-900: #f8f9fd;
  --navy-800: #eef1fb;
  --navy-700: #e4e9fa;
  --blue-500: #2f8bff;
  --blue-400: #0284c7;
  --purple-500: #7c3aed;
  --purple-400: #7e22ce;
  --gold-500: #f5b301;
  --gold-400: #b45309;
  --white: #ffffff;
  --gray-200: #3a3f5c;
  --gray-400: #666d92;
  --gray-500: #6b7290;

  --gradient-primary: linear-gradient(135deg, var(--blue-500), var(--purple-500));
  --gradient-gold: linear-gradient(135deg, var(--gold-500), #ff9d3d);
  --gradient-hero: linear-gradient(120deg, #eef4ff 0%, #f5f0ff 45%, #fff8ec 100%);

  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-bg-strong: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(18, 20, 46, 0.08);
  --shadow-soft: 0 20px 50px rgba(31, 41, 90, 0.12);
  --shadow-glow-blue: 0 12px 40px rgba(2, 132, 199, 0.22);
  --shadow-glow-gold: 0 12px 40px rgba(180, 83, 9, 0.2);
  --shadow-card: 0 10px 34px rgba(31, 41, 90, 0.08);

  --font-heading: 'Sora', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--gray-200);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue-400), var(--purple-400), var(--gold-400));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}

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

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(2, 132, 199, 0.15);
  border-top-color: var(--blue-400);
  border-right-color: var(--purple-400);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn i { font-size: 1.05em; }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.5);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-950);
  box-shadow: 0 10px 30px rgba(245, 179, 1, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 179, 1, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  background: var(--glass-bg-strong);
  border-color: var(--blue-400);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(31, 41, 90, 0.1);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(18, 20, 46, 0.06), 0 6px 18px rgba(47, 139, 255, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.brand-text small {
  color: var(--gray-400);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

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

.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-200);
  padding: 6px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-950);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--navy-950);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: var(--blue-500);
  top: -100px;
  left: -120px;
  animation-delay: 0s;
}

.blob-2 {
  width: 480px;
  height: 480px;
  background: var(--purple-500);
  bottom: -160px;
  right: -140px;
  animation-delay: 2s;
}

.blob-3 {
  width: 320px;
  height: 320px;
  background: var(--gold-500);
  top: 40%;
  left: 45%;
  opacity: 0.22;
  animation-delay: 4s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18,20,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,20,46,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}

.floating-tickets {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ticket {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--gold-400);
  font-size: 1.4rem;
  box-shadow: var(--shadow-soft);
  animation: floatTicket 8s ease-in-out infinite;
}

.ticket-1 { top: 18%; left: 8%; animation-delay: 0s; color: var(--blue-400); }
.ticket-2 { top: 68%; left: 12%; animation-delay: 1.2s; color: var(--gold-400); }
.ticket-3 { top: 25%; right: 10%; animation-delay: 0.6s; color: var(--purple-400); }
.ticket-4 { top: 72%; right: 14%; animation-delay: 1.8s; color: var(--blue-400); }
.ticket-5 { top: 45%; left: 4%; animation-delay: 2.4s; color: var(--gold-400); }
.ticket-6 { top: 12%; right: 30%; animation-delay: 3s; color: var(--purple-400); }

@keyframes floatTicket {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 18px;
  min-height: 1.6em;
}

.cursor {
  animation: blink 1s step-end infinite;
  color: var(--gold-400);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--blue-400), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--gray-200);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Sections (common) ---------- */
.section {
  padding: 110px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-700) 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--blue-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray-400);
  font-size: 1.02rem;
}

/* ---------- Glassmorphism Card Base ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---------- Pricing Section ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-glow-blue);
}

.price-card.featured:hover {
  border-color: rgba(245, 179, 1, 0.45);
  box-shadow: var(--shadow-glow-gold);
}

.price-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: var(--gradient-primary);
  filter: blur(60px);
  opacity: 0.35;
  border-radius: 50%;
}

.price-card.featured .price-glow {
  background: var(--gradient-gold);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--gradient-gold);
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.7rem;
  position: relative;
  z-index: 1;
}

.price-card.featured .price-icon {
  background: var(--gradient-gold);
  color: var(--navy-950);
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.price-desc {
  color: var(--gray-400);
  font-size: 0.92rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.price-value .currency {
  font-size: 1.6rem;
  vertical-align: super;
  color: var(--gold-400);
}

.price-features {
  text-align: left;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray-200);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(18,20,46,0.08);
}

.price-features li:last-child { border-bottom: none; }

.price-features i {
  color: var(--blue-400);
}

.price-card.featured .price-features i {
  color: var(--gold-400);
}

/* ---------- Bumper Section ---------- */
.bumper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bumper-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bumper-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(168,85,247,0.08));
  opacity: 0;
  transition: var(--transition);
}

.bumper-card:hover::before {
  opacity: 1;
}

.bumper-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
}

.bumper-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(56,189,248,0.18), rgba(168,85,247,0.18));
  color: var(--gold-400);
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.bumper-card:hover .bumper-icon {
  transform: scale(1.1) rotate(-6deg);
}

.bumper-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.bumper-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ---------- Weekly Schedule ---------- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.day-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.day-card .day-icon {
  font-size: 1.3rem;
  color: var(--blue-400);
  margin-bottom: 14px;
  display: block;
}

.day-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-950);
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lottery-name {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.day-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-glow-blue);
}

.day-card.today {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-glow-blue);
}

.day-card.today .day-name,
.day-card.today .lottery-name,
.day-card.today .day-icon {
  color: var(--white);
}

.day-card.today::after {
  content: 'TODAY';
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.25);
  padding: 3px 8px;
  border-radius: 50px;
  color: var(--white);
}

/* ---------- Feature / Why Us Section ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 179, 1, 0.35);
  box-shadow: var(--shadow-glow-gold);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--navy-950);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
}

.call-icon { background: var(--gradient-primary); }
.whatsapp-icon { background: linear-gradient(135deg, #25d366, #128c7e); }
.address-icon { background: var(--gradient-gold); color: var(--navy-950); }

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--gray-400);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.address-text {
  color: var(--gray-200) !important;
  line-height: 1.7;
}

/* ---------- Location / Map Section ---------- */
.map-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.map-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-address-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  background: rgba(18,20,46,0.03);
  border-bottom: 1px solid var(--glass-border);
  color: var(--gray-200);
  font-size: 0.92rem;
}

.map-address-bar i {
  color: var(--gold-400);
  font-size: 1.1rem;
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-800);
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  padding: 70px 0 40px;
}

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

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin: 18px 0 22px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gray-200);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-4px);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--navy-950);
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--gray-400);
}

.footer-col ul li a {
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--blue-400);
  padding-left: 4px;
}

.footer-col ul li span {
  display: inline-block;
  width: 38px;
  color: var(--gold-400);
  font-weight: 600;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--blue-400);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ---------- Floating WhatsApp Button ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 900;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.9), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.bumper-card,
.feature-card,
.contact-card,
.day-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.bumper-card.in-view,
.feature-card.in-view,
.contact-card.in-view,
.day-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE — Tablet
   ========================================================= */
@media (max-width: 1024px) {
  .pricing-grid { max-width: 640px; }
  .bumper-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80%);
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(31, 41, 90, 0.12);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* =========================================================
   RESPONSIVE — Mobile
   ========================================================= */
@media (max-width: 640px) {
  .section { padding: 80px 0; }

  .hero { padding: 120px 0 70px; }

  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }

  .hero-stats { gap: 30px; }

  .pricing-grid { grid-template-columns: 1fr; }

  .bumper-grid { grid-template-columns: 1fr; }

  .feature-grid { grid-template-columns: 1fr; }

  .schedule-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .ticket { width: 44px; height: 44px; font-size: 1.1rem; }

  .map-frame { height: 300px; }

  .float-whatsapp { width: 50px; height: 50px; font-size: 1.4rem; bottom: 18px; left: 18px; }
  .back-to-top { width: 44px; height: 44px; bottom: 18px; right: 18px; }
}

@media (max-width: 400px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-text small { display: none; }
}
