/* ===== BOOTSTRAP REPLACEMENT — Only classes actually used ===== */
/* Replaces ~227KB Bootstrap CSS with ~4KB of actual needed styles */

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 576px) { .container { padding: 0 1.5rem; } }
@media (min-width: 768px) { .container { max-width: 720px; padding: 0 2rem; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1200px; } }

/* Row */
.row { display: flex; flex-wrap: wrap; margin: 0 -0.75rem; }
.row > * { flex-shrink: 0; width: 100%; max-width: 100%; padding: 0 0.75rem; }

/* Columns */
.col-6 { flex: 0 0 auto; width: 50%; }
.col-md-3 { flex: 0 0 auto; width: 25%; }
.col-md-4 { flex: 0 0 auto; width: 33.33333%; }
.col-md-6 { flex: 0 0 auto; width: 50%; }
.col-lg-4 { flex: 0 0 auto; width: 33.33333%; }
.col-lg-6 { flex: 0 0 auto; width: 50%; }
.col-lg-8 { flex: 0 0 auto; width: 66.66667%; }
.col-xl-2 { flex: 0 0 auto; width: 16.66667%; }
.col-xl-3 { flex: 0 0 auto; width: 25%; }
.col-xl-4 { flex: 0 0 auto; width: 33.33333%; }
.col-xl-6 { flex: 0 0 auto; width: 50%; }
.col-lg-5 { flex: 0 0 auto; width: 41.66667%; }
.col-lg-7 { flex: 0 0 auto; width: 58.33333%; }

@media (max-width: 767px) {
  .col-md-3, .col-md-4, .col-md-6 { width: 50%; }
}
@media (max-width: 575px) {
  .col-6, .col-md-3, .col-md-4, .col-md-6 { width: 50%; }
  .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-xl-4 { width: 100%; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-lg-4, .col-lg-5, .col-xl-4 { width: 50%; }
  .col-lg-7, .col-lg-8 { width: 100%; }
}

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-inline-block { display: inline-block !important; }

/* Responsive display */
@media (max-width: 767px) {
  .d-md-inline-flex { display: none !important; }
  .d-lg-flex { display: none !important; }
  .d-lg-none { display: block !important; }
}
@media (min-width: 768px) {
  .d-md-inline-flex { display: inline-flex !important; }
  .d-lg-none { display: none !important; }
}
@media (max-width: 1199px) {
  .d-xl-block { display: none !important; }
}
@media (min-width: 1200px) {
  .d-xl-block { display: block !important; }
}

@media (min-width: 992px) {
  .d-lg-flex { display: flex !important; }
  .d-lg-block { display: block !important; }
  .d-lg-none { display: none !important; }
}

/* Flex */
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }

/* Position */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

/* Spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }

.p-4 { padding: 1.5rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-lg-5 { padding: 3rem !important; }
@media (min-width: 992px) { .p-lg-5 { padding: 3rem !important; } }

/* Gaps */
.gap-1 { gap: .25rem !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.g-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }
.g-4 > * { padding: 0 0.75rem; margin-bottom: 1.5rem; }
.g-5 > * { padding: 0 1.5rem; margin-bottom: 3rem; }

/* Responsive margin */
.mt-xl-0 { margin-top: 0 !important; }
.mt-lg-0 { margin-top: 0 !important; }
@media (min-width: 992px) { .mt-xl-0, .mt-lg-0 { margin-top: 0 !important; } }
@media (min-width: 1200px) { .mt-xl-0 { margin-top: 0 !important; } }

@media (min-width: 992px) {
  .mt-lg-0 { margin-top: 0 !important; }
}

/* Sizing */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* Text */
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-white { color: #fff !important; }
.text-decoration-none { text-decoration: none !important; }
.fw-bold { font-weight: 700 !important; }
.fs-4 { font-size: 1.5rem !important; }
.small { font-size: .875em !important; }
.lead { font-size: 1.25rem; font-weight: 300; }
.display-5 { font-size: 3rem; font-weight: 300; line-height: 1.2; }
@media (max-width: 576px) { .display-5 { font-size: 1.8rem; } }
@media (min-width: 577px) and (max-width: 991px) { .display-5 { font-size: 2.2rem; } }

@media (min-width: 992px) {
  .text-lg-end { text-align: right !important; }
}

/* Background */
.bg-dark { background-color: #0a0a0a !important; }
.bg-transparent { background-color: transparent !important; }

/* Border */
.border-0 { border: 0 !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }

/* Form */
.form-control {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background: rgba(255,255,255,.06);
  background-clip: padding-box;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 256 256'%3E%3Cpath fill='rgba(255,255,255,.6)' d='M128 192L48 112h160Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-control:focus {
  outline: 0;
  border-color: var(--lgg-primary);
  box-shadow: 0 0 0 2px rgba(229,62,62,.2);
}

/* List */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

/* HR */
hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 1rem 0;
}

/* ===== LIVE G GROUP CUSTOM OVERRIDES ===== */
:root {
  --lgg-primary: #E53E3E;
  --lgg-primary-dark: #C53030;
  --lgg-accent: #FFB800;
  --lgg-dark: #0A0A0A;
  --lgg-dark-2: #111111;
  --lgg-dark-3: #1A1A1A;
  --lgg-gold: #F6AD55;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--lgg-dark);
  color: #fff;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Titillium Web', 'DM Sans', sans-serif; }
.font-caveat { font-family: 'Caveat', cursive; }

/* LGG Logo Text */
.lgg-logo-text {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
}
.lgg-logo-text span { color: var(--lgg-primary); }

/* Navigation */
.lgg-nav {
  position: fixed; top:0; left:0; width:100%; z-index:999;
  padding: 1rem 0;
  transition: all .3s;
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lgg-nav.scrolled { background: rgba(10,10,10,.95); padding: .5rem 0; }
.lgg-nav a.nav-link {
  color: rgba(255,255,255,.8) !important;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .5px;
  transition: color .3s;
}
.lgg-nav a.nav-link:hover,
.lgg-nav a.nav-link.active { color: var(--lgg-primary) !important; }

/* Sections */
.lgg-section { padding: 100px 0; position: relative; z-index:1; overflow:hidden; }
.lgg-section-dark { background: var(--lgg-dark); }
.lgg-section-darker { background: var(--lgg-dark-2); }

/* Section titles */
.lgg-subtitle {
  font-family: 'Caveat', cursive;
  color: var(--lgg-primary);
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.lgg-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  color: #fff;
}
.lgg-title-xl {
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255,255,255,.2);
  color: transparent;
}

/* Hero */
.lgg-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--lgg-dark);
}
.lgg-hero::after {
  content: '';
  position: absolute; inset:0;
  background: radial-gradient(ellipse at 30% 50%, rgba(229,62,62,.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Spinner shapes */
.spinner { animation: spin 20s linear infinite; }
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.animated-upDown { animation: upDown 3s ease-in-out infinite; }
@keyframes upDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

/* Cards */
.lgg-card {
  background: var(--lgg-dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: visible;
  transition: all .4s;
}
/* Cards with images that need clipping */
.gallery-item,
.blog-card-lgg,
.home-preview-card { overflow: hidden; }
.lgg-card:hover {
  border-color: rgba(229,62,62,.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4), 0 0 20px rgba(229,62,62,.08);
}

/* Team card (was speaker) */
.team-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all .4s;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.team-card:hover img { transform: scale(1.05); }
.team-overlay {
  position: absolute; inset:0;
  background: linear-gradient(to top, rgba(10,10,10,.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.team-social {
  position: absolute;
  top: 1rem; right: 1rem;
  display: flex;
  gap: .5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .3s;
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}
.team-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all .3s;
}
.team-social a:hover { background: var(--lgg-primary); }

/* Service card */
.service-card-lgg {
  background: var(--lgg-dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all .4s;
  position: relative;
}
.service-card-lgg.featured {
  border-color: var(--lgg-primary);
  background: linear-gradient(135deg, rgba(229,62,62,.1) 0%, var(--lgg-dark-3) 100%);
  position: relative;
}
.service-card-lgg.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--lgg-primary), var(--lgg-accent), var(--lgg-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service-card-lgg:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(229,62,62,.15), 0 0 30px rgba(229,62,62,.06);
}
.service-card-lgg.featured:hover {
  box-shadow: 0 20px 60px rgba(229,62,62,.25), 0 0 40px rgba(229,62,62,.1);
}

/* Blog card */
.blog-card-lgg {
  border-radius: 16px;
  overflow: hidden;
  background: var(--lgg-dark-3);
  border: 1px solid rgba(255,255,255,.06);
  transition: all .4s;
}
.blog-card-lgg:hover {
  border-color: rgba(229,62,62,.3);
  transform: translateY(-5px);
}
.blog-card-lgg img { transition: transform .5s; }
.blog-card-lgg:hover img { transform: scale(1.05); }

/* Marquee */
.lgg-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Stats counter */
.stat-num {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--lgg-primary), var(--lgg-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: .5rem;
}

/* CTA Button */
.btn-lgg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: 50px;
  background: var(--lgg-primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.btn-lgg:hover { background: #fff; color: var(--lgg-primary); }
.btn-lgg-outline {
  background: transparent;
  border: 1.5px solid var(--lgg-primary);
  color: var(--lgg-primary);
}
.btn-lgg-outline:hover { background: var(--lgg-primary); color: #fff; }

/* Video button */
.video-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--lgg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.video-play-btn:hover { background: #fff; color: var(--lgg-primary); transform: scale(1.1); }

/* Process step */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s;
}
.process-step:hover { background: rgba(255,255,255,.03); }
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(229,62,62,.1);
  border: 2px solid var(--lgg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--lgg-primary);
  flex-shrink: 0;
}

/* FAQ accordion */
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--lgg-dark-3);
}
.faq-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-btn svg { transition: transform .3s; }
.faq-body {
  padding: 0 1.5rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-btn svg { transform: rotate(180deg); }
.faq-item.open .faq-body {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: all .4s;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(229,62,62,.2);
}
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-grid .gallery-item img {
  transition: all .4s;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(.6);
}
.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s;
  background: linear-gradient(to top, rgba(10,10,10,.8) 0%, transparent 60%);
}
.gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Footer */
.lgg-footer {
  background: var(--lgg-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 80px 0 30px;
}
.lgg-footer a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .3s; }
.lgg-footer a:hover { color: var(--lgg-primary); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--lgg-dark); }
::-webkit-scrollbar-thumb { background: var(--lgg-primary); border-radius: 3px; }

/* Responsive */
@media (max-width: 991px) {
  .lgg-title { font-size: 2.2rem; }
  .lgg-title-xl { font-size: 2.8rem; }
  .stat-num { font-size: 2.8rem; }
  .lgg-section { padding: 70px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .lgg-title { font-size: 1.8rem; }
  .lgg-title-xl { font-size: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
  .gallery-item-wide { grid-column: span 2; }
}
@media (min-width: 577px) and (max-width: 767px) {
  .gallery-item-wide { grid-column: span 2; }
}

/* Back to top */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--lgg-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border: none;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { background: #fff; color: var(--lgg-primary); }

/* Home preview card */
.home-preview-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .4s;
  cursor: pointer;
}
.home-preview-card:hover {
  border-color: var(--lgg-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(229,62,62,.15);
}
.home-preview-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

/* WhatsApp float */
/* ===== STAGGERED TEXT REVEAL ===== */
.text-reveal { overflow: hidden; display: inline-block; }
.text-reveal span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.text-reveal.visible span {
  transform: translateY(0);
  opacity: 1;
}
.text-reveal-delay-1 span { transition-delay: 0.1s; }
.text-reveal-delay-2 span { transition-delay: 0.2s; }
.text-reveal-delay-3 span { transition-delay: 0.3s; }
.text-reveal-delay-4 span { transition-delay: 0.4s; }

/* ===== EXIT INTENT POPUP ===== */
.exit-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup {
  background: var(--lgg-dark-2);
  border: 1px solid rgba(229,62,62,.3);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 440px;
  text-align: center;
  position: relative;
  animation: exitSlideUp .4s cubic-bezier(.16,1,.3,1);
}
@keyframes exitSlideUp { from { transform: translateY(30px); opacity:0; } to { transform: translateY(0); opacity:1; } }
.exit-popup .exit-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: rgba(255,255,255,.5);
  cursor: pointer; font-size: 1.5rem;
  transition: color .2s;
}
.exit-popup .exit-close:hover { color: #fff; }


/* ===== CURSOR SPOTLIGHT ON CARDS ===== */
.lgg-card, .service-card-lgg {
  position: relative;
  overflow: hidden;
}
.card-spotlight {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,62,62,.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}
.lgg-card:hover .card-spotlight,
.service-card-lgg:hover .card-spotlight {
  opacity: 1;
}


/* ===== TINY SCREEN STATS ===== */
@media (max-width: 374px) {
  .stat-num { font-size: 2.5rem !important; }
  .stat-label { font-size: .85rem !important; }
}


/* ===== TESTIMONIALS MOBILE SCROLL ===== */
@media (max-width: 767px) {
  .testimonial-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
  }
  .testimonial-track {
    display: flex !important;
    transform: none !important;
  }
  .testimonial-slide {
    min-width: 85%;
    scroll-snap-align: center;
    flex-shrink: 0;
    padding: 0 .5rem;
  }
}


/* ===== TEXT SHIMMER ANIMATION ===== */
/* textShimmer keyframe removed — using shimmer (S2) */
/* @keyframes textShimmer removed — using @keyframes shimmer */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 997;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: transform .3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse { 0%{opacity:.4;transform:scale(1)} 100%{opacity:0;transform:scale(1.5)} }

/* ===== SEDUCCION MULTIMEDIA P0 FIXES ===== */

/* 2a. Noise/grain overlay for premium feel */
.lgg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* 2b. Animated gradient blobs in hero */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--lgg-primary);
  top: 10%;
  left: -5%;
  animation: blobFloat1 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--lgg-accent);
  bottom: 10%;
  right: -5%;
  animation: blobFloat2 10s ease-in-out infinite;
}
.hero-blob-3 {
  width: 200px;
  height: 200px;
  background: var(--lgg-primary);
  top: 50%;
  right: 20%;
  animation: blobFloat3 12s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(1.1); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.15); }
}

/* 2c. FAQ — uses max-height animation (defined in base) */

/* 2d. Form focus glow (overrides base) */
.form-control:focus {
  background-color: rgba(255,255,255,.1) !important;
  border-color: var(--lgg-primary) !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,.2), 0 0 20px rgba(229,62,62,.1) !important;
  outline: none;
}
select.form-control:focus {
  background-color: rgba(255,255,255,.1) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 256 256'%3E%3Cpath fill='rgba(255,255,255,.8)' d='M128 192L48 112h160Z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
}

/* 2e. Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--lgg-primary), var(--lgg-accent));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* 2f. CTA pulse animation */
.btn-lgg.pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  border: 2px solid var(--lgg-primary);
  opacity: 0;
  animation: ctaPulse 2s ease-out infinite;
}
.btn-lgg.pulse { position: relative; }
@keyframes ctaPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* 2g. Process connecting line */
.process-step {
  position: relative;
}
.process-steps-col {
  position: relative;
}
.process-steps-col::before {
  content: '';
  position: absolute;
  left: 43px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lgg-primary), transparent);
  opacity: 0.3;
}

/* 2h. Card stagger entrance */
.stagger-1 { animation-delay: 0.1s !important; }
.stagger-2 { animation-delay: 0.2s !important; }
.stagger-3 { animation-delay: 0.3s !important; }
.stagger-4 { animation-delay: 0.4s !important; }
.stagger-5 { animation-delay: 0.5s !important; }
.stagger-6 { animation-delay: 0.6s !important; }

/* textReveal clip-path animation removed — using translateY for span reveals */

/* 2j. Service tier color accents */
.service-card-lgg[data-tier="essential"] { border-left: 3px solid rgba(229,62,62,.3); }
.service-card-lgg[data-tier="premium"] { border-left: 3px solid var(--lgg-primary); }
.service-card-lgg[data-tier="enterprise"] { border-left: 3px solid var(--lgg-accent); }

/* 2k. Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.gallery-lightbox .lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.gallery-lightbox .lightbox-prev { left: 1.5rem; }
.gallery-lightbox .lightbox-next { right: 1.5rem; }

/* BUG-35: Lightbox accessibility — role and label set in HTML */

/* 2l. Mobile nav slide animation */
#mobileMenu {
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: rgba(10,10,10,.98);
  padding-top: 80px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  z-index: 998;
  backdrop-filter: blur(20px);
  overflow-y: auto;
}
#mobileMenu.open {
  transform: translateX(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 997;
  display: none;
  cursor: pointer;
}
.mobile-overlay.active { display: block; }

/* 2m. Stat number responsive fix */
@media (max-width: 576px) {
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: .85rem; }
}

/* BUG-22/30: Gallery overlay visible on mobile (no hover on touch) */
@media (max-width: 767px) {
  .gallery-overlay {
    opacity: 1 !important;
  }
  .gallery-item img {
    filter: brightness(0.7);
  }
}

/* 2n. Magnetic hover for CTAs (JS-driven, CSS support) */
.btn-lgg.magnetic-hover {
  transition: transform 0.2s ease;
}

/* 2o. Section divider accent */
.lgg-section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lgg-primary), var(--lgg-accent), transparent);
  opacity: 0.2;
  border: none;
  margin: 0;
}

/* ===== SEDUCCION PROFUNDA R3 ===== */

/* S1. Hero cinematic overlay — radial vignette + color shift */
.lgg-hero .cinematic-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(10,10,10,.3) 50%, rgba(10,10,10,.7) 100%),
    linear-gradient(180deg, transparent 60%, rgba(10,10,10,.8) 100%);
  pointer-events: none;
  z-index: 1;
}

/* S2. Hero text shimmer animation */
.text-shimmer {
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* S3. Parallax effect (JS-driven, CSS classes) */
.parallax-slow { will-change: transform; }
.parallax-medium { will-change: transform; }
.parallax-fast { will-change: transform; }

/* S4. Card glow on hover — premium effect */
.lgg-card-glow {
  position: relative;
}
.lgg-card-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(229,62,62,0), rgba(229,62,62,.4), rgba(255,184,0,.2), rgba(229,62,62,0));
  background-size: 300% 300%;
  z-index: 0;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.lgg-card-glow:hover::after {
  opacity: 1;
  animation: glowShift 3s ease infinite;
}
@keyframes glowShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* S5. Section entrance animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Text reveal: use translateY for inner spans, not clip-path */
.text-reveal.visible span {
  transform: translateY(0);
  opacity: 1;
}
.text-reveal span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

/* S6. Service card hover lift with colored shadow */
.service-card-lgg:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(229,62,62,.2), 0 0 40px rgba(229,62,62,.08);
}
.service-card-lgg.featured:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(229,62,62,.3), 0 0 50px rgba(229,62,62,.12);
}

/* S7. Testimonial carousel */
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.25,1,.5,1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .testimonial-track {
    display: flex !important;
    transform: none !important;
  }
  .testimonial-slide {
    min-width: 33.333%;
    flex: 1;
    padding: 0 0.75rem;
  }
  .testimonial-dots {
    display: none;
  }
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--lgg-primary);
  width: 28px;
  border-radius: 5px;
}

/* S8. Contact form progress steps — removed (single-page form) */

/* S9. Cursor trail (subtle) */
.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lgg-primary);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  will-change: transform;
  left: -10px;
  top: -10px;
  transition: opacity .3s;
  mix-blend-mode: screen;
}
body:hover .cursor-trail { opacity: 0.4; }

/* S10. Animated counter — better easing */
.stat-num.animated {
  animation: countPop 0.6s cubic-bezier(.16,1,.3,1);
}
@keyframes countPop {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* S11. Process step hover — line fills */
.process-step:hover .process-step-num {
  background: var(--lgg-primary);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(229,62,62,.3);
}
.process-step-num {
  transition: all .3s;
}

/* S12. Social proof bar — icons + text animated */
.proof-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  animation: proofIn 0.6s ease both;
}
.proof-item:nth-child(1) { animation-delay: 0s; }
.proof-item:nth-child(3) { animation-delay: 0.15s; }
.proof-item:nth-child(5) { animation-delay: 0.3s; }
.proof-item:nth-child(7) { animation-delay: 0.45s; }
.proof-item:nth-child(9) { animation-delay: 0.6s; }
@keyframes proofIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* S13. Package badge */
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lgg-primary), var(--lgg-accent));
  color: #fff;
  font-weight: 700;
  font-size: .75rem;
  padding: .25rem 1rem;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* S14. FAQ item hover accent */
.faq-item:hover {
  border-color: rgba(229,62,62,.2);
}
.faq-item.open {
  border-color: rgba(229,62,62,.4);
  box-shadow: 0 4px 20px rgba(229,62,62,.08);
}

/* S15. Footer social icon hover */
.lgg-footer a[href*="facebook"]:hover svg { color: #1877F2; }
.lgg-footer a[href*="instagram"]:hover svg { color: #E4405F; }
.lgg-footer a[href*="linkedin"]:hover svg { color: #0A66C2; }
.lgg-footer a[href*="youtube"]:hover svg { color: #FF0000; }

/* S16. Smooth scroll behavior */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* S17. Image loading skeleton */
img[loading="lazy"] {
  background: linear-gradient(110deg, var(--lgg-dark-3) 8%, rgba(255,255,255,.05) 18%, var(--lgg-dark-3) 33%);
  background-size: 200% 100%;
  animation: imgSkeleton 1.5s linear infinite;
}
@keyframes imgSkeleton {
  to { background-position: -200% 0; }
}

/* S18. Gallery masonry-ish — 6 items balanced */
@media (min-width: 768px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: .75rem;
  }
  .gallery-item-tall { grid-row: span 2; }
  .gallery-item-tall img { height: 100%; }
  .gallery-item-wide { grid-column: span 2; }
}

/* S19. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-blob { display: none; }
  .parallax-slow, .parallax-medium, .parallax-fast { transform: none !important; }
}

/* Stagger delays for reveal animations */
.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.24s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.32s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.40s; }
.gallery-grid .gallery-item:nth-child(7) { transition-delay: 0.48s; }
.gallery-grid .gallery-item:nth-child(8) { transition-delay: 0.56s; }
.gallery-grid .gallery-item:nth-child(9) { transition-delay: 0.64s; }

/* Gallery overlay text style */
.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .5px;
}

/* Hero image — parallax removed to avoid transition conflict */
.lgg-hero img[fetchpriority] {
  transition: none;
}



/* Staggered reveal delays */
.reveal-up:nth-child(1){transition-delay:0s}
.reveal-up:nth-child(2){transition-delay:.08s}
.reveal-up:nth-child(3){transition-delay:.16s}
.reveal-up:nth-child(4){transition-delay:.24s}
.reveal-up:nth-child(5){transition-delay:.32s}
.reveal-up:nth-child(6){transition-delay:.4s}
.reveal-up:nth-child(7){transition-delay:.48s}
.reveal-up:nth-child(8){transition-delay:.56s}
.reveal-up:nth-child(9){transition-delay:.64s}
/* Gallery hover scale */
.gallery-item img{transition:transform .4s cubic-bezier(.25,.46,.45,.94)}
.gallery-item:hover img{transform:scale(1.05)}
/* Premium card glow — original mask-based border preserved, duplicate removed */
/* Shimmer animation for "Booking Up" — defined in S2 above */
/* Cursor trail performance */
/* Spin animation for spinner icon */

.spin{animation:spin 1s linear infinite}
/* Budget calculator */
.calc-result{background:linear-gradient(135deg,rgba(229,62,62,.1),rgba(255,184,0,.1));border:1px solid rgba(229,62,62,.2);border-radius:12px;padding:1.5rem;text-align:center;margin-top:1.5rem}
.calc-range{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:.5rem}
.calc-range .min,.calc-range .max{font-size:.85rem;color:rgba(255,255,255,.5)}
.calc-range .val{font-family:'Titillium Web';font-size:2rem;font-weight:700;color:var(--lgg-accent)}