/* =========================================================
   Kuberalakshmi Agency — Stylesheet
   Theme: Modern Blue + Purple + Gold Glassmorphism
   ========================================================= */

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

:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-secondary: #7c3aed;
  --color-secondary-dark: #6d28d9;
  --color-gold: #f59e0b;
  --color-gold-light: #fbbf24;
  --color-whatsapp: #25d366;

  --bg-deep-1: #0b0a22;
  --bg-deep-2: #1a1440;
  --bg-deep-3: #2c1a5c;

  --text-light: #f8fafc;
  --text-muted: #c9caea;
  --text-dark: #1e1b3a;

  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-bg-strong: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-gold: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  --gradient-hero: linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 45%, var(--bg-deep-3) 100%);
  --gradient-text: linear-gradient(135deg, #93c5fd, #c4b5fd 45%, #fcd34d 100%);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep-1);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

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

address {
  font-style: normal;
}

.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

::selection {
  background: var(--color-secondary);
  color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep-1);
}
::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

/* ---------- 2. Utility Classes ---------- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 0.85rem;
  color: var(--text-light);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

section {
  position: relative;
  padding: 6rem 0;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 3. Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}

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

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}
.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.5);
  filter: brightness(1.08);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #1e1b3a;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}
.btn-gold:hover {
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.55);
  filter: brightness(1.05);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--glass-border);
}
.btn-outline:hover {
  background: var(--glass-bg-strong);
  border-color: var(--color-primary);
}

.btn-call {
  background: var(--glass-bg-strong);
  color: var(--text-light);
  border: 1px solid var(--glass-border);
}
.btn-call:hover {
  background: var(--gradient-primary);
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Ripple Effect */
.ripple {
  position: relative;
}
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
@keyframes ripple-anim {
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* ---------- 4. Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-coin {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  font-size: 1.8rem;
  color: #1e1b3a;
  animation: spin-coin 1s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
}
@keyframes spin-coin {
  0% { transform: rotateY(0deg) scale(1); }
  50% { transform: rotateY(180deg) scale(1.15); }
  100% { transform: rotateY(360deg) scale(1); }
}

/* ---------- 5. Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  padding: 0.7rem 0;
  background: rgba(11, 10, 34, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--glass-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-light);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.45);
}

.logo-highlight {
  color: var(--color-gold-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 0.3rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  z-index: 1001;
}
.nav-toggle .bar {
  width: 100%;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--text-light);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 7rem;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  animation: float 10s ease-in-out infinite;
}
.shape-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.55), transparent 70%);
  top: -80px;
  left: -80px;
  animation-duration: 12s;
}
.shape-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 70%);
  bottom: -60px;
  right: 5%;
  animation-duration: 14s;
  animation-delay: 1s;
}
.shape-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.45), transparent 70%);
  top: 20%;
  right: 15%;
  animation-duration: 9s;
  animation-delay: 0.5s;
}
.shape-4 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent 70%);
  bottom: 15%;
  left: 8%;
  animation-duration: 11s;
  animation-delay: 2s;
}
.shape-5 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.5), transparent 70%);
  top: 45%;
  left: 45%;
  animation-duration: 8s;
  animation-delay: 1.5s;
}

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

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  padding-block: 2rem 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 3.75rem);
  color: var(--text-light);
  margin-bottom: 1.3rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.floating {
  animation: card-float 5s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(1deg); }
}

.ticket-card {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
}

.ticket-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.ticket-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #1e1b3a;
  font-size: 1.4rem;
}

.ticket-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.ticket-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.ticket-card p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.ticket-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px dashed var(--glass-border);
  padding-top: 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.ticket-card-bottom span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-gold-light);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce-down {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- 7. Pricing ---------- */
.pricing {
  background: var(--bg-deep-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.35);
}

.price-card.featured {
  border: 1px solid rgba(245, 158, 11, 0.5);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #1e1b3a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
}

.price-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  font-size: 1.6rem;
  color: #fff;
}

.price-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.price-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.3rem;
  min-height: 44px;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.price-amount .currency {
  font-size: 1.6rem;
  vertical-align: super;
  color: var(--color-gold-light);
}

.price-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.price-features i {
  color: var(--color-gold-light);
}

/* ---------- 8. Bumper ---------- */
.bumper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.bumper-card {
  border-radius: var(--radius-md);
  padding: 2.3rem 1.8rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bumper-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.3);
}

.bumper-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #1e1b3a;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  transition: transform var(--transition);
}
.bumper-card:hover .bumper-icon {
  transform: rotate(-8deg) scale(1.1);
}

.bumper-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.bumper-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- 9. Schedule ---------- */
.schedule {
  background: var(--bg-deep-2);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.3rem;
}

.day-card {
  border-radius: var(--radius-md);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.3);
}

.day-name {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.day-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.15rem;
}

.day-lottery {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ---------- 10. Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.why-card {
  border-radius: var(--radius-md);
  padding: 2.3rem 1.8rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.25);
}

.why-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- 11. Contact ---------- */
.contact {
  background: var(--bg-deep-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.contact-card {
  border-radius: var(--radius-md);
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.3);
}

.contact-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #1e1b3a;
  font-size: 1.6rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

/* ---------- 12. Location ---------- */
.location-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.map-glass {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  padding: 0.6rem;
}
.map-glass iframe {
  border-radius: calc(var(--radius-lg) - 0.6rem);
  min-height: 360px;
}

.address-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
}

.address-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.address-card address {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

/* ---------- 13. Footer ---------- */
.footer {
  background: var(--bg-deep-1);
  border-top: 1px solid var(--glass-border);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-4px);
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  color: var(--text-light);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul a:hover {
  color: var(--color-gold-light);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer-contact i {
  margin-top: 3px;
  color: var(--color-gold-light);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- 14. Floating Buttons ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-5px);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  z-index: 900;
  animation: pulse-whatsapp 2.4s ease-in-out infinite;
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.85), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* ---------- 15. Responsive ---------- */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
  .location-wrapper {
    grid-template-columns: 1fr;
  }
  .map-glass {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80%);
    height: 100vh;
    background: rgba(11, 10, 34, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transition: right var(--transition);
    border-left: 1px solid var(--glass-border);
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .btn-call span {
    display: none;
  }
  .btn-call {
    padding: 0.6rem;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4.5rem 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .back-to-top {
    right: 1.2rem;
    bottom: 1.2rem;
    width: 42px;
    height: 42px;
  }
  .whatsapp-float {
    left: 1.2rem;
    bottom: 1.2rem;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
